@fenixalliance/abs-api-client 1.0.2 → 1.0.5

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 (696) hide show
  1. package/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
  2. package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
  3. package/clients/accountingService/core/ApiError.ts +25 -0
  4. package/clients/accountingService/core/ApiRequestOptions.ts +17 -0
  5. package/clients/accountingService/core/ApiResult.ts +11 -0
  6. package/clients/accountingService/core/CancelablePromise.ts +131 -0
  7. package/clients/accountingService/core/OpenAPI.ts +32 -0
  8. package/clients/accountingService/core/request.ts +322 -0
  9. package/clients/accountingService/index.ts +97 -0
  10. package/clients/accountingService/models/AccountCreateDto.ts +30 -0
  11. package/clients/accountingService/models/AccountDto.ts +41 -0
  12. package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
  13. package/clients/{holderService/models/InvoiceDtoListEnvelope.ts → accountingService/models/AccountDtoListEnvelope.ts} +5 -5
  14. package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
  15. package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
  16. package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
  17. package/clients/accountingService/models/AccountingEntryDtoEnvelope.ts +14 -0
  18. package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
  19. package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
  20. package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
  21. package/clients/accountingService/models/BillingProfileDto.ts +67 -0
  22. package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
  23. package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
  24. package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
  25. package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
  26. package/clients/accountingService/models/BudgetDto.ts +12 -0
  27. package/clients/{holderService/models/PaymentDtoListEnvelope.ts → accountingService/models/BudgetDtoEnvelope.ts} +5 -5
  28. package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
  29. package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
  30. package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
  31. package/clients/accountingService/models/Currency.ts +9 -0
  32. package/clients/accountingService/models/EmptyEnvelope.ts +12 -0
  33. package/clients/accountingService/models/ErrorEnvelope.ts +12 -0
  34. package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
  35. package/clients/{holderService/models/InvoiceDto.ts → accountingService/models/FinancialBookDto.ts} +3 -4
  36. package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
  37. package/clients/accountingService/models/FinancialBookDtoListEnvelope.ts +14 -0
  38. package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
  39. package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
  40. package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
  41. package/clients/accountingService/models/FiscalAuthorityDtoEnvelope.ts +14 -0
  42. package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
  43. package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
  44. package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
  45. package/clients/accountingService/models/FiscalYearDto.ts +16 -0
  46. package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
  47. package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
  48. package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
  49. package/clients/accountingService/models/Int32Envelope.ts +13 -0
  50. package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
  51. package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
  52. package/clients/accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts +14 -0
  53. package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
  54. package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
  55. package/clients/accountingService/models/JournalCreateDto.ts +17 -0
  56. package/clients/accountingService/models/JournalDto.ts +17 -0
  57. package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
  58. package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
  59. package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
  60. package/clients/accountingService/models/JournalEntryDto.ts +31 -0
  61. package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
  62. package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
  63. package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
  64. package/clients/accountingService/models/JournalTypeDto.ts +12 -0
  65. package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
  66. package/clients/accountingService/models/JournalTypeDtoListEnvelope.ts +14 -0
  67. package/clients/accountingService/models/JournalTypeUpdateDto.ts +10 -0
  68. package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
  69. package/clients/accountingService/models/LedgerDto.ts +15 -0
  70. package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
  71. package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
  72. package/clients/accountingService/models/LoanCreateDto.ts +18 -0
  73. package/clients/accountingService/models/LoanDto.ts +18 -0
  74. package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
  75. package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
  76. package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
  77. package/clients/accountingService/models/Money.ts +10 -0
  78. package/clients/accountingService/models/Operation.ts +23 -0
  79. package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
  80. package/clients/accountingService/models/ReceiptDto.ts +24 -0
  81. package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
  82. package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
  83. package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
  84. package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
  85. package/clients/accountingService/services/AccountsService.ts +788 -0
  86. package/clients/accountingService/services/BillingProfilesService.ts +194 -0
  87. package/clients/accountingService/services/BudgetsService.ts +167 -0
  88. package/clients/accountingService/services/FinancialBooksService.ts +194 -0
  89. package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
  90. package/clients/accountingService/services/FiscalYearsService.ts +194 -0
  91. package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
  92. package/clients/accountingService/services/JournalTypesService.ts +167 -0
  93. package/clients/accountingService/services/JournalsService.ts +366 -0
  94. package/clients/accountingService/services/LedgersService.ts +163 -0
  95. package/clients/accountingService/services/LoansService.ts +194 -0
  96. package/clients/accountingService/services/ReceiptsService.ts +164 -0
  97. package/clients/cartService/index.ts +5 -0
  98. package/clients/cartService/models/BooleanEnvelope.ts +2 -2
  99. package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
  100. package/clients/cartService/models/CartUpdateRequest.ts +2 -2
  101. package/clients/cartService/models/CountryDto.ts +14 -0
  102. package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
  103. package/clients/cartService/models/CurrencyDto.ts +13 -0
  104. package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
  105. package/clients/cartService/models/EmptyEnvelope.ts +2 -1
  106. package/clients/cartService/models/ErrorEnvelope.ts +2 -2
  107. package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -1
  108. package/clients/cartService/models/ItemCartRecordDto.ts +9 -7
  109. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
  110. package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +2 -2
  111. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
  112. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
  113. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
  114. package/clients/cartService/models/ItemToCompareCartRecordDtoListEnvelope.ts +2 -2
  115. package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
  116. package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
  117. package/clients/cartService/services/CartsService.ts +1069 -22
  118. package/clients/cartService/services/CompareService.ts +24 -4
  119. package/clients/cartService/services/RecordsService.ts +114 -9
  120. package/clients/cartService/services/WishListsService.ts +116 -9
  121. package/clients/catalogService/index.ts +14 -6
  122. package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
  123. package/clients/catalogService/models/CatalogItemDto.ts +170 -0
  124. package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
  125. package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
  126. package/clients/catalogService/models/{StockItemDto.ts → CatalogItemUpdateDto.ts} +138 -105
  127. package/clients/catalogService/models/Currency.ts +9 -0
  128. package/clients/catalogService/models/EmptyEnvelope.ts +2 -1
  129. package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
  130. package/clients/catalogService/models/Int32Envelope.ts +13 -0
  131. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +6 -4
  132. package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
  133. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
  134. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
  135. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +5 -2
  136. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
  137. package/clients/catalogService/models/ItemAttributeDtoListEnvelope.ts +2 -2
  138. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
  139. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
  140. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
  141. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
  142. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
  143. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
  144. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +2 -1
  145. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
  146. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
  147. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
  148. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
  149. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
  150. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
  151. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
  152. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
  153. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
  154. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
  155. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
  156. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
  157. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
  158. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
  159. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
  160. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
  161. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
  162. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
  163. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
  164. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
  165. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
  166. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
  167. package/clients/catalogService/models/MerchantDto.ts +47 -0
  168. package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
  169. package/clients/catalogService/models/Money.ts +10 -0
  170. package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
  171. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
  172. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
  173. package/clients/catalogService/services/ItemAttachmentsService.ts +55 -30
  174. package/clients/catalogService/services/ItemAttributesService.ts +55 -30
  175. package/clients/catalogService/services/ItemBrandsService.ts +55 -30
  176. package/clients/catalogService/services/ItemCategoriesService.ts +74 -49
  177. package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
  178. package/clients/catalogService/services/ItemImagesService.ts +55 -30
  179. package/clients/catalogService/services/ItemQuestionsService.ts +55 -30
  180. package/clients/catalogService/services/ItemReviewsService.ts +55 -30
  181. package/clients/catalogService/services/ItemTagsService.ts +55 -30
  182. package/clients/catalogService/services/ItemTypesService.ts +57 -32
  183. package/clients/catalogService/services/ItemsService.ts +2176 -0
  184. package/clients/catalogService/services/MerchantsService.ts +30 -0
  185. package/clients/catalogService/services/PoliciesService.ts +24 -4
  186. package/clients/catalogService/services/PricingRulesService.ts +64 -39
  187. package/clients/crmService/index.ts +5 -0
  188. package/clients/crmService/models/CartDtoEnvelope.ts +2 -2
  189. package/clients/crmService/models/ContactCreateDto.ts +55 -0
  190. package/clients/crmService/models/ContactDto.ts +35 -21
  191. package/clients/crmService/models/ContactDtoEnvelope.ts +2 -2
  192. package/clients/crmService/models/ContactDtoListEnvelope.ts +2 -2
  193. package/clients/crmService/models/ContactProfileDto.ts +38 -0
  194. package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
  195. package/clients/crmService/models/ContactUpdateDto.ts +53 -0
  196. package/clients/crmService/models/EmptyEnvelope.ts +2 -1
  197. package/clients/crmService/models/ErrorEnvelope.ts +2 -2
  198. package/clients/crmService/models/Operation.ts +23 -0
  199. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +2 -2
  200. package/clients/crmService/models/WalletDtoEnvelope.ts +2 -2
  201. package/clients/crmService/services/ContactsService.ts +509 -40
  202. package/clients/crmService/services/SyncService.ts +31 -15
  203. package/clients/forexService/index.ts +3 -0
  204. package/clients/forexService/models/Currency.ts +1 -1
  205. package/clients/forexService/models/ErrorEnvelope.ts +2 -2
  206. package/clients/forexService/models/ExchangeRate.ts +11 -0
  207. package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
  208. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
  209. package/clients/forexService/models/Money.ts +1 -1
  210. package/clients/forexService/models/MoneyEnvelope.ts +2 -2
  211. package/clients/forexService/services/ExchangeService.ts +9 -11
  212. package/clients/forexService/services/ExchangeVService.ts +65 -0
  213. package/clients/forexService/services/RatesService.ts +71 -6
  214. package/clients/holderService/index.ts +19 -8
  215. package/clients/holderService/models/AddressDto.ts +1 -1
  216. package/clients/holderService/models/AddressDtoListEnvelope.ts +2 -2
  217. package/clients/holderService/models/CartDtoEnvelope.ts +2 -2
  218. package/clients/holderService/models/EmptyEnvelope.ts +12 -0
  219. package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
  220. package/clients/holderService/models/EnrollmentId.ts +5 -0
  221. package/clients/holderService/models/ErrorEnvelope.ts +2 -2
  222. package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
  223. package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
  224. package/clients/holderService/models/ExtendedTenantDto.ts +51 -0
  225. package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
  226. package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  227. package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
  228. package/clients/holderService/models/NotificationDtoListEnvelope.ts +2 -2
  229. package/clients/holderService/models/Operation.ts +23 -0
  230. package/clients/holderService/models/PlatformUserDto.ts +26 -28
  231. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +2 -2
  232. package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
  233. package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
  234. package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
  235. package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
  236. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +2 -2
  237. package/clients/holderService/models/TenantDto.ts +1 -10
  238. package/clients/holderService/models/TenantDtoListEnvelope.ts +2 -2
  239. package/clients/{tenantService/models/TenantEnrollmentDto.ts → holderService/models/TenantEnrolmentDto.ts} +4 -3
  240. package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  241. package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  242. package/clients/holderService/models/TenantInvitationDto.ts +16 -0
  243. package/clients/holderService/models/{TenantEnrollmentDtoListEnvelope.ts → TenantInvitationDtoListEnvelope.ts} +5 -5
  244. package/clients/holderService/models/WalletDtoEnvelope.ts +2 -2
  245. package/clients/holderService/services/HolderService.ts +283 -44
  246. package/clients/identityService/index.ts +1 -1
  247. package/clients/identityService/models/AccountHolderCreateDto.ts +20 -15
  248. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
  249. package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
  250. package/clients/identityService/models/ErrorEnvelope.ts +2 -2
  251. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
  252. package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
  253. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
  254. package/clients/identityService/models/PlatformUserDto.ts +26 -28
  255. package/clients/identityService/models/StringListEnvelope.ts +2 -2
  256. package/clients/identityService/models/TenantDto.ts +1 -10
  257. package/clients/identityService/services/ApplicationsService.ts +30 -5
  258. package/clients/identityService/services/CheckerService.ts +8 -3
  259. package/clients/identityService/services/OAuthService.ts +44 -10
  260. package/clients/identityService/services/ResourceService.ts +8 -2
  261. package/clients/identityService/services/UserInfoService.ts +16 -4
  262. package/clients/inventoryService/services/InventoryService.ts +6 -1
  263. package/clients/invoicingService/index.ts +29 -4
  264. package/clients/invoicingService/models/Currency.ts +9 -0
  265. package/clients/invoicingService/models/EmptyEnvelope.ts +2 -1
  266. package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
  267. package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
  268. package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
  269. package/clients/invoicingService/models/Int32Envelope.ts +13 -0
  270. package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
  271. package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
  272. package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
  273. package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
  274. package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
  275. package/clients/invoicingService/models/InvoiceCreateDto.ts +64 -0
  276. package/clients/invoicingService/models/InvoiceDto.ts +91 -2
  277. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +2 -2
  278. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
  279. package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
  280. package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
  281. package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
  282. package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
  283. package/clients/invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts +8 -0
  284. package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
  285. package/clients/invoicingService/models/InvoiceLineDto.ts +7 -2
  286. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +2 -2
  287. package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +2 -2
  288. package/clients/invoicingService/models/{ItemPriceCreateDto.ts → InvoiceLineUpdateDto.ts} +9 -9
  289. package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
  290. package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
  291. package/clients/{tenantService/models/TenantEnrollmentDtoEnvelope.ts → invoicingService/models/InvoiceReferenceDtoEnvelope.ts} +5 -5
  292. package/clients/{tenantService/models/TenantEnrollmentDtoListEnvelope.ts → invoicingService/models/InvoiceReferenceDtoListEnvelope.ts} +5 -5
  293. package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
  294. package/clients/invoicingService/models/InvoiceUpdateDto.ts +29 -1
  295. package/clients/invoicingService/models/Money.ts +10 -0
  296. package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
  297. package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
  298. package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
  299. package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
  300. package/clients/invoicingService/models/TenantDto.ts +45 -0
  301. package/clients/invoicingService/services/InvoicesService.ts +799 -23
  302. package/clients/learningService/core/ApiError.ts +25 -0
  303. package/clients/learningService/core/ApiRequestOptions.ts +17 -0
  304. package/clients/learningService/core/ApiResult.ts +11 -0
  305. package/clients/learningService/core/CancelablePromise.ts +131 -0
  306. package/clients/learningService/core/OpenAPI.ts +32 -0
  307. package/clients/learningService/core/request.ts +322 -0
  308. package/clients/learningService/index.ts +50 -0
  309. package/clients/learningService/models/AverageDto.ts +10 -0
  310. package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
  311. package/clients/learningService/models/CountDto.ts +10 -0
  312. package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
  313. package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
  314. package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
  315. package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
  316. package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
  317. package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
  318. package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
  319. package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
  320. package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
  321. package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
  322. package/clients/learningService/models/CourseDto.ts +170 -0
  323. package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
  324. package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
  325. package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
  326. package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
  327. package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
  328. package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
  329. package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
  330. package/clients/learningService/models/CourseUpdateDto.ts +5 -0
  331. package/clients/learningService/models/EmptyEnvelope.ts +12 -0
  332. package/clients/learningService/models/ErrorEnvelope.ts +12 -0
  333. package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
  334. package/clients/learningService/models/InstructorProfileDto.ts +39 -0
  335. package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
  336. package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
  337. package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
  338. package/clients/learningService/models/Pagination.ts +9 -0
  339. package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
  340. package/clients/learningService/models/StudentProfileDto.ts +38 -0
  341. package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
  342. package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
  343. package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
  344. package/clients/learningService/services/CourseCertificatesService.ts +270 -0
  345. package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
  346. package/clients/learningService/services/CoursesService.ts +128 -0
  347. package/clients/learningService/services/InstructorProfilesService.ts +152 -0
  348. package/clients/learningService/services/StudentProfilesService.ts +212 -0
  349. package/clients/marketingService/core/ApiError.ts +25 -0
  350. package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
  351. package/clients/marketingService/core/ApiResult.ts +11 -0
  352. package/clients/marketingService/core/CancelablePromise.ts +131 -0
  353. package/clients/marketingService/core/OpenAPI.ts +32 -0
  354. package/clients/marketingService/core/request.ts +322 -0
  355. package/clients/marketingService/index.ts +64 -0
  356. package/clients/marketingService/models/Currency.ts +9 -0
  357. package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
  358. package/clients/marketingService/models/EmailGroupDto.ts +14 -0
  359. package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
  360. package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
  361. package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
  362. package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
  363. package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
  364. package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
  365. package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
  366. package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
  367. package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
  368. package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
  369. package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
  370. package/clients/marketingService/models/EmailTemplateDtoListEnvelope.ts +14 -0
  371. package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
  372. package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
  373. package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
  374. package/clients/marketingService/models/Int32Envelope.ts +13 -0
  375. package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
  376. package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
  377. package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
  378. package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
  379. package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
  380. package/clients/marketingService/models/MarketingListDto.ts +33 -0
  381. package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
  382. package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
  383. package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
  384. package/clients/marketingService/models/Money.ts +10 -0
  385. package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
  386. package/clients/marketingService/models/NewsletterDto.ts +14 -0
  387. package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
  388. package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
  389. package/clients/marketingService/models/OrderDto.ts +113 -0
  390. package/clients/{holderService/models/OrderDtoListEnvelope.ts → marketingService/models/OrderDtoEnvelope.ts} +4 -4
  391. package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
  392. package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
  393. package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
  394. package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
  395. package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
  396. package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
  397. package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
  398. package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
  399. package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
  400. package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
  401. package/clients/marketingService/services/EmailGroupsService.ts +193 -0
  402. package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
  403. package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
  404. package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
  405. package/clients/marketingService/services/MarketingListsService.ts +193 -0
  406. package/clients/marketingService/services/NewslettersService.ts +193 -0
  407. package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
  408. package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
  409. package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
  410. package/clients/ordersService/index.ts +7 -4
  411. package/clients/ordersService/models/Currency.ts +9 -0
  412. package/clients/ordersService/models/EmptyEnvelope.ts +2 -1
  413. package/clients/ordersService/models/ErrorEnvelope.ts +2 -2
  414. package/clients/ordersService/models/Int32Envelope.ts +13 -0
  415. package/clients/ordersService/models/Money.ts +10 -0
  416. package/clients/ordersService/models/OrderCreateDto.ts +60 -2
  417. package/clients/ordersService/models/OrderDto.ts +93 -7
  418. package/clients/ordersService/models/OrderDtoEnvelope.ts +2 -2
  419. package/clients/ordersService/models/OrderDtoListEnvelope.ts +2 -2
  420. package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
  421. package/clients/ordersService/models/OrderLineDto.ts +7 -2
  422. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +2 -2
  423. package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +2 -2
  424. package/clients/ordersService/models/OrderLineUpdateDto.ts +97 -0
  425. package/clients/ordersService/models/OrderUpdateDto.ts +29 -1
  426. package/clients/ordersService/services/OrdersService.ts +115 -21
  427. package/clients/pricingService/index.ts +1 -0
  428. package/clients/pricingService/models/Currency.ts +1 -1
  429. package/clients/pricingService/models/EmptyEnvelope.ts +2 -1
  430. package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
  431. package/clients/pricingService/models/Int32Envelope.ts +13 -0
  432. package/clients/pricingService/models/ItemPriceCreateDto.ts +6 -6
  433. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +2 -2
  434. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +2 -2
  435. package/clients/pricingService/models/ItemPriceUpdateDto.ts +2 -1
  436. package/clients/pricingService/models/Money.ts +1 -1
  437. package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
  438. package/clients/pricingService/models/PriceListDtoEnvelope.ts +2 -2
  439. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +2 -2
  440. package/clients/pricingService/services/PriceListsService.ts +100 -29
  441. package/clients/pricingService/services/PricesService.ts +18 -3
  442. package/clients/securityService/core/ApiError.ts +25 -0
  443. package/clients/securityService/core/ApiRequestOptions.ts +17 -0
  444. package/clients/securityService/core/ApiResult.ts +11 -0
  445. package/clients/securityService/core/CancelablePromise.ts +131 -0
  446. package/clients/securityService/core/OpenAPI.ts +32 -0
  447. package/clients/securityService/core/request.ts +322 -0
  448. package/clients/securityService/index.ts +24 -0
  449. package/clients/securityService/models/EmptyEnvelope.ts +12 -0
  450. package/clients/securityService/models/ErrorEnvelope.ts +12 -0
  451. package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
  452. package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
  453. package/clients/securityService/models/SecurityPermissionDtoListEnvelope.ts +14 -0
  454. package/clients/securityService/models/SecurityPermissionUpdateDto.ts +9 -0
  455. package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
  456. package/clients/securityService/models/SecurityRoleDto.ts +13 -0
  457. package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
  458. package/clients/securityService/models/SecurityRoleUpdateDto.ts +9 -0
  459. package/clients/{holderService/models/TenantEnrollmentDto.ts → securityService/models/TenantEnrolmentDto.ts} +4 -3
  460. package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  461. package/clients/securityService/services/PermissionsService.ts +399 -0
  462. package/clients/securityService/services/RolesService.ts +430 -0
  463. package/clients/supportService/core/ApiError.ts +25 -0
  464. package/clients/supportService/core/ApiRequestOptions.ts +17 -0
  465. package/clients/supportService/core/ApiResult.ts +11 -0
  466. package/clients/supportService/core/CancelablePromise.ts +131 -0
  467. package/clients/supportService/core/OpenAPI.ts +32 -0
  468. package/clients/supportService/core/request.ts +322 -0
  469. package/clients/supportService/index.ts +54 -0
  470. package/clients/supportService/models/EmptyEnvelope.ts +12 -0
  471. package/clients/supportService/models/ErrorEnvelope.ts +12 -0
  472. package/clients/supportService/models/PrivateMessageDto.ts +15 -0
  473. package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
  474. package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
  475. package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
  476. package/clients/supportService/models/SupportEntitlementDtoEnvelope.ts +14 -0
  477. package/clients/supportService/models/SupportEntitlementDtoListEnvelope.ts +14 -0
  478. package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
  479. package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
  480. package/clients/supportService/models/SupportRequestAttachmentDto.ts +28 -0
  481. package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
  482. package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
  483. package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
  484. package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
  485. package/clients/supportService/models/SupportRequestDto.ts +18 -0
  486. package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
  487. package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
  488. package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
  489. package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
  490. package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
  491. package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
  492. package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
  493. package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
  494. package/clients/supportService/models/SupportTicketDto.ts +17 -0
  495. package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
  496. package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
  497. package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
  498. package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
  499. package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
  500. package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
  501. package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
  502. package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
  503. package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
  504. package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
  505. package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
  506. package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
  507. package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
  508. package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
  509. package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
  510. package/clients/supportService/services/SupportRequestsService.ts +290 -0
  511. package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
  512. package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
  513. package/clients/supportService/services/SupportTicketsService.ts +331 -0
  514. package/clients/systemService/index.ts +19 -0
  515. package/clients/systemService/models/BooleanEnvelope.ts +13 -0
  516. package/clients/systemService/models/ErrorEnvelope.ts +2 -2
  517. package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
  518. package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
  519. package/clients/systemService/models/ISwaggerContact.ts +10 -0
  520. package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
  521. package/clients/systemService/models/ISwaggerLicense.ts +9 -0
  522. package/clients/systemService/models/ISwaggerSpec.ts +19 -0
  523. package/clients/systemService/models/LicenseValidationRequest.ts +8 -0
  524. package/clients/systemService/models/Module.ts +44 -0
  525. package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
  526. package/clients/systemService/models/StringListEnvelope.ts +2 -2
  527. package/clients/systemService/models/StudioModule.ts +9 -0
  528. package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → systemService/models/StudioModuleListEnvelope.ts} +5 -5
  529. package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
  530. package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  531. package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
  532. package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
  533. package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  534. package/clients/systemService/services/AntiforgeryService.ts +16 -4
  535. package/clients/systemService/services/LicensingService.ts +230 -0
  536. package/clients/systemService/services/MigrationsService.ts +14 -3
  537. package/clients/systemService/services/ModulesService.ts +61 -0
  538. package/clients/tenantService/index.ts +100 -3
  539. package/clients/tenantService/models/BooleanEnvelope.ts +2 -2
  540. package/clients/tenantService/models/CartDtoEnvelope.ts +2 -2
  541. package/clients/tenantService/models/EmptyEnvelope.ts +2 -1
  542. package/clients/tenantService/models/ErrorEnvelope.ts +2 -2
  543. package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
  544. package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
  545. package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  546. package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
  547. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
  548. package/clients/tenantService/models/Operation.ts +23 -0
  549. package/clients/tenantService/models/PlatformUserDto.ts +26 -28
  550. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +2 -2
  551. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +2 -2
  552. package/clients/tenantService/models/StringListEnvelope.ts +2 -2
  553. package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
  554. package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  555. package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
  556. package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  557. package/clients/tenantService/models/SuiteLicenseFeatureDto.ts +9 -0
  558. package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
  559. package/clients/tenantService/models/TenantCreateDto.ts +7 -7
  560. package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
  561. package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
  562. package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
  563. package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
  564. package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
  565. package/clients/tenantService/models/TenantDto.ts +1 -10
  566. package/clients/tenantService/models/TenantDtoEnvelope.ts +2 -2
  567. package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
  568. package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
  569. package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
  570. package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  571. package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  572. package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
  573. package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
  574. package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
  575. package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
  576. package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
  577. package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
  578. package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
  579. package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
  580. package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
  581. package/clients/tenantService/models/TenantPositionDto.ts +13 -0
  582. package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
  583. package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
  584. package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
  585. package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
  586. package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
  587. package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
  588. package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
  589. package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
  590. package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
  591. package/clients/tenantService/models/TenantSizeDto.ts +12 -0
  592. package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
  593. package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
  594. package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
  595. package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
  596. package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
  597. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
  598. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  599. package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
  600. package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
  601. package/clients/tenantService/models/TenantTeamDto.ts +17 -0
  602. package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
  603. package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
  604. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
  605. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
  606. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
  607. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  608. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
  609. package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
  610. package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
  611. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
  612. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  613. package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
  614. package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
  615. package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
  616. package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
  617. package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
  618. package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
  619. package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
  620. package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
  621. package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
  622. package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
  623. package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
  624. package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
  625. package/clients/tenantService/models/TenantTypeCreateDto.ts +11 -0
  626. package/clients/tenantService/models/TenantTypeDto.ts +11 -0
  627. package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
  628. package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  629. package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
  630. package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
  631. package/clients/tenantService/models/TenantUnitDto.ts +18 -0
  632. package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
  633. package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
  634. package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
  635. package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
  636. package/clients/tenantService/models/WalletDtoEnvelope.ts +2 -2
  637. package/clients/tenantService/models/WebPortalDto.ts +9 -2
  638. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +2 -2
  639. package/clients/tenantService/services/DepartmentsService.ts +198 -0
  640. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
  641. package/clients/tenantService/services/EnrollmentsService.ts +195 -0
  642. package/clients/tenantService/services/IndustriesService.ts +190 -0
  643. package/clients/tenantService/services/InvitationsService.ts +150 -0
  644. package/clients/tenantService/services/PositionsService.ts +192 -0
  645. package/clients/tenantService/services/SegmentsService.ts +191 -0
  646. package/clients/tenantService/services/SizesService.ts +194 -0
  647. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
  648. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
  649. package/clients/tenantService/services/TeamRecordsService.ts +192 -0
  650. package/clients/tenantService/services/TeamsService.ts +192 -0
  651. package/clients/tenantService/services/TenantsService.ts +580 -49
  652. package/clients/tenantService/services/TerritoriesService.ts +192 -0
  653. package/clients/tenantService/services/TypesService.ts +176 -0
  654. package/clients/tenantService/services/UnitsService.ts +190 -0
  655. package/clients/walletsService/index.ts +5 -3
  656. package/clients/walletsService/models/Currency.ts +9 -0
  657. package/clients/walletsService/models/ErrorEnvelope.ts +2 -2
  658. package/clients/walletsService/models/InvoiceDto.ts +91 -2
  659. package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +2 -2
  660. package/clients/walletsService/models/LocationDto.ts +1 -1
  661. package/clients/walletsService/models/LocationDtoListEnvelope.ts +2 -2
  662. package/clients/walletsService/models/Money.ts +10 -0
  663. package/clients/walletsService/models/OrderDto.ts +93 -7
  664. package/clients/walletsService/models/OrderDtoListEnvelope.ts +2 -2
  665. package/clients/walletsService/models/PaymentDto.ts +81 -4
  666. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +2 -2
  667. package/clients/walletsService/models/WalletDtoEnvelope.ts +2 -2
  668. package/clients/walletsService/services/WalletsService.ts +73 -8
  669. package/package.json +5 -4
  670. package/schemas/accountingService/schema.s.ts +5108 -0
  671. package/schemas/cartService/schema.s.ts +1716 -78
  672. package/schemas/catalogService/schema.s.ts +2810 -1736
  673. package/schemas/crmService/schema.s.ts +892 -138
  674. package/schemas/forexService/schema.s.ts +116 -345
  675. package/schemas/holderService/schema.s.ts +693 -197
  676. package/schemas/identityService/schema.s.ts +125 -103
  677. package/schemas/inventoryService/schema.s.ts +4 -1
  678. package/schemas/invoicingService/schema.s.ts +1758 -105
  679. package/schemas/learningService/schema.s.ts +1723 -0
  680. package/schemas/marketingService/schema.s.ts +3027 -0
  681. package/schemas/ordersService/schema.s.ts +632 -108
  682. package/schemas/pricingService/schema.s.ts +181 -102
  683. package/schemas/securityService/schema.s.ts +1226 -0
  684. package/schemas/supportService/schema.s.ts +2114 -0
  685. package/schemas/systemService/schema.s.ts +1215 -5
  686. package/schemas/tenantService/schema.s.ts +5405 -427
  687. package/schemas/walletsService/schema.s.ts +374 -34
  688. package/wwwroot/build/bundle.js +1 -1
  689. package/clients/catalogService/models/StockItemCreateDto.ts +0 -108
  690. package/clients/catalogService/models/StockItemUpdateDto.ts +0 -106
  691. package/clients/catalogService/services/ProductsService.ts +0 -1706
  692. package/clients/holderService/models/OrderDto.ts +0 -27
  693. package/clients/holderService/models/PaymentDto.ts +0 -17
  694. package/clients/invoicingService/models/ItemPriceUpdateDto.ts +0 -14
  695. package/clients/ordersService/models/ItemPriceCreateDto.ts +0 -20
  696. package/clients/ordersService/models/ItemPriceUpdateDto.ts +0 -14
@@ -0,0 +1,2114 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+
7
+ export interface paths {
8
+ "/api/v2/SupportService/SupportEntitlements": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ tenantId?: string;
13
+ pageNumber?: number;
14
+ pageSize?: number;
15
+ "api-version"?: string;
16
+ };
17
+ header?: {
18
+ "x-api-version"?: string;
19
+ };
20
+ };
21
+ responses: {
22
+ /** @description OK */
23
+ 200: {
24
+ content: {
25
+ "application/json": components["schemas"]["SupportEntitlementDtoListEnvelope"];
26
+ "application/xml": components["schemas"]["SupportEntitlementDtoListEnvelope"];
27
+ };
28
+ };
29
+ /** @description Unauthorized */
30
+ 401: {
31
+ content: {
32
+ "application/json": components["schemas"]["ErrorEnvelope"];
33
+ "application/xml": components["schemas"]["ErrorEnvelope"];
34
+ };
35
+ };
36
+ /** @description Forbidden */
37
+ 403: {
38
+ content: {
39
+ "application/json": components["schemas"]["ErrorEnvelope"];
40
+ "application/xml": components["schemas"]["ErrorEnvelope"];
41
+ };
42
+ };
43
+ };
44
+ };
45
+ post: {
46
+ parameters: {
47
+ query?: {
48
+ tenantId?: string;
49
+ "api-version"?: string;
50
+ };
51
+ header?: {
52
+ "x-api-version"?: string;
53
+ };
54
+ };
55
+ requestBody: {
56
+ content: {
57
+ "application/json": components["schemas"]["SupportEntitlementCreateDto"];
58
+ "application/xml": components["schemas"]["SupportEntitlementCreateDto"];
59
+ };
60
+ };
61
+ responses: {
62
+ /** @description Created */
63
+ 201: {
64
+ content: {
65
+ "application/json": components["schemas"]["EmptyEnvelope"];
66
+ "application/xml": components["schemas"]["EmptyEnvelope"];
67
+ };
68
+ };
69
+ /** @description Unauthorized */
70
+ 401: {
71
+ content: {
72
+ "application/json": components["schemas"]["ErrorEnvelope"];
73
+ "application/xml": components["schemas"]["ErrorEnvelope"];
74
+ };
75
+ };
76
+ /** @description Forbidden */
77
+ 403: {
78
+ content: {
79
+ "application/json": components["schemas"]["ErrorEnvelope"];
80
+ "application/xml": components["schemas"]["ErrorEnvelope"];
81
+ };
82
+ };
83
+ };
84
+ };
85
+ };
86
+ "/api/v2/SupportService/SupportEntitlements/{supportEntitlementId}": {
87
+ get: {
88
+ parameters: {
89
+ query?: {
90
+ "api-version"?: string;
91
+ };
92
+ header?: {
93
+ "x-api-version"?: string;
94
+ };
95
+ path: {
96
+ supportEntitlementId: string;
97
+ };
98
+ };
99
+ responses: {
100
+ /** @description OK */
101
+ 200: {
102
+ content: {
103
+ "application/json": components["schemas"]["SupportEntitlementDtoEnvelope"];
104
+ "application/xml": components["schemas"]["SupportEntitlementDtoEnvelope"];
105
+ };
106
+ };
107
+ /** @description Unauthorized */
108
+ 401: {
109
+ content: {
110
+ "application/json": components["schemas"]["ErrorEnvelope"];
111
+ "application/xml": components["schemas"]["ErrorEnvelope"];
112
+ };
113
+ };
114
+ /** @description Forbidden */
115
+ 403: {
116
+ content: {
117
+ "application/json": components["schemas"]["ErrorEnvelope"];
118
+ "application/xml": components["schemas"]["ErrorEnvelope"];
119
+ };
120
+ };
121
+ };
122
+ };
123
+ put: {
124
+ parameters: {
125
+ query?: {
126
+ tenantId?: string;
127
+ "api-version"?: string;
128
+ };
129
+ header?: {
130
+ "x-api-version"?: string;
131
+ };
132
+ path: {
133
+ supportEntitlementId: string;
134
+ };
135
+ };
136
+ requestBody: {
137
+ content: {
138
+ "application/json": components["schemas"]["SupportEntitlementUpdateDto"];
139
+ "application/xml": components["schemas"]["SupportEntitlementUpdateDto"];
140
+ };
141
+ };
142
+ responses: {
143
+ /** @description OK */
144
+ 200: {
145
+ content: {
146
+ "application/json": components["schemas"]["EmptyEnvelope"];
147
+ "application/xml": components["schemas"]["EmptyEnvelope"];
148
+ };
149
+ };
150
+ /** @description Unauthorized */
151
+ 401: {
152
+ content: {
153
+ "application/json": components["schemas"]["ErrorEnvelope"];
154
+ "application/xml": components["schemas"]["ErrorEnvelope"];
155
+ };
156
+ };
157
+ /** @description Forbidden */
158
+ 403: {
159
+ content: {
160
+ "application/json": components["schemas"]["ErrorEnvelope"];
161
+ "application/xml": components["schemas"]["ErrorEnvelope"];
162
+ };
163
+ };
164
+ };
165
+ };
166
+ delete: {
167
+ parameters: {
168
+ query?: {
169
+ tenantId?: string;
170
+ "api-version"?: string;
171
+ };
172
+ header?: {
173
+ "x-api-version"?: string;
174
+ };
175
+ path: {
176
+ supportEntitlementId: string;
177
+ };
178
+ };
179
+ responses: {
180
+ /** @description OK */
181
+ 200: {
182
+ content: {
183
+ "application/json": components["schemas"]["EmptyEnvelope"];
184
+ "application/xml": components["schemas"]["EmptyEnvelope"];
185
+ };
186
+ };
187
+ /** @description Unauthorized */
188
+ 401: {
189
+ content: {
190
+ "application/json": components["schemas"]["ErrorEnvelope"];
191
+ "application/xml": components["schemas"]["ErrorEnvelope"];
192
+ };
193
+ };
194
+ /** @description Forbidden */
195
+ 403: {
196
+ content: {
197
+ "application/json": components["schemas"]["ErrorEnvelope"];
198
+ "application/xml": components["schemas"]["ErrorEnvelope"];
199
+ };
200
+ };
201
+ };
202
+ };
203
+ };
204
+ "/api/v2/SupportService/SupportRequestAttachments": {
205
+ get: {
206
+ parameters: {
207
+ query?: {
208
+ tenantId?: string;
209
+ pageNumber?: number;
210
+ pageSize?: number;
211
+ "api-version"?: string;
212
+ };
213
+ header?: {
214
+ "x-api-version"?: string;
215
+ };
216
+ };
217
+ responses: {
218
+ /** @description OK */
219
+ 200: {
220
+ content: {
221
+ "application/json": components["schemas"]["SupportRequestAttachmentDtoListEnvelope"];
222
+ "application/xml": components["schemas"]["SupportRequestAttachmentDtoListEnvelope"];
223
+ };
224
+ };
225
+ /** @description Unauthorized */
226
+ 401: {
227
+ content: {
228
+ "application/json": components["schemas"]["ErrorEnvelope"];
229
+ "application/xml": components["schemas"]["ErrorEnvelope"];
230
+ };
231
+ };
232
+ /** @description Forbidden */
233
+ 403: {
234
+ content: {
235
+ "application/json": components["schemas"]["ErrorEnvelope"];
236
+ "application/xml": components["schemas"]["ErrorEnvelope"];
237
+ };
238
+ };
239
+ };
240
+ };
241
+ post: {
242
+ parameters: {
243
+ query?: {
244
+ tenantId?: string;
245
+ "api-version"?: string;
246
+ };
247
+ header?: {
248
+ "x-api-version"?: string;
249
+ };
250
+ };
251
+ requestBody: {
252
+ content: {
253
+ "application/json": components["schemas"]["SupportRequestAttachmentCreateDto"];
254
+ "application/xml": components["schemas"]["SupportRequestAttachmentCreateDto"];
255
+ };
256
+ };
257
+ responses: {
258
+ /** @description Created */
259
+ 201: {
260
+ content: {
261
+ "application/json": components["schemas"]["EmptyEnvelope"];
262
+ "application/xml": components["schemas"]["EmptyEnvelope"];
263
+ };
264
+ };
265
+ /** @description Unauthorized */
266
+ 401: {
267
+ content: {
268
+ "application/json": components["schemas"]["ErrorEnvelope"];
269
+ "application/xml": components["schemas"]["ErrorEnvelope"];
270
+ };
271
+ };
272
+ /** @description Forbidden */
273
+ 403: {
274
+ content: {
275
+ "application/json": components["schemas"]["ErrorEnvelope"];
276
+ "application/xml": components["schemas"]["ErrorEnvelope"];
277
+ };
278
+ };
279
+ };
280
+ };
281
+ };
282
+ "/api/v2/SupportService/SupportRequestAttachments/{supportRequestAttachmentId}": {
283
+ get: {
284
+ parameters: {
285
+ query?: {
286
+ "api-version"?: string;
287
+ };
288
+ header?: {
289
+ "x-api-version"?: string;
290
+ };
291
+ path: {
292
+ supportRequestAttachmentId: string;
293
+ };
294
+ };
295
+ responses: {
296
+ /** @description OK */
297
+ 200: {
298
+ content: {
299
+ "application/json": components["schemas"]["SupportRequestAttachmentDtoEnvelope"];
300
+ "application/xml": components["schemas"]["SupportRequestAttachmentDtoEnvelope"];
301
+ };
302
+ };
303
+ /** @description Unauthorized */
304
+ 401: {
305
+ content: {
306
+ "application/json": components["schemas"]["ErrorEnvelope"];
307
+ "application/xml": components["schemas"]["ErrorEnvelope"];
308
+ };
309
+ };
310
+ /** @description Forbidden */
311
+ 403: {
312
+ content: {
313
+ "application/json": components["schemas"]["ErrorEnvelope"];
314
+ "application/xml": components["schemas"]["ErrorEnvelope"];
315
+ };
316
+ };
317
+ };
318
+ };
319
+ put: {
320
+ parameters: {
321
+ query?: {
322
+ tenantId?: string;
323
+ "api-version"?: string;
324
+ };
325
+ header?: {
326
+ "x-api-version"?: string;
327
+ };
328
+ path: {
329
+ supportRequestAttachmentId: string;
330
+ };
331
+ };
332
+ requestBody: {
333
+ content: {
334
+ "application/json": components["schemas"]["SupportRequestAttachmentUpdateDto"];
335
+ "application/xml": components["schemas"]["SupportRequestAttachmentUpdateDto"];
336
+ };
337
+ };
338
+ responses: {
339
+ /** @description OK */
340
+ 200: {
341
+ content: {
342
+ "application/json": components["schemas"]["EmptyEnvelope"];
343
+ "application/xml": components["schemas"]["EmptyEnvelope"];
344
+ };
345
+ };
346
+ /** @description Unauthorized */
347
+ 401: {
348
+ content: {
349
+ "application/json": components["schemas"]["ErrorEnvelope"];
350
+ "application/xml": components["schemas"]["ErrorEnvelope"];
351
+ };
352
+ };
353
+ /** @description Forbidden */
354
+ 403: {
355
+ content: {
356
+ "application/json": components["schemas"]["ErrorEnvelope"];
357
+ "application/xml": components["schemas"]["ErrorEnvelope"];
358
+ };
359
+ };
360
+ };
361
+ };
362
+ delete: {
363
+ parameters: {
364
+ query?: {
365
+ tenantId?: string;
366
+ "api-version"?: string;
367
+ };
368
+ header?: {
369
+ "x-api-version"?: string;
370
+ };
371
+ path: {
372
+ supportRequestAttachmentId: string;
373
+ };
374
+ };
375
+ responses: {
376
+ /** @description OK */
377
+ 200: {
378
+ content: {
379
+ "application/json": components["schemas"]["EmptyEnvelope"];
380
+ "application/xml": components["schemas"]["EmptyEnvelope"];
381
+ };
382
+ };
383
+ /** @description Unauthorized */
384
+ 401: {
385
+ content: {
386
+ "application/json": components["schemas"]["ErrorEnvelope"];
387
+ "application/xml": components["schemas"]["ErrorEnvelope"];
388
+ };
389
+ };
390
+ /** @description Forbidden */
391
+ 403: {
392
+ content: {
393
+ "application/json": components["schemas"]["ErrorEnvelope"];
394
+ "application/xml": components["schemas"]["ErrorEnvelope"];
395
+ };
396
+ };
397
+ };
398
+ };
399
+ };
400
+ "/api/v2/SupportService/SupportRequests": {
401
+ get: {
402
+ parameters: {
403
+ query?: {
404
+ tenantId?: string;
405
+ pageNumber?: number;
406
+ pageSize?: number;
407
+ "api-version"?: string;
408
+ };
409
+ header?: {
410
+ "x-api-version"?: string;
411
+ };
412
+ };
413
+ responses: {
414
+ /** @description OK */
415
+ 200: {
416
+ content: {
417
+ "application/json": components["schemas"]["SupportRequestDtoListEnvelope"];
418
+ "application/xml": components["schemas"]["SupportRequestDtoListEnvelope"];
419
+ };
420
+ };
421
+ /** @description Unauthorized */
422
+ 401: {
423
+ content: {
424
+ "application/json": components["schemas"]["ErrorEnvelope"];
425
+ "application/xml": components["schemas"]["ErrorEnvelope"];
426
+ };
427
+ };
428
+ /** @description Forbidden */
429
+ 403: {
430
+ content: {
431
+ "application/json": components["schemas"]["ErrorEnvelope"];
432
+ "application/xml": components["schemas"]["ErrorEnvelope"];
433
+ };
434
+ };
435
+ };
436
+ };
437
+ post: {
438
+ parameters: {
439
+ query?: {
440
+ tenantId?: string;
441
+ "api-version"?: string;
442
+ };
443
+ header?: {
444
+ "x-api-version"?: string;
445
+ };
446
+ };
447
+ requestBody: {
448
+ content: {
449
+ "application/json": components["schemas"]["SupportRequestCreateDto"];
450
+ "application/xml": components["schemas"]["SupportRequestCreateDto"];
451
+ };
452
+ };
453
+ responses: {
454
+ /** @description Created */
455
+ 201: {
456
+ content: {
457
+ "application/json": components["schemas"]["EmptyEnvelope"];
458
+ "application/xml": components["schemas"]["EmptyEnvelope"];
459
+ };
460
+ };
461
+ /** @description Unauthorized */
462
+ 401: {
463
+ content: {
464
+ "application/json": components["schemas"]["ErrorEnvelope"];
465
+ "application/xml": components["schemas"]["ErrorEnvelope"];
466
+ };
467
+ };
468
+ /** @description Forbidden */
469
+ 403: {
470
+ content: {
471
+ "application/json": components["schemas"]["ErrorEnvelope"];
472
+ "application/xml": components["schemas"]["ErrorEnvelope"];
473
+ };
474
+ };
475
+ };
476
+ };
477
+ };
478
+ "/api/v2/SupportService/SupportRequests/{supportRequestId}": {
479
+ get: {
480
+ parameters: {
481
+ query?: {
482
+ "api-version"?: string;
483
+ };
484
+ header?: {
485
+ "x-api-version"?: string;
486
+ };
487
+ path: {
488
+ supportRequestId: string;
489
+ };
490
+ };
491
+ responses: {
492
+ /** @description OK */
493
+ 200: {
494
+ content: {
495
+ "application/json": components["schemas"]["SupportRequestDtoEnvelope"];
496
+ "application/xml": components["schemas"]["SupportRequestDtoEnvelope"];
497
+ };
498
+ };
499
+ /** @description Unauthorized */
500
+ 401: {
501
+ content: {
502
+ "application/json": components["schemas"]["ErrorEnvelope"];
503
+ "application/xml": components["schemas"]["ErrorEnvelope"];
504
+ };
505
+ };
506
+ /** @description Forbidden */
507
+ 403: {
508
+ content: {
509
+ "application/json": components["schemas"]["ErrorEnvelope"];
510
+ "application/xml": components["schemas"]["ErrorEnvelope"];
511
+ };
512
+ };
513
+ };
514
+ };
515
+ put: {
516
+ parameters: {
517
+ query?: {
518
+ tenantId?: string;
519
+ "api-version"?: string;
520
+ };
521
+ header?: {
522
+ "x-api-version"?: string;
523
+ };
524
+ path: {
525
+ supportRequestId: string;
526
+ };
527
+ };
528
+ requestBody: {
529
+ content: {
530
+ "application/json": components["schemas"]["SupportRequestUpdateDto"];
531
+ "application/xml": components["schemas"]["SupportRequestUpdateDto"];
532
+ };
533
+ };
534
+ responses: {
535
+ /** @description OK */
536
+ 200: {
537
+ content: {
538
+ "application/json": components["schemas"]["EmptyEnvelope"];
539
+ "application/xml": components["schemas"]["EmptyEnvelope"];
540
+ };
541
+ };
542
+ /** @description Unauthorized */
543
+ 401: {
544
+ content: {
545
+ "application/json": components["schemas"]["ErrorEnvelope"];
546
+ "application/xml": components["schemas"]["ErrorEnvelope"];
547
+ };
548
+ };
549
+ /** @description Forbidden */
550
+ 403: {
551
+ content: {
552
+ "application/json": components["schemas"]["ErrorEnvelope"];
553
+ "application/xml": components["schemas"]["ErrorEnvelope"];
554
+ };
555
+ };
556
+ };
557
+ };
558
+ delete: {
559
+ parameters: {
560
+ query?: {
561
+ tenantId?: string;
562
+ "api-version"?: string;
563
+ };
564
+ header?: {
565
+ "x-api-version"?: string;
566
+ };
567
+ path: {
568
+ supportRequestId: string;
569
+ };
570
+ };
571
+ responses: {
572
+ /** @description OK */
573
+ 200: {
574
+ content: {
575
+ "application/json": components["schemas"]["EmptyEnvelope"];
576
+ "application/xml": components["schemas"]["EmptyEnvelope"];
577
+ };
578
+ };
579
+ /** @description Unauthorized */
580
+ 401: {
581
+ content: {
582
+ "application/json": components["schemas"]["ErrorEnvelope"];
583
+ "application/xml": components["schemas"]["ErrorEnvelope"];
584
+ };
585
+ };
586
+ /** @description Forbidden */
587
+ 403: {
588
+ content: {
589
+ "application/json": components["schemas"]["ErrorEnvelope"];
590
+ "application/xml": components["schemas"]["ErrorEnvelope"];
591
+ };
592
+ };
593
+ };
594
+ };
595
+ };
596
+ "/api/v2/SupportService/SupportRequests/{supportRequestId}/Tickets": {
597
+ get: {
598
+ parameters: {
599
+ query?: {
600
+ pageNumber?: number;
601
+ pageSize?: number;
602
+ "api-version"?: string;
603
+ };
604
+ header?: {
605
+ "x-api-version"?: string;
606
+ };
607
+ path: {
608
+ supportRequestId: string;
609
+ };
610
+ };
611
+ responses: {
612
+ /** @description OK */
613
+ 200: {
614
+ content: {
615
+ "application/json": components["schemas"]["SupportTicketDtoListEnvelope"];
616
+ "application/xml": components["schemas"]["SupportTicketDtoListEnvelope"];
617
+ };
618
+ };
619
+ /** @description Unauthorized */
620
+ 401: {
621
+ content: {
622
+ "application/json": components["schemas"]["ErrorEnvelope"];
623
+ "application/xml": components["schemas"]["ErrorEnvelope"];
624
+ };
625
+ };
626
+ /** @description Forbidden */
627
+ 403: {
628
+ content: {
629
+ "application/json": components["schemas"]["ErrorEnvelope"];
630
+ "application/xml": components["schemas"]["ErrorEnvelope"];
631
+ };
632
+ };
633
+ };
634
+ };
635
+ };
636
+ "/api/v2/SupportService/SupportRequests/{supportRequestId}/Attachments": {
637
+ get: {
638
+ parameters: {
639
+ query?: {
640
+ pageNumber?: number;
641
+ pageSize?: number;
642
+ "api-version"?: string;
643
+ };
644
+ header?: {
645
+ "x-api-version"?: string;
646
+ };
647
+ path: {
648
+ supportRequestId: string;
649
+ };
650
+ };
651
+ responses: {
652
+ /** @description OK */
653
+ 200: {
654
+ content: {
655
+ "application/json": components["schemas"]["SupportRequestAttachmentDtoListEnvelope"];
656
+ "application/xml": components["schemas"]["SupportRequestAttachmentDtoListEnvelope"];
657
+ };
658
+ };
659
+ /** @description Unauthorized */
660
+ 401: {
661
+ content: {
662
+ "application/json": components["schemas"]["ErrorEnvelope"];
663
+ "application/xml": components["schemas"]["ErrorEnvelope"];
664
+ };
665
+ };
666
+ /** @description Forbidden */
667
+ 403: {
668
+ content: {
669
+ "application/json": components["schemas"]["ErrorEnvelope"];
670
+ "application/xml": components["schemas"]["ErrorEnvelope"];
671
+ };
672
+ };
673
+ };
674
+ };
675
+ post: {
676
+ parameters: {
677
+ query?: {
678
+ "api-version"?: string;
679
+ };
680
+ header?: {
681
+ "x-api-version"?: string;
682
+ };
683
+ path: {
684
+ supportRequestId: string;
685
+ };
686
+ };
687
+ requestBody: {
688
+ content: {
689
+ "application/json": components["schemas"]["SupportRequestAttachmentCreateDto"];
690
+ "application/xml": components["schemas"]["SupportRequestAttachmentCreateDto"];
691
+ };
692
+ };
693
+ responses: {
694
+ /** @description Created */
695
+ 201: {
696
+ content: {
697
+ "application/json": components["schemas"]["EmptyEnvelope"];
698
+ "application/xml": components["schemas"]["EmptyEnvelope"];
699
+ };
700
+ };
701
+ /** @description Unauthorized */
702
+ 401: {
703
+ content: {
704
+ "application/json": components["schemas"]["ErrorEnvelope"];
705
+ "application/xml": components["schemas"]["ErrorEnvelope"];
706
+ };
707
+ };
708
+ /** @description Forbidden */
709
+ 403: {
710
+ content: {
711
+ "application/json": components["schemas"]["ErrorEnvelope"];
712
+ "application/xml": components["schemas"]["ErrorEnvelope"];
713
+ };
714
+ };
715
+ };
716
+ };
717
+ };
718
+ "/api/v2/SupportService/SupportRequests/{supportRequestId}/Attachments/{attachmentId}": {
719
+ get: {
720
+ parameters: {
721
+ query?: {
722
+ "api-version"?: string;
723
+ };
724
+ header?: {
725
+ "x-api-version"?: string;
726
+ };
727
+ path: {
728
+ supportRequestId: string;
729
+ attachmentId: string;
730
+ };
731
+ };
732
+ responses: {
733
+ /** @description OK */
734
+ 200: {
735
+ content: {
736
+ "application/json": components["schemas"]["SupportRequestAttachmentDtoEnvelope"];
737
+ "application/xml": components["schemas"]["SupportRequestAttachmentDtoEnvelope"];
738
+ };
739
+ };
740
+ /** @description Unauthorized */
741
+ 401: {
742
+ content: {
743
+ "application/json": components["schemas"]["ErrorEnvelope"];
744
+ "application/xml": components["schemas"]["ErrorEnvelope"];
745
+ };
746
+ };
747
+ /** @description Forbidden */
748
+ 403: {
749
+ content: {
750
+ "application/json": components["schemas"]["ErrorEnvelope"];
751
+ "application/xml": components["schemas"]["ErrorEnvelope"];
752
+ };
753
+ };
754
+ };
755
+ };
756
+ };
757
+ "/api/v2/SupportService/SupportTicketPriorities": {
758
+ get: {
759
+ parameters: {
760
+ query?: {
761
+ tenantId?: string;
762
+ pageNumber?: number;
763
+ pageSize?: number;
764
+ "api-version"?: string;
765
+ };
766
+ header?: {
767
+ "x-api-version"?: string;
768
+ };
769
+ };
770
+ responses: {
771
+ /** @description OK */
772
+ 200: {
773
+ content: {
774
+ "application/json": components["schemas"]["SupportTicketPriorityDtoListEnvelope"];
775
+ "application/xml": components["schemas"]["SupportTicketPriorityDtoListEnvelope"];
776
+ };
777
+ };
778
+ /** @description Unauthorized */
779
+ 401: {
780
+ content: {
781
+ "application/json": components["schemas"]["ErrorEnvelope"];
782
+ "application/xml": components["schemas"]["ErrorEnvelope"];
783
+ };
784
+ };
785
+ /** @description Forbidden */
786
+ 403: {
787
+ content: {
788
+ "application/json": components["schemas"]["ErrorEnvelope"];
789
+ "application/xml": components["schemas"]["ErrorEnvelope"];
790
+ };
791
+ };
792
+ };
793
+ };
794
+ post: {
795
+ parameters: {
796
+ query?: {
797
+ tenantId?: string;
798
+ "api-version"?: string;
799
+ };
800
+ header?: {
801
+ "x-api-version"?: string;
802
+ };
803
+ };
804
+ requestBody: {
805
+ content: {
806
+ "application/json": components["schemas"]["SupportTicketPriorityCreateDto"];
807
+ "application/xml": components["schemas"]["SupportTicketPriorityCreateDto"];
808
+ };
809
+ };
810
+ responses: {
811
+ /** @description Created */
812
+ 201: {
813
+ content: {
814
+ "application/json": components["schemas"]["EmptyEnvelope"];
815
+ "application/xml": components["schemas"]["EmptyEnvelope"];
816
+ };
817
+ };
818
+ /** @description Unauthorized */
819
+ 401: {
820
+ content: {
821
+ "application/json": components["schemas"]["ErrorEnvelope"];
822
+ "application/xml": components["schemas"]["ErrorEnvelope"];
823
+ };
824
+ };
825
+ /** @description Forbidden */
826
+ 403: {
827
+ content: {
828
+ "application/json": components["schemas"]["ErrorEnvelope"];
829
+ "application/xml": components["schemas"]["ErrorEnvelope"];
830
+ };
831
+ };
832
+ };
833
+ };
834
+ };
835
+ "/api/v2/SupportService/SupportTicketPriorities/{supportTicketPriorityId}": {
836
+ get: {
837
+ parameters: {
838
+ query?: {
839
+ "api-version"?: string;
840
+ };
841
+ header?: {
842
+ "x-api-version"?: string;
843
+ };
844
+ path: {
845
+ supportTicketPriorityId: string;
846
+ };
847
+ };
848
+ responses: {
849
+ /** @description OK */
850
+ 200: {
851
+ content: {
852
+ "application/json": components["schemas"]["SupportTicketPriorityDtoEnvelope"];
853
+ "application/xml": components["schemas"]["SupportTicketPriorityDtoEnvelope"];
854
+ };
855
+ };
856
+ /** @description Unauthorized */
857
+ 401: {
858
+ content: {
859
+ "application/json": components["schemas"]["ErrorEnvelope"];
860
+ "application/xml": components["schemas"]["ErrorEnvelope"];
861
+ };
862
+ };
863
+ /** @description Forbidden */
864
+ 403: {
865
+ content: {
866
+ "application/json": components["schemas"]["ErrorEnvelope"];
867
+ "application/xml": components["schemas"]["ErrorEnvelope"];
868
+ };
869
+ };
870
+ };
871
+ };
872
+ put: {
873
+ parameters: {
874
+ query?: {
875
+ tenantId?: string;
876
+ "api-version"?: string;
877
+ };
878
+ header?: {
879
+ "x-api-version"?: string;
880
+ };
881
+ path: {
882
+ supportTicketPriorityId: string;
883
+ };
884
+ };
885
+ requestBody: {
886
+ content: {
887
+ "application/json": components["schemas"]["SupportTicketPriorityUpdateDto"];
888
+ "application/xml": components["schemas"]["SupportTicketPriorityUpdateDto"];
889
+ };
890
+ };
891
+ responses: {
892
+ /** @description OK */
893
+ 200: {
894
+ content: {
895
+ "application/json": components["schemas"]["EmptyEnvelope"];
896
+ "application/xml": components["schemas"]["EmptyEnvelope"];
897
+ };
898
+ };
899
+ /** @description Unauthorized */
900
+ 401: {
901
+ content: {
902
+ "application/json": components["schemas"]["ErrorEnvelope"];
903
+ "application/xml": components["schemas"]["ErrorEnvelope"];
904
+ };
905
+ };
906
+ /** @description Forbidden */
907
+ 403: {
908
+ content: {
909
+ "application/json": components["schemas"]["ErrorEnvelope"];
910
+ "application/xml": components["schemas"]["ErrorEnvelope"];
911
+ };
912
+ };
913
+ };
914
+ };
915
+ delete: {
916
+ parameters: {
917
+ query?: {
918
+ tenantId?: string;
919
+ "api-version"?: string;
920
+ };
921
+ header?: {
922
+ "x-api-version"?: string;
923
+ };
924
+ path: {
925
+ supportTicketPriorityId: string;
926
+ };
927
+ };
928
+ responses: {
929
+ /** @description OK */
930
+ 200: {
931
+ content: {
932
+ "application/json": components["schemas"]["EmptyEnvelope"];
933
+ "application/xml": components["schemas"]["EmptyEnvelope"];
934
+ };
935
+ };
936
+ /** @description Unauthorized */
937
+ 401: {
938
+ content: {
939
+ "application/json": components["schemas"]["ErrorEnvelope"];
940
+ "application/xml": components["schemas"]["ErrorEnvelope"];
941
+ };
942
+ };
943
+ /** @description Forbidden */
944
+ 403: {
945
+ content: {
946
+ "application/json": components["schemas"]["ErrorEnvelope"];
947
+ "application/xml": components["schemas"]["ErrorEnvelope"];
948
+ };
949
+ };
950
+ };
951
+ };
952
+ };
953
+ "/api/v2/SupportService/SupportTickets": {
954
+ get: {
955
+ parameters: {
956
+ query?: {
957
+ tenantId?: string;
958
+ pageNumber?: number;
959
+ pageSize?: number;
960
+ "api-version"?: string;
961
+ };
962
+ header?: {
963
+ "x-api-version"?: string;
964
+ };
965
+ };
966
+ responses: {
967
+ /** @description OK */
968
+ 200: {
969
+ content: {
970
+ "application/json": components["schemas"]["SupportTicketDtoListEnvelope"];
971
+ "application/xml": components["schemas"]["SupportTicketDtoListEnvelope"];
972
+ };
973
+ };
974
+ /** @description Unauthorized */
975
+ 401: {
976
+ content: {
977
+ "application/json": components["schemas"]["ErrorEnvelope"];
978
+ "application/xml": components["schemas"]["ErrorEnvelope"];
979
+ };
980
+ };
981
+ /** @description Forbidden */
982
+ 403: {
983
+ content: {
984
+ "application/json": components["schemas"]["ErrorEnvelope"];
985
+ "application/xml": components["schemas"]["ErrorEnvelope"];
986
+ };
987
+ };
988
+ };
989
+ };
990
+ post: {
991
+ parameters: {
992
+ query?: {
993
+ tenantId?: string;
994
+ "api-version"?: string;
995
+ };
996
+ header?: {
997
+ "x-api-version"?: string;
998
+ };
999
+ };
1000
+ requestBody: {
1001
+ content: {
1002
+ "application/json": components["schemas"]["SupportTicketCreateDto"];
1003
+ "application/xml": components["schemas"]["SupportTicketCreateDto"];
1004
+ };
1005
+ };
1006
+ responses: {
1007
+ /** @description Created */
1008
+ 201: {
1009
+ content: {
1010
+ "application/json": components["schemas"]["EmptyEnvelope"];
1011
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1012
+ };
1013
+ };
1014
+ /** @description Unauthorized */
1015
+ 401: {
1016
+ content: {
1017
+ "application/json": components["schemas"]["ErrorEnvelope"];
1018
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1019
+ };
1020
+ };
1021
+ /** @description Forbidden */
1022
+ 403: {
1023
+ content: {
1024
+ "application/json": components["schemas"]["ErrorEnvelope"];
1025
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1026
+ };
1027
+ };
1028
+ };
1029
+ };
1030
+ };
1031
+ "/api/v2/SupportService/SupportTickets/{supportTicketId}": {
1032
+ get: {
1033
+ parameters: {
1034
+ query?: {
1035
+ "api-version"?: string;
1036
+ };
1037
+ header?: {
1038
+ "x-api-version"?: string;
1039
+ };
1040
+ path: {
1041
+ supportTicketId: string;
1042
+ };
1043
+ };
1044
+ responses: {
1045
+ /** @description OK */
1046
+ 200: {
1047
+ content: {
1048
+ "application/json": components["schemas"]["SupportTicketDtoEnvelope"];
1049
+ "application/xml": components["schemas"]["SupportTicketDtoEnvelope"];
1050
+ };
1051
+ };
1052
+ /** @description Unauthorized */
1053
+ 401: {
1054
+ content: {
1055
+ "application/json": components["schemas"]["ErrorEnvelope"];
1056
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1057
+ };
1058
+ };
1059
+ /** @description Forbidden */
1060
+ 403: {
1061
+ content: {
1062
+ "application/json": components["schemas"]["ErrorEnvelope"];
1063
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1064
+ };
1065
+ };
1066
+ };
1067
+ };
1068
+ put: {
1069
+ parameters: {
1070
+ query?: {
1071
+ tenantId?: string;
1072
+ "api-version"?: string;
1073
+ };
1074
+ header?: {
1075
+ "x-api-version"?: string;
1076
+ };
1077
+ path: {
1078
+ supportTicketId: string;
1079
+ };
1080
+ };
1081
+ requestBody: {
1082
+ content: {
1083
+ "application/json": components["schemas"]["SupportTicketUpdateDto"];
1084
+ "application/xml": components["schemas"]["SupportTicketUpdateDto"];
1085
+ };
1086
+ };
1087
+ responses: {
1088
+ /** @description OK */
1089
+ 200: {
1090
+ content: {
1091
+ "application/json": components["schemas"]["EmptyEnvelope"];
1092
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1093
+ };
1094
+ };
1095
+ /** @description Unauthorized */
1096
+ 401: {
1097
+ content: {
1098
+ "application/json": components["schemas"]["ErrorEnvelope"];
1099
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1100
+ };
1101
+ };
1102
+ /** @description Forbidden */
1103
+ 403: {
1104
+ content: {
1105
+ "application/json": components["schemas"]["ErrorEnvelope"];
1106
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1107
+ };
1108
+ };
1109
+ };
1110
+ };
1111
+ delete: {
1112
+ parameters: {
1113
+ query?: {
1114
+ tenantId?: string;
1115
+ "api-version"?: string;
1116
+ };
1117
+ header?: {
1118
+ "x-api-version"?: string;
1119
+ };
1120
+ path: {
1121
+ supportTicketId: string;
1122
+ };
1123
+ };
1124
+ responses: {
1125
+ /** @description OK */
1126
+ 200: {
1127
+ content: {
1128
+ "application/json": components["schemas"]["EmptyEnvelope"];
1129
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1130
+ };
1131
+ };
1132
+ /** @description Unauthorized */
1133
+ 401: {
1134
+ content: {
1135
+ "application/json": components["schemas"]["ErrorEnvelope"];
1136
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1137
+ };
1138
+ };
1139
+ /** @description Forbidden */
1140
+ 403: {
1141
+ content: {
1142
+ "application/json": components["schemas"]["ErrorEnvelope"];
1143
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1144
+ };
1145
+ };
1146
+ };
1147
+ };
1148
+ };
1149
+ "/api/v2/SupportService/SupportTickets/{supportTicketId}/Conversations": {
1150
+ get: {
1151
+ parameters: {
1152
+ query?: {
1153
+ pageNumber?: number;
1154
+ pageSize?: number;
1155
+ "api-version"?: string;
1156
+ };
1157
+ header?: {
1158
+ "x-api-version"?: string;
1159
+ };
1160
+ path: {
1161
+ supportTicketId: string;
1162
+ };
1163
+ };
1164
+ responses: {
1165
+ /** @description OK */
1166
+ 200: {
1167
+ content: {
1168
+ "application/json": components["schemas"]["SupportTicketConversationDtoListEnvelope"];
1169
+ "application/xml": components["schemas"]["SupportTicketConversationDtoListEnvelope"];
1170
+ };
1171
+ };
1172
+ /** @description Unauthorized */
1173
+ 401: {
1174
+ content: {
1175
+ "application/json": components["schemas"]["ErrorEnvelope"];
1176
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1177
+ };
1178
+ };
1179
+ /** @description Forbidden */
1180
+ 403: {
1181
+ content: {
1182
+ "application/json": components["schemas"]["ErrorEnvelope"];
1183
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1184
+ };
1185
+ };
1186
+ };
1187
+ };
1188
+ post: {
1189
+ parameters: {
1190
+ query?: {
1191
+ tenantId?: string;
1192
+ "api-version"?: string;
1193
+ };
1194
+ header?: {
1195
+ "x-api-version"?: string;
1196
+ };
1197
+ path: {
1198
+ supportTicketId: string;
1199
+ };
1200
+ };
1201
+ requestBody: {
1202
+ content: {
1203
+ "application/json": components["schemas"]["SupportTicketConversationCreateDto"];
1204
+ "application/xml": components["schemas"]["SupportTicketConversationCreateDto"];
1205
+ };
1206
+ };
1207
+ responses: {
1208
+ /** @description Created */
1209
+ 201: {
1210
+ content: {
1211
+ "application/json": components["schemas"]["EmptyEnvelope"];
1212
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1213
+ };
1214
+ };
1215
+ /** @description Unauthorized */
1216
+ 401: {
1217
+ content: {
1218
+ "application/json": components["schemas"]["ErrorEnvelope"];
1219
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1220
+ };
1221
+ };
1222
+ /** @description Forbidden */
1223
+ 403: {
1224
+ content: {
1225
+ "application/json": components["schemas"]["ErrorEnvelope"];
1226
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1227
+ };
1228
+ };
1229
+ };
1230
+ };
1231
+ };
1232
+ "/api/v2/SupportService/SupportTickets/{supportTicketId}/Conversations/{supportTicketConversationId}": {
1233
+ get: {
1234
+ parameters: {
1235
+ query?: {
1236
+ "api-version"?: string;
1237
+ };
1238
+ header?: {
1239
+ "x-api-version"?: string;
1240
+ };
1241
+ path: {
1242
+ supportTicketId: string;
1243
+ supportTicketConversationId: string;
1244
+ };
1245
+ };
1246
+ responses: {
1247
+ /** @description OK */
1248
+ 200: {
1249
+ content: {
1250
+ "application/json": components["schemas"]["SupportTicketConversationDtoEnvelope"];
1251
+ "application/xml": components["schemas"]["SupportTicketConversationDtoEnvelope"];
1252
+ };
1253
+ };
1254
+ /** @description Unauthorized */
1255
+ 401: {
1256
+ content: {
1257
+ "application/json": components["schemas"]["ErrorEnvelope"];
1258
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1259
+ };
1260
+ };
1261
+ /** @description Forbidden */
1262
+ 403: {
1263
+ content: {
1264
+ "application/json": components["schemas"]["ErrorEnvelope"];
1265
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1266
+ };
1267
+ };
1268
+ };
1269
+ };
1270
+ delete: {
1271
+ parameters: {
1272
+ query?: {
1273
+ tenantId?: string;
1274
+ "api-version"?: string;
1275
+ };
1276
+ header?: {
1277
+ "x-api-version"?: string;
1278
+ };
1279
+ path: {
1280
+ supportTicketId: string;
1281
+ supportTicketConversationId: string;
1282
+ };
1283
+ };
1284
+ responses: {
1285
+ /** @description OK */
1286
+ 200: {
1287
+ content: {
1288
+ "application/json": components["schemas"]["EmptyEnvelope"];
1289
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1290
+ };
1291
+ };
1292
+ /** @description Unauthorized */
1293
+ 401: {
1294
+ content: {
1295
+ "application/json": components["schemas"]["ErrorEnvelope"];
1296
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1297
+ };
1298
+ };
1299
+ /** @description Forbidden */
1300
+ 403: {
1301
+ content: {
1302
+ "application/json": components["schemas"]["ErrorEnvelope"];
1303
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1304
+ };
1305
+ };
1306
+ };
1307
+ };
1308
+ };
1309
+ "/api/v2/SupportService/SupportTickets/{supportTicketId}/Conversations/{supportTicketConversationId}/Messages": {
1310
+ get: {
1311
+ parameters: {
1312
+ query?: {
1313
+ pageNumber?: number;
1314
+ pageSize?: number;
1315
+ "api-version"?: string;
1316
+ };
1317
+ header?: {
1318
+ "x-api-version"?: string;
1319
+ };
1320
+ path: {
1321
+ supportTicketConversationId: string;
1322
+ supportTicketId: string;
1323
+ };
1324
+ };
1325
+ responses: {
1326
+ /** @description OK */
1327
+ 200: {
1328
+ content: {
1329
+ "application/json": components["schemas"]["PrivateMessageDtoListEnvelope"];
1330
+ "application/xml": components["schemas"]["PrivateMessageDtoListEnvelope"];
1331
+ };
1332
+ };
1333
+ /** @description Unauthorized */
1334
+ 401: {
1335
+ content: {
1336
+ "application/json": components["schemas"]["ErrorEnvelope"];
1337
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1338
+ };
1339
+ };
1340
+ /** @description Forbidden */
1341
+ 403: {
1342
+ content: {
1343
+ "application/json": components["schemas"]["ErrorEnvelope"];
1344
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1345
+ };
1346
+ };
1347
+ };
1348
+ };
1349
+ };
1350
+ "/api/v2/SupportService/SupportTicketTypes": {
1351
+ get: {
1352
+ parameters: {
1353
+ query?: {
1354
+ tenantId?: string;
1355
+ pageNumber?: number;
1356
+ pageSize?: number;
1357
+ "api-version"?: string;
1358
+ };
1359
+ header?: {
1360
+ "x-api-version"?: string;
1361
+ };
1362
+ };
1363
+ responses: {
1364
+ /** @description OK */
1365
+ 200: {
1366
+ content: {
1367
+ "application/json": components["schemas"]["SupportTicketTypeDtoListEnvelope"];
1368
+ "application/xml": components["schemas"]["SupportTicketTypeDtoListEnvelope"];
1369
+ };
1370
+ };
1371
+ /** @description Unauthorized */
1372
+ 401: {
1373
+ content: {
1374
+ "application/json": components["schemas"]["ErrorEnvelope"];
1375
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1376
+ };
1377
+ };
1378
+ /** @description Forbidden */
1379
+ 403: {
1380
+ content: {
1381
+ "application/json": components["schemas"]["ErrorEnvelope"];
1382
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1383
+ };
1384
+ };
1385
+ };
1386
+ };
1387
+ post: {
1388
+ parameters: {
1389
+ query?: {
1390
+ tenantId?: string;
1391
+ "api-version"?: string;
1392
+ };
1393
+ header?: {
1394
+ "x-api-version"?: string;
1395
+ };
1396
+ };
1397
+ requestBody: {
1398
+ content: {
1399
+ "application/json": components["schemas"]["SupportTicketTypeCreateDto"];
1400
+ "application/xml": components["schemas"]["SupportTicketTypeCreateDto"];
1401
+ };
1402
+ };
1403
+ responses: {
1404
+ /** @description Created */
1405
+ 201: {
1406
+ content: {
1407
+ "application/json": components["schemas"]["EmptyEnvelope"];
1408
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1409
+ };
1410
+ };
1411
+ /** @description Unauthorized */
1412
+ 401: {
1413
+ content: {
1414
+ "application/json": components["schemas"]["ErrorEnvelope"];
1415
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1416
+ };
1417
+ };
1418
+ /** @description Forbidden */
1419
+ 403: {
1420
+ content: {
1421
+ "application/json": components["schemas"]["ErrorEnvelope"];
1422
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1423
+ };
1424
+ };
1425
+ };
1426
+ };
1427
+ };
1428
+ "/api/v2/SupportService/SupportTicketTypes/{supportTicketTypeId}": {
1429
+ get: {
1430
+ parameters: {
1431
+ query?: {
1432
+ "api-version"?: string;
1433
+ };
1434
+ header?: {
1435
+ "x-api-version"?: string;
1436
+ };
1437
+ path: {
1438
+ supportTicketTypeId: string;
1439
+ };
1440
+ };
1441
+ responses: {
1442
+ /** @description OK */
1443
+ 200: {
1444
+ content: {
1445
+ "application/json": components["schemas"]["SupportTicketTypeDtoEnvelope"];
1446
+ "application/xml": components["schemas"]["SupportTicketTypeDtoEnvelope"];
1447
+ };
1448
+ };
1449
+ /** @description Unauthorized */
1450
+ 401: {
1451
+ content: {
1452
+ "application/json": components["schemas"]["ErrorEnvelope"];
1453
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1454
+ };
1455
+ };
1456
+ /** @description Forbidden */
1457
+ 403: {
1458
+ content: {
1459
+ "application/json": components["schemas"]["ErrorEnvelope"];
1460
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1461
+ };
1462
+ };
1463
+ };
1464
+ };
1465
+ put: {
1466
+ parameters: {
1467
+ query?: {
1468
+ tenantId?: string;
1469
+ "api-version"?: string;
1470
+ };
1471
+ header?: {
1472
+ "x-api-version"?: string;
1473
+ };
1474
+ path: {
1475
+ supportTicketTypeId: string;
1476
+ };
1477
+ };
1478
+ requestBody: {
1479
+ content: {
1480
+ "application/json": components["schemas"]["SupportTicketTypeUpdateDto"];
1481
+ "application/xml": components["schemas"]["SupportTicketTypeUpdateDto"];
1482
+ };
1483
+ };
1484
+ responses: {
1485
+ /** @description OK */
1486
+ 200: {
1487
+ content: {
1488
+ "application/json": components["schemas"]["EmptyEnvelope"];
1489
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1490
+ };
1491
+ };
1492
+ /** @description Unauthorized */
1493
+ 401: {
1494
+ content: {
1495
+ "application/json": components["schemas"]["ErrorEnvelope"];
1496
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1497
+ };
1498
+ };
1499
+ /** @description Forbidden */
1500
+ 403: {
1501
+ content: {
1502
+ "application/json": components["schemas"]["ErrorEnvelope"];
1503
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1504
+ };
1505
+ };
1506
+ };
1507
+ };
1508
+ delete: {
1509
+ parameters: {
1510
+ query?: {
1511
+ tenantId?: string;
1512
+ "api-version"?: string;
1513
+ };
1514
+ header?: {
1515
+ "x-api-version"?: string;
1516
+ };
1517
+ path: {
1518
+ supportTicketTypeId: string;
1519
+ };
1520
+ };
1521
+ responses: {
1522
+ /** @description OK */
1523
+ 200: {
1524
+ content: {
1525
+ "application/json": components["schemas"]["EmptyEnvelope"];
1526
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1527
+ };
1528
+ };
1529
+ /** @description Unauthorized */
1530
+ 401: {
1531
+ content: {
1532
+ "application/json": components["schemas"]["ErrorEnvelope"];
1533
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1534
+ };
1535
+ };
1536
+ /** @description Forbidden */
1537
+ 403: {
1538
+ content: {
1539
+ "application/json": components["schemas"]["ErrorEnvelope"];
1540
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1541
+ };
1542
+ };
1543
+ };
1544
+ };
1545
+ };
1546
+ }
1547
+
1548
+ export type webhooks = Record<string, never>;
1549
+
1550
+ export interface components {
1551
+ schemas: {
1552
+ EmptyEnvelope: {
1553
+ isSuccess?: boolean;
1554
+ errorMessage?: string | null;
1555
+ correlationId?: string | null;
1556
+ /** Format: date-time */
1557
+ timestamp?: string;
1558
+ activityId?: string | null;
1559
+ };
1560
+ ErrorEnvelope: {
1561
+ isSuccess?: boolean;
1562
+ errorMessage?: string | null;
1563
+ correlationId?: string | null;
1564
+ /** Format: date-time */
1565
+ timestamp?: string;
1566
+ activityId?: string | null;
1567
+ };
1568
+ PrivateMessageDto: {
1569
+ id?: string | null;
1570
+ readed?: boolean;
1571
+ message?: string | null;
1572
+ senderSocialProfileID?: string | null;
1573
+ receptorSocialProfileID?: string | null;
1574
+ /** Format: date-time */
1575
+ sentTimestamp?: string;
1576
+ /** Format: date-time */
1577
+ readTimestamp?: string;
1578
+ /** Format: date-time */
1579
+ receivedTimestamp?: string;
1580
+ };
1581
+ PrivateMessageDtoListEnvelope: {
1582
+ isSuccess?: boolean;
1583
+ errorMessage?: string | null;
1584
+ correlationId?: string | null;
1585
+ /** Format: date-time */
1586
+ timestamp?: string;
1587
+ activityId?: string | null;
1588
+ result?: components["schemas"]["PrivateMessageDto"][] | null;
1589
+ };
1590
+ SupportEntitlementCreateDto: {
1591
+ /** Format: uuid */
1592
+ id?: string;
1593
+ /** Format: date-time */
1594
+ timestamp?: string;
1595
+ title?: string | null;
1596
+ description?: string | null;
1597
+ /** Format: date-time */
1598
+ startDateTime?: string;
1599
+ /** Format: date-time */
1600
+ endDateTime?: string;
1601
+ /** Format: date-time */
1602
+ nextInvoiceDateTime?: string;
1603
+ code?: string | null;
1604
+ signature?: string | null;
1605
+ /** Format: int32 */
1606
+ quantity?: number;
1607
+ /** Format: int32 */
1608
+ repetitions?: number;
1609
+ /** Format: int32 */
1610
+ chargeAttempts?: number;
1611
+ /** Format: int32 */
1612
+ freeTrialInDays?: number;
1613
+ /** Format: int32 */
1614
+ gracePeriodInDays?: number;
1615
+ /** Format: int32 */
1616
+ customRenewalPeriod?: number;
1617
+ enableAutomaticRenew?: boolean;
1618
+ enableProRateBilling?: boolean;
1619
+ enableUsageThreshold?: boolean;
1620
+ enableAutomaticDisable?: boolean;
1621
+ enableAutomaticPayments?: boolean;
1622
+ /** Format: int32 */
1623
+ usageThreshold?: number;
1624
+ data?: string | null;
1625
+ dataLabel?: string | null;
1626
+ data1?: string | null;
1627
+ data1Label?: string | null;
1628
+ data2?: string | null;
1629
+ data2Label?: string | null;
1630
+ data3?: string | null;
1631
+ data3Label?: string | null;
1632
+ data4?: string | null;
1633
+ data4Label?: string | null;
1634
+ data5?: string | null;
1635
+ data5Label?: string | null;
1636
+ data6?: string | null;
1637
+ data6Label?: string | null;
1638
+ data7?: string | null;
1639
+ data7Label?: string | null;
1640
+ data8?: string | null;
1641
+ data8Label?: string | null;
1642
+ data9?: string | null;
1643
+ data9Label?: string | null;
1644
+ accountHolderID?: string | null;
1645
+ individualID?: string | null;
1646
+ organizationID?: string | null;
1647
+ receptorBusinessID?: string | null;
1648
+ businessID?: string | null;
1649
+ businessProfileRecordID?: string | null;
1650
+ paymentTokenID?: string | null;
1651
+ walletAccountID?: string | null;
1652
+ securityCertificateID?: string | null;
1653
+ };
1654
+ SupportEntitlementDto: {
1655
+ id?: string | null;
1656
+ /** Format: date-time */
1657
+ timestamp?: string | null;
1658
+ title?: string | null;
1659
+ description?: string | null;
1660
+ /** Format: date-time */
1661
+ startDateTime?: string;
1662
+ /** Format: date-time */
1663
+ endDateTime?: string;
1664
+ /** Format: date-time */
1665
+ nextInvoiceDateTime?: string;
1666
+ code?: string | null;
1667
+ signature?: string | null;
1668
+ /** Format: int32 */
1669
+ quantity?: number;
1670
+ /** Format: int32 */
1671
+ repetitions?: number;
1672
+ /** Format: int32 */
1673
+ chargeAttempts?: number;
1674
+ /** Format: int32 */
1675
+ freeTrialInDays?: number;
1676
+ /** Format: int32 */
1677
+ gracePeriodInDays?: number;
1678
+ /** Format: int32 */
1679
+ customRenewalPeriod?: number;
1680
+ enableAutomaticRenew?: boolean;
1681
+ enableProRateBilling?: boolean;
1682
+ enableUsageThreshold?: boolean;
1683
+ enableAutomaticDisable?: boolean;
1684
+ enableAutomaticPayments?: boolean;
1685
+ /** Format: int32 */
1686
+ usageThreshold?: number;
1687
+ data?: string | null;
1688
+ dataLabel?: string | null;
1689
+ data1?: string | null;
1690
+ data1Label?: string | null;
1691
+ data2?: string | null;
1692
+ data2Label?: string | null;
1693
+ data3?: string | null;
1694
+ data3Label?: string | null;
1695
+ data4?: string | null;
1696
+ data4Label?: string | null;
1697
+ data5?: string | null;
1698
+ data5Label?: string | null;
1699
+ data6?: string | null;
1700
+ data6Label?: string | null;
1701
+ data7?: string | null;
1702
+ data7Label?: string | null;
1703
+ data8?: string | null;
1704
+ data8Label?: string | null;
1705
+ data9?: string | null;
1706
+ data9Label?: string | null;
1707
+ accountHolderID?: string | null;
1708
+ individualID?: string | null;
1709
+ organizationID?: string | null;
1710
+ receptorBusinessID?: string | null;
1711
+ businessID?: string | null;
1712
+ businessProfileRecordID?: string | null;
1713
+ paymentTokenID?: string | null;
1714
+ walletAccountID?: string | null;
1715
+ securityCertificateID?: string | null;
1716
+ };
1717
+ SupportEntitlementDtoEnvelope: {
1718
+ isSuccess?: boolean;
1719
+ errorMessage?: string | null;
1720
+ correlationId?: string | null;
1721
+ /** Format: date-time */
1722
+ timestamp?: string;
1723
+ activityId?: string | null;
1724
+ result?: components["schemas"]["SupportEntitlementDto"];
1725
+ };
1726
+ SupportEntitlementDtoListEnvelope: {
1727
+ isSuccess?: boolean;
1728
+ errorMessage?: string | null;
1729
+ correlationId?: string | null;
1730
+ /** Format: date-time */
1731
+ timestamp?: string;
1732
+ activityId?: string | null;
1733
+ result?: components["schemas"]["SupportEntitlementDto"][] | null;
1734
+ };
1735
+ SupportEntitlementUpdateDto: {
1736
+ title?: string | null;
1737
+ description?: string | null;
1738
+ /** Format: date-time */
1739
+ endDateTime?: string;
1740
+ /** Format: date-time */
1741
+ nextInvoiceDateTime?: string;
1742
+ code?: string | null;
1743
+ signature?: string | null;
1744
+ /** Format: int32 */
1745
+ quantity?: number;
1746
+ /** Format: int32 */
1747
+ repetitions?: number;
1748
+ /** Format: int32 */
1749
+ chargeAttempts?: number;
1750
+ /** Format: int32 */
1751
+ freeTrialInDays?: number;
1752
+ /** Format: int32 */
1753
+ gracePeriodInDays?: number;
1754
+ /** Format: int32 */
1755
+ customRenewalPeriod?: number;
1756
+ enableAutomaticRenew?: boolean;
1757
+ enableProRateBilling?: boolean;
1758
+ enableUsageThreshold?: boolean;
1759
+ enableAutomaticDisable?: boolean;
1760
+ enableAutomaticPayments?: boolean;
1761
+ /** Format: int32 */
1762
+ usageThreshold?: number;
1763
+ data?: string | null;
1764
+ dataLabel?: string | null;
1765
+ data1?: string | null;
1766
+ data1Label?: string | null;
1767
+ data2?: string | null;
1768
+ data2Label?: string | null;
1769
+ data3?: string | null;
1770
+ data3Label?: string | null;
1771
+ data4?: string | null;
1772
+ data4Label?: string | null;
1773
+ data5?: string | null;
1774
+ data5Label?: string | null;
1775
+ data6?: string | null;
1776
+ data6Label?: string | null;
1777
+ data7?: string | null;
1778
+ data7Label?: string | null;
1779
+ data8?: string | null;
1780
+ data8Label?: string | null;
1781
+ data9?: string | null;
1782
+ data9Label?: string | null;
1783
+ accountHolderID?: string | null;
1784
+ individualID?: string | null;
1785
+ organizationID?: string | null;
1786
+ receptorBusinessID?: string | null;
1787
+ businessID?: string | null;
1788
+ businessProfileRecordID?: string | null;
1789
+ paymentTokenID?: string | null;
1790
+ walletAccountID?: string | null;
1791
+ securityCertificateID?: string | null;
1792
+ };
1793
+ SupportRequestAttachmentCreateDto: {
1794
+ /** Format: uuid */
1795
+ id?: string;
1796
+ /** Format: date-time */
1797
+ timestamp?: string;
1798
+ businessID?: string | null;
1799
+ businessProfileRecordID?: string | null;
1800
+ isFolder?: boolean;
1801
+ fileName: string;
1802
+ title?: string | null;
1803
+ abstract?: string | null;
1804
+ author?: string | null;
1805
+ keyWords?: string | null;
1806
+ notes?: string | null;
1807
+ validResponse?: boolean;
1808
+ parentFileUploadID?: string | null;
1809
+ /** Format: binary */
1810
+ file?: string | null;
1811
+ metadata?: string | null;
1812
+ supportRequestID?: string | null;
1813
+ };
1814
+ SupportRequestAttachmentDto: {
1815
+ id?: string | null;
1816
+ /** Format: date-time */
1817
+ timestamp?: string | null;
1818
+ businessID?: string | null;
1819
+ businessProfileRecordID?: string | null;
1820
+ mD5Hash?: string | null;
1821
+ metadata?: string | null;
1822
+ fileUploadURL?: string | null;
1823
+ isFolder?: boolean;
1824
+ fileName?: string | null;
1825
+ title?: string | null;
1826
+ abstract?: string | null;
1827
+ author?: string | null;
1828
+ keyWords?: string | null;
1829
+ notes?: string | null;
1830
+ contentType?: string | null;
1831
+ /** Format: int64 */
1832
+ fileLength?: number;
1833
+ validResponse?: boolean;
1834
+ socialProfileID?: string | null;
1835
+ parentFileUploadID?: string | null;
1836
+ accountHolderID?: string | null;
1837
+ supportRequestID?: string | null;
1838
+ };
1839
+ SupportRequestAttachmentDtoEnvelope: {
1840
+ isSuccess?: boolean;
1841
+ errorMessage?: string | null;
1842
+ correlationId?: string | null;
1843
+ /** Format: date-time */
1844
+ timestamp?: string;
1845
+ activityId?: string | null;
1846
+ result?: components["schemas"]["SupportRequestAttachmentDto"];
1847
+ };
1848
+ SupportRequestAttachmentDtoListEnvelope: {
1849
+ isSuccess?: boolean;
1850
+ errorMessage?: string | null;
1851
+ correlationId?: string | null;
1852
+ /** Format: date-time */
1853
+ timestamp?: string;
1854
+ activityId?: string | null;
1855
+ result?: components["schemas"]["SupportRequestAttachmentDto"][] | null;
1856
+ };
1857
+ SupportRequestAttachmentUpdateDto: {
1858
+ mD5Hash?: string | null;
1859
+ metadata?: string | null;
1860
+ fileUploadURL?: string | null;
1861
+ fileName?: string | null;
1862
+ title?: string | null;
1863
+ abstract?: string | null;
1864
+ author?: string | null;
1865
+ keyWords?: string | null;
1866
+ notes?: string | null;
1867
+ contentType?: string | null;
1868
+ /** Format: int64 */
1869
+ fileLength?: number;
1870
+ validResponse?: boolean;
1871
+ };
1872
+ SupportRequestCreateDto: {
1873
+ /** Format: uuid */
1874
+ id?: string;
1875
+ /** Format: date-time */
1876
+ timestamp?: string;
1877
+ title: string;
1878
+ description?: string | null;
1879
+ approved?: boolean;
1880
+ /** Format: date-time */
1881
+ approvedTimestamp?: string;
1882
+ businessID?: string | null;
1883
+ businessProfileRecordID?: string | null;
1884
+ supportEntitlementID?: string | null;
1885
+ contactID?: string | null;
1886
+ accountHolderID?: string | null;
1887
+ };
1888
+ SupportRequestDto: {
1889
+ id?: string | null;
1890
+ /** Format: date-time */
1891
+ timestamp?: string | null;
1892
+ title?: string | null;
1893
+ description?: string | null;
1894
+ approved?: boolean;
1895
+ /** Format: date-time */
1896
+ approvedTimestamp?: string;
1897
+ businessID?: string | null;
1898
+ businessProfileRecordID?: string | null;
1899
+ supportEntitlementID?: string | null;
1900
+ contactID?: string | null;
1901
+ accountHolderID?: string | null;
1902
+ };
1903
+ SupportRequestDtoEnvelope: {
1904
+ isSuccess?: boolean;
1905
+ errorMessage?: string | null;
1906
+ correlationId?: string | null;
1907
+ /** Format: date-time */
1908
+ timestamp?: string;
1909
+ activityId?: string | null;
1910
+ result?: components["schemas"]["SupportRequestDto"];
1911
+ };
1912
+ SupportRequestDtoListEnvelope: {
1913
+ isSuccess?: boolean;
1914
+ errorMessage?: string | null;
1915
+ correlationId?: string | null;
1916
+ /** Format: date-time */
1917
+ timestamp?: string;
1918
+ activityId?: string | null;
1919
+ result?: components["schemas"]["SupportRequestDto"][] | null;
1920
+ };
1921
+ SupportRequestUpdateDto: {
1922
+ title?: string | null;
1923
+ description?: string | null;
1924
+ approved?: boolean;
1925
+ /** Format: date-time */
1926
+ approvedTimestamp?: string;
1927
+ supportEntitlementID?: string | null;
1928
+ };
1929
+ SupportTicketConversationCreateDto: {
1930
+ /** Format: uuid */
1931
+ id?: string;
1932
+ /** Format: date-time */
1933
+ timestamp?: string;
1934
+ topic?: string | null;
1935
+ closed?: boolean;
1936
+ /** Format: date-time */
1937
+ closedTimestamp?: string;
1938
+ socialProfileID?: string | null;
1939
+ };
1940
+ SupportTicketConversationDto: {
1941
+ id?: string | null;
1942
+ /** Format: date-time */
1943
+ timestamp?: string | null;
1944
+ supportTicketID?: string | null;
1945
+ topic?: string | null;
1946
+ closed?: boolean;
1947
+ /** Format: date-time */
1948
+ closedTimestamp?: string;
1949
+ socialProfileID?: string | null;
1950
+ };
1951
+ SupportTicketConversationDtoEnvelope: {
1952
+ isSuccess?: boolean;
1953
+ errorMessage?: string | null;
1954
+ correlationId?: string | null;
1955
+ /** Format: date-time */
1956
+ timestamp?: string;
1957
+ activityId?: string | null;
1958
+ result?: components["schemas"]["SupportTicketConversationDto"];
1959
+ };
1960
+ SupportTicketConversationDtoListEnvelope: {
1961
+ isSuccess?: boolean;
1962
+ errorMessage?: string | null;
1963
+ correlationId?: string | null;
1964
+ /** Format: date-time */
1965
+ timestamp?: string;
1966
+ activityId?: string | null;
1967
+ result?: components["schemas"]["SupportTicketConversationDto"][] | null;
1968
+ };
1969
+ SupportTicketCreateDto: {
1970
+ /** Format: uuid */
1971
+ id?: string;
1972
+ /** Format: date-time */
1973
+ timestamp?: string;
1974
+ description?: string | null;
1975
+ accountHolderID?: string | null;
1976
+ contactID?: string | null;
1977
+ businessID?: string | null;
1978
+ businessProfileRecordID?: string | null;
1979
+ supportTicketTypeID?: string | null;
1980
+ supportEntitlementID?: string | null;
1981
+ supportPriorityID?: string | null;
1982
+ };
1983
+ SupportTicketDto: {
1984
+ id?: string | null;
1985
+ /** Format: date-time */
1986
+ timestamp?: string | null;
1987
+ description?: string | null;
1988
+ accountHolderID?: string | null;
1989
+ contactID?: string | null;
1990
+ businessID?: string | null;
1991
+ businessProfileRecordID?: string | null;
1992
+ supportTicketTypeID?: string | null;
1993
+ supportEntitlementID?: string | null;
1994
+ supportPriorityID?: string | null;
1995
+ };
1996
+ SupportTicketDtoEnvelope: {
1997
+ isSuccess?: boolean;
1998
+ errorMessage?: string | null;
1999
+ correlationId?: string | null;
2000
+ /** Format: date-time */
2001
+ timestamp?: string;
2002
+ activityId?: string | null;
2003
+ result?: components["schemas"]["SupportTicketDto"];
2004
+ };
2005
+ SupportTicketDtoListEnvelope: {
2006
+ isSuccess?: boolean;
2007
+ errorMessage?: string | null;
2008
+ correlationId?: string | null;
2009
+ /** Format: date-time */
2010
+ timestamp?: string;
2011
+ activityId?: string | null;
2012
+ result?: components["schemas"]["SupportTicketDto"][] | null;
2013
+ };
2014
+ SupportTicketPriorityCreateDto: {
2015
+ title?: string | null;
2016
+ description?: string | null;
2017
+ businessID?: string | null;
2018
+ supportEntitlementID?: string | null;
2019
+ };
2020
+ SupportTicketPriorityDto: {
2021
+ id?: string | null;
2022
+ /** Format: date-time */
2023
+ timestamp?: string | null;
2024
+ title?: string | null;
2025
+ description?: string | null;
2026
+ businessID?: string | null;
2027
+ supportEntitlementID?: string | null;
2028
+ };
2029
+ SupportTicketPriorityDtoEnvelope: {
2030
+ isSuccess?: boolean;
2031
+ errorMessage?: string | null;
2032
+ correlationId?: string | null;
2033
+ /** Format: date-time */
2034
+ timestamp?: string;
2035
+ activityId?: string | null;
2036
+ result?: components["schemas"]["SupportTicketPriorityDto"];
2037
+ };
2038
+ SupportTicketPriorityDtoListEnvelope: {
2039
+ isSuccess?: boolean;
2040
+ errorMessage?: string | null;
2041
+ correlationId?: string | null;
2042
+ /** Format: date-time */
2043
+ timestamp?: string;
2044
+ activityId?: string | null;
2045
+ result?: components["schemas"]["SupportTicketPriorityDto"][] | null;
2046
+ };
2047
+ SupportTicketPriorityUpdateDto: {
2048
+ title?: string | null;
2049
+ description?: string | null;
2050
+ };
2051
+ SupportTicketTypeCreateDto: {
2052
+ /** Format: uuid */
2053
+ id?: string;
2054
+ /** Format: date-time */
2055
+ timestamp?: string;
2056
+ title?: string | null;
2057
+ description?: string | null;
2058
+ businessID?: string | null;
2059
+ };
2060
+ SupportTicketTypeDto: {
2061
+ id?: string | null;
2062
+ /** Format: date-time */
2063
+ timestamp?: string | null;
2064
+ title?: string | null;
2065
+ description?: string | null;
2066
+ businessID?: string | null;
2067
+ };
2068
+ SupportTicketTypeDtoEnvelope: {
2069
+ isSuccess?: boolean;
2070
+ errorMessage?: string | null;
2071
+ correlationId?: string | null;
2072
+ /** Format: date-time */
2073
+ timestamp?: string;
2074
+ activityId?: string | null;
2075
+ result?: components["schemas"]["SupportTicketTypeDto"];
2076
+ };
2077
+ SupportTicketTypeDtoListEnvelope: {
2078
+ isSuccess?: boolean;
2079
+ errorMessage?: string | null;
2080
+ correlationId?: string | null;
2081
+ /** Format: date-time */
2082
+ timestamp?: string;
2083
+ activityId?: string | null;
2084
+ result?: components["schemas"]["SupportTicketTypeDto"][] | null;
2085
+ };
2086
+ SupportTicketTypeUpdateDto: {
2087
+ id?: string | null;
2088
+ /** Format: date-time */
2089
+ timestamp?: string | null;
2090
+ title?: string | null;
2091
+ description?: string | null;
2092
+ };
2093
+ SupportTicketUpdateDto: {
2094
+ description?: string | null;
2095
+ accountHolderID?: string | null;
2096
+ contactID?: string | null;
2097
+ businessProfileRecordID?: string | null;
2098
+ supportTicketTypeID?: string | null;
2099
+ supportEntitlementID?: string | null;
2100
+ supportPriorityID?: string | null;
2101
+ };
2102
+ };
2103
+ responses: never;
2104
+ parameters: never;
2105
+ requestBodies: never;
2106
+ headers: never;
2107
+ pathItems: never;
2108
+ }
2109
+
2110
+ export type $defs = Record<string, never>;
2111
+
2112
+ export type external = Record<string, never>;
2113
+
2114
+ export type operations = Record<string, never>;