@fenixalliance/abs-api-client 1.0.1 → 1.0.3

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 (978) hide show
  1. package/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
  2. package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
  3. package/app/index.ts +5 -0
  4. package/clients/{contactService → accountingService}/core/ApiError.ts +24 -24
  5. package/clients/{contactService → accountingService}/core/ApiRequestOptions.ts +16 -16
  6. package/clients/{contactService → accountingService}/core/ApiResult.ts +10 -10
  7. package/clients/{contactService → accountingService}/core/CancelablePromise.ts +130 -130
  8. package/clients/{contactService → accountingService}/core/OpenAPI.ts +31 -31
  9. package/clients/{contactService → accountingService}/core/request.ts +321 -321
  10. package/clients/accountingService/index.ts +97 -0
  11. package/clients/accountingService/models/AccountCreateDto.ts +30 -0
  12. package/clients/accountingService/models/AccountDto.ts +41 -0
  13. package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
  14. package/clients/accountingService/models/AccountDtoListEnvelope.ts +14 -0
  15. package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
  16. package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
  17. package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
  18. package/clients/{catalogService/models/ItemPricePolicyDtoEnvelope.ts → accountingService/models/AccountingEntryDtoEnvelope.ts} +5 -5
  19. package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
  20. package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
  21. package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
  22. package/clients/accountingService/models/BillingProfileDto.ts +67 -0
  23. package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
  24. package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
  25. package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
  26. package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
  27. package/clients/accountingService/models/BudgetDto.ts +12 -0
  28. package/clients/accountingService/models/BudgetDtoEnvelope.ts +14 -0
  29. package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
  30. package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
  31. package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
  32. package/clients/{cartService/models/ForgotPasswordRequest.ts → accountingService/models/Currency.ts} +3 -2
  33. package/clients/{cartService/models/Envelope.ts → accountingService/models/EmptyEnvelope.ts} +3 -4
  34. package/clients/{contactService → accountingService}/models/ErrorEnvelope.ts +2 -2
  35. package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
  36. package/clients/accountingService/models/FinancialBookDto.ts +12 -0
  37. package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
  38. package/clients/{catalogService/models/ItemBrandDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/FinancialBookDtoListEnvelope.ts} +5 -5
  39. package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
  40. package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
  41. package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
  42. package/clients/{cartService/models/WishListDtoIReadOnlyListEnvelope.ts → accountingService/models/FiscalAuthorityDtoEnvelope.ts} +5 -5
  43. package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
  44. package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
  45. package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
  46. package/clients/accountingService/models/FiscalYearDto.ts +16 -0
  47. package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
  48. package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
  49. package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
  50. package/clients/accountingService/models/Int32Envelope.ts +13 -0
  51. package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
  52. package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
  53. package/clients/{catalogService/models/ItemAttachmentDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts} +5 -5
  54. package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
  55. package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
  56. package/clients/accountingService/models/JournalCreateDto.ts +17 -0
  57. package/clients/accountingService/models/JournalDto.ts +17 -0
  58. package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
  59. package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
  60. package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
  61. package/clients/accountingService/models/JournalEntryDto.ts +31 -0
  62. package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
  63. package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
  64. package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
  65. package/clients/accountingService/models/JournalTypeDto.ts +12 -0
  66. package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
  67. package/clients/{catalogService/models/ItemTagDtoIReadOnlyCollectionEnvelope.ts → accountingService/models/JournalTypeDtoListEnvelope.ts} +5 -5
  68. package/clients/{cartService/models/InfoRequest.ts → accountingService/models/JournalTypeUpdateDto.ts} +4 -4
  69. package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
  70. package/clients/accountingService/models/LedgerDto.ts +15 -0
  71. package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
  72. package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
  73. package/clients/accountingService/models/LoanCreateDto.ts +18 -0
  74. package/clients/accountingService/models/LoanDto.ts +18 -0
  75. package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
  76. package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
  77. package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
  78. package/clients/accountingService/models/Money.ts +10 -0
  79. package/clients/accountingService/models/Operation.ts +23 -0
  80. package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
  81. package/clients/accountingService/models/ReceiptDto.ts +24 -0
  82. package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
  83. package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
  84. package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
  85. package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
  86. package/clients/accountingService/services/AccountsService.ts +788 -0
  87. package/clients/accountingService/services/BillingProfilesService.ts +194 -0
  88. package/clients/accountingService/services/BudgetsService.ts +167 -0
  89. package/clients/accountingService/services/FinancialBooksService.ts +194 -0
  90. package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
  91. package/clients/accountingService/services/FiscalYearsService.ts +194 -0
  92. package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
  93. package/clients/accountingService/services/JournalTypesService.ts +167 -0
  94. package/clients/accountingService/services/JournalsService.ts +366 -0
  95. package/clients/accountingService/services/LedgersService.ts +163 -0
  96. package/clients/accountingService/services/LoansService.ts +194 -0
  97. package/clients/accountingService/services/ReceiptsService.ts +164 -0
  98. package/clients/cartService/core/ApiError.ts +24 -24
  99. package/clients/cartService/core/ApiRequestOptions.ts +16 -16
  100. package/clients/cartService/core/ApiResult.ts +10 -10
  101. package/clients/cartService/core/CancelablePromise.ts +130 -130
  102. package/clients/cartService/core/OpenAPI.ts +31 -31
  103. package/clients/cartService/core/request.ts +321 -321
  104. package/clients/cartService/index.ts +41 -52
  105. package/clients/cartService/models/BooleanEnvelope.ts +2 -2
  106. package/clients/cartService/models/CartDto.ts +1 -0
  107. package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
  108. package/clients/cartService/models/CartUpdateRequest.ts +9 -0
  109. package/clients/cartService/models/CountryDto.ts +14 -0
  110. package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
  111. package/clients/cartService/models/CountrySwitchRequest.ts +9 -0
  112. package/clients/cartService/models/CurrencyDto.ts +13 -0
  113. package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
  114. package/clients/cartService/models/EmptyEnvelope.ts +12 -0
  115. package/clients/cartService/models/ErrorEnvelope.ts +2 -2
  116. package/clients/cartService/models/ItemCartRecordCreateDto.ts +2 -1
  117. package/clients/cartService/models/ItemCartRecordDto.ts +11 -7
  118. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
  119. package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +14 -0
  120. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
  121. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
  122. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
  123. package/clients/cartService/models/{ItemToCompareCartRecordDtoIReadOnlyListEnvelope.ts → ItemToCompareCartRecordDtoListEnvelope.ts} +3 -3
  124. package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
  125. package/clients/cartService/models/WishListDto.ts +2 -1
  126. package/clients/cartService/models/WishListDtoEnvelope.ts +2 -2
  127. package/clients/cartService/services/CartsService.ts +1114 -21
  128. package/clients/cartService/services/CompareService.ts +30 -9
  129. package/clients/cartService/services/RecordsService.ts +129 -21
  130. package/clients/cartService/services/WishListsService.ts +126 -19
  131. package/clients/catalogService/core/ApiError.ts +24 -24
  132. package/clients/catalogService/core/ApiRequestOptions.ts +16 -16
  133. package/clients/catalogService/core/ApiResult.ts +10 -10
  134. package/clients/catalogService/core/CancelablePromise.ts +130 -130
  135. package/clients/catalogService/core/OpenAPI.ts +31 -31
  136. package/clients/catalogService/core/request.ts +321 -321
  137. package/clients/catalogService/index.ts +110 -124
  138. package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
  139. package/clients/catalogService/models/CatalogItemDto.ts +170 -0
  140. package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
  141. package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
  142. package/clients/catalogService/models/CatalogItemUpdateDto.ts +179 -0
  143. package/clients/catalogService/models/Currency.ts +9 -0
  144. package/clients/catalogService/models/EmptyEnvelope.ts +12 -0
  145. package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
  146. package/clients/catalogService/models/Int32Envelope.ts +13 -0
  147. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +8 -10
  148. package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
  149. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
  150. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
  151. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +6 -6
  152. package/clients/catalogService/models/ItemAttributeCreateDto.ts +3 -2
  153. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
  154. package/clients/catalogService/models/{ItemAttributeDtoIReadOnlyCollectionEnvelope.ts → ItemAttributeDtoListEnvelope.ts} +3 -3
  155. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
  156. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
  157. package/clients/catalogService/models/ItemAttributeUpdateDto.ts +1 -1
  158. package/clients/catalogService/models/ItemBrandCreateDto.ts +4 -3
  159. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
  160. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
  161. package/clients/catalogService/models/ItemBrandUpdateDto.ts +1 -1
  162. package/clients/catalogService/models/ItemCategoryCreateDto.ts +3 -2
  163. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
  164. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
  165. package/clients/catalogService/models/ItemCategoryUpdateDto.ts +1 -1
  166. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +13 -3
  167. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
  168. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
  169. package/clients/catalogService/models/{ItemImagesCreateDto.ts → ItemImageCreateDto.ts} +4 -4
  170. package/clients/catalogService/models/ItemImageDto.ts +0 -1
  171. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
  172. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
  173. package/clients/catalogService/models/ItemImageUpdateDto.ts +22 -0
  174. package/clients/catalogService/models/ItemQuestionCreateDto.ts +6 -5
  175. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
  176. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
  177. package/clients/catalogService/models/ItemQuestionRecordCreateDto.ts +14 -0
  178. package/clients/catalogService/models/ItemQuestionUpdateDto.ts +1 -3
  179. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
  180. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
  181. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
  182. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
  183. package/clients/catalogService/models/ItemReviewCreateDto.ts +1 -0
  184. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
  185. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
  186. package/clients/catalogService/models/ItemReviewRecordCreateDto.ts +12 -0
  187. package/clients/catalogService/models/ItemShippingPolicyDto.ts +6 -6
  188. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
  189. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
  190. package/clients/catalogService/models/ItemTagCreateDto.ts +3 -2
  191. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
  192. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
  193. package/clients/catalogService/models/ItemTagUpdateDto.ts +1 -1
  194. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
  195. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
  196. package/clients/catalogService/models/ItemTypeCreateDto.ts +3 -2
  197. package/clients/catalogService/models/ItemTypeDto.ts +4 -4
  198. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
  199. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
  200. package/clients/catalogService/models/ItemTypeUpdateDto.ts +1 -1
  201. package/clients/catalogService/models/ItemWarrantyPolicyDto.ts +3 -4
  202. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
  203. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
  204. package/clients/{tenantService/models/BusinessDto.ts → catalogService/models/MerchantDto.ts} +16 -22
  205. package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
  206. package/clients/catalogService/models/Money.ts +10 -0
  207. package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
  208. package/clients/catalogService/models/PricingRuleCreateDto.ts +1 -1
  209. package/clients/catalogService/models/PricingRuleDto.ts +0 -1
  210. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
  211. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
  212. package/clients/catalogService/services/ItemAttachmentsService.ts +72 -36
  213. package/clients/catalogService/services/ItemAttributesService.ts +69 -34
  214. package/clients/catalogService/services/ItemBrandsService.ts +69 -34
  215. package/clients/catalogService/services/ItemCategoriesService.ts +87 -52
  216. package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
  217. package/clients/catalogService/services/ItemImagesService.ts +73 -38
  218. package/clients/catalogService/services/ItemQuestionsService.ts +69 -34
  219. package/clients/catalogService/services/ItemReviewsService.ts +69 -34
  220. package/clients/catalogService/services/ItemTagsService.ts +67 -37
  221. package/clients/catalogService/services/ItemTypesService.ts +71 -36
  222. package/clients/catalogService/services/ItemsService.ts +2176 -0
  223. package/clients/catalogService/services/MerchantsService.ts +30 -0
  224. package/clients/catalogService/services/PoliciesService.ts +24 -4
  225. package/clients/catalogService/services/PricingRulesService.ts +75 -42
  226. package/clients/crmService/core/ApiError.ts +25 -0
  227. package/clients/crmService/core/ApiRequestOptions.ts +17 -0
  228. package/clients/crmService/core/ApiResult.ts +11 -0
  229. package/clients/crmService/core/CancelablePromise.ts +131 -0
  230. package/clients/crmService/core/OpenAPI.ts +32 -0
  231. package/clients/crmService/core/request.ts +322 -0
  232. package/clients/crmService/index.ts +28 -0
  233. package/clients/crmService/models/CartDto.ts +18 -0
  234. package/clients/crmService/models/CartDtoEnvelope.ts +14 -0
  235. package/clients/crmService/models/ContactCreateDto.ts +55 -0
  236. package/clients/crmService/models/ContactDto.ts +71 -0
  237. package/clients/{contactService → crmService}/models/ContactDtoEnvelope.ts +2 -2
  238. package/clients/{contactService → crmService}/models/ContactDtoListEnvelope.ts +2 -2
  239. package/clients/crmService/models/ContactProfileDto.ts +38 -0
  240. package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
  241. package/clients/crmService/models/ContactUpdateDto.ts +53 -0
  242. package/clients/crmService/models/EmptyEnvelope.ts +12 -0
  243. package/clients/crmService/models/ErrorEnvelope.ts +12 -0
  244. package/clients/crmService/models/Operation.ts +23 -0
  245. package/clients/crmService/models/SocialProfileDto.ts +39 -0
  246. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +14 -0
  247. package/clients/crmService/models/WalletDto.ts +22 -0
  248. package/clients/crmService/models/WalletDtoEnvelope.ts +14 -0
  249. package/clients/crmService/services/ContactsService.ts +755 -0
  250. package/clients/crmService/services/SyncService.ts +117 -0
  251. package/clients/forexService/core/ApiError.ts +24 -24
  252. package/clients/forexService/core/ApiRequestOptions.ts +16 -16
  253. package/clients/forexService/core/ApiResult.ts +10 -10
  254. package/clients/forexService/core/CancelablePromise.ts +130 -130
  255. package/clients/forexService/core/OpenAPI.ts +31 -31
  256. package/clients/forexService/core/request.ts +321 -321
  257. package/clients/forexService/index.ts +21 -30
  258. package/clients/forexService/models/Currency.ts +1 -1
  259. package/clients/forexService/models/ErrorEnvelope.ts +12 -0
  260. package/clients/forexService/models/ExchangeRate.ts +11 -0
  261. package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
  262. package/clients/forexService/models/ForexRatesDto.ts +1 -1
  263. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
  264. package/clients/forexService/models/MoneyEnvelope.ts +2 -2
  265. package/clients/forexService/services/ExchangeService.ts +10 -2
  266. package/clients/forexService/services/ExchangeVService.ts +65 -0
  267. package/clients/forexService/services/RatesService.ts +78 -3
  268. package/clients/holderService/core/ApiError.ts +24 -24
  269. package/clients/holderService/core/ApiRequestOptions.ts +16 -16
  270. package/clients/holderService/core/ApiResult.ts +10 -10
  271. package/clients/holderService/core/CancelablePromise.ts +130 -130
  272. package/clients/holderService/core/OpenAPI.ts +31 -31
  273. package/clients/holderService/core/request.ts +321 -321
  274. package/clients/holderService/index.ts +46 -31
  275. package/clients/holderService/models/AddressDto.ts +31 -0
  276. package/clients/holderService/models/AddressDtoListEnvelope.ts +14 -0
  277. package/clients/holderService/models/CartDto.ts +18 -0
  278. package/clients/holderService/models/CartDtoEnvelope.ts +14 -0
  279. package/clients/holderService/models/EmptyEnvelope.ts +12 -0
  280. package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
  281. package/clients/{tenantService/models/IntPtr.ts → holderService/models/EnrollmentId.ts} +1 -1
  282. package/clients/holderService/models/ErrorEnvelope.ts +2 -2
  283. package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
  284. package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
  285. package/clients/{identityService/models/BusinessDto.ts → holderService/models/ExtendedTenantDto.ts} +20 -22
  286. package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
  287. package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  288. package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
  289. package/clients/holderService/models/NotificationDto.ts +16 -0
  290. package/clients/holderService/models/NotificationDtoListEnvelope.ts +14 -0
  291. package/clients/holderService/models/Operation.ts +23 -0
  292. package/clients/{identityService/models/AccountHolderDto.ts → holderService/models/PlatformUserDto.ts} +28 -30
  293. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +14 -0
  294. package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
  295. package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
  296. package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
  297. package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
  298. package/clients/holderService/models/SocialProfileDto.ts +39 -0
  299. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +14 -0
  300. package/clients/holderService/models/{BusinessDto.ts → TenantDto.ts} +14 -22
  301. package/clients/holderService/models/TenantDtoListEnvelope.ts +14 -0
  302. package/clients/holderService/models/TenantEnrolmentDto.ts +15 -0
  303. package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  304. package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  305. package/clients/holderService/models/TenantInvitationDto.ts +16 -0
  306. package/clients/{catalogService/models/ItemCategoryDtoIReadOnlyCollectionEnvelope.ts → holderService/models/TenantInvitationDtoListEnvelope.ts} +5 -5
  307. package/clients/holderService/models/WalletDto.ts +22 -0
  308. package/clients/holderService/models/WalletDtoEnvelope.ts +14 -0
  309. package/clients/holderService/services/HolderService.ts +340 -30
  310. package/clients/identityService/core/ApiError.ts +24 -24
  311. package/clients/identityService/core/ApiRequestOptions.ts +16 -16
  312. package/clients/identityService/core/ApiResult.ts +10 -10
  313. package/clients/identityService/core/CancelablePromise.ts +130 -130
  314. package/clients/identityService/core/OpenAPI.ts +31 -31
  315. package/clients/identityService/core/request.ts +321 -321
  316. package/clients/identityService/index.ts +40 -53
  317. package/clients/identityService/models/AccountHolderCreateDto.ts +21 -15
  318. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
  319. package/clients/identityService/models/ApiResponse.ts +4 -5
  320. package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
  321. package/clients/identityService/models/ErrorEnvelope.ts +2 -2
  322. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
  323. package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
  324. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
  325. package/clients/{holderService/models/AccountHolderDto.ts → identityService/models/PlatformUserDto.ts} +28 -30
  326. package/clients/identityService/models/StringListEnvelope.ts +2 -2
  327. package/clients/identityService/models/TenantDto.ts +45 -0
  328. package/clients/identityService/services/ApplicationsService.ts +30 -5
  329. package/clients/identityService/services/CheckerService.ts +9 -3
  330. package/clients/identityService/services/OAuthService.ts +50 -14
  331. package/clients/identityService/services/ResourceService.ts +8 -2
  332. package/clients/identityService/services/UserInfoService.ts +16 -4
  333. package/clients/inventoryService/core/ApiError.ts +24 -24
  334. package/clients/inventoryService/core/ApiRequestOptions.ts +16 -16
  335. package/clients/inventoryService/core/ApiResult.ts +10 -10
  336. package/clients/inventoryService/core/CancelablePromise.ts +130 -130
  337. package/clients/inventoryService/core/OpenAPI.ts +31 -31
  338. package/clients/inventoryService/core/request.ts +321 -321
  339. package/clients/inventoryService/index.ts +10 -24
  340. package/clients/inventoryService/services/InventoryService.ts +6 -1
  341. package/clients/invoicingService/core/ApiError.ts +24 -24
  342. package/clients/invoicingService/core/ApiRequestOptions.ts +16 -16
  343. package/clients/invoicingService/core/ApiResult.ts +10 -10
  344. package/clients/invoicingService/core/CancelablePromise.ts +130 -130
  345. package/clients/invoicingService/core/OpenAPI.ts +31 -31
  346. package/clients/invoicingService/core/request.ts +321 -321
  347. package/clients/invoicingService/index.ts +48 -28
  348. package/clients/invoicingService/models/Currency.ts +9 -0
  349. package/clients/invoicingService/models/EmptyEnvelope.ts +12 -0
  350. package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
  351. package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
  352. package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
  353. package/clients/invoicingService/models/Int32Envelope.ts +13 -0
  354. package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
  355. package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
  356. package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
  357. package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
  358. package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
  359. package/clients/invoicingService/models/InvoiceCreateDto.ts +75 -0
  360. package/clients/invoicingService/models/InvoiceDto.ts +91 -2
  361. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +14 -0
  362. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
  363. package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
  364. package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
  365. package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
  366. package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
  367. package/clients/{cartService/models/RefreshRequest.ts → invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts} +2 -2
  368. package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
  369. package/clients/invoicingService/models/InvoiceLineDto.ts +100 -0
  370. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +14 -0
  371. package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +14 -0
  372. package/clients/invoicingService/models/InvoiceLineUpdateDto.ts +20 -0
  373. package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
  374. package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
  375. package/clients/invoicingService/models/InvoiceReferenceDtoEnvelope.ts +14 -0
  376. package/clients/invoicingService/models/InvoiceReferenceDtoListEnvelope.ts +14 -0
  377. package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
  378. package/clients/invoicingService/models/InvoiceUpdateDto.ts +33 -0
  379. package/clients/invoicingService/models/Money.ts +10 -0
  380. package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
  381. package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
  382. package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
  383. package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
  384. package/clients/invoicingService/models/TenantDto.ts +45 -0
  385. package/clients/invoicingService/services/InvoicesService.ts +1029 -15
  386. package/clients/learningService/core/ApiError.ts +25 -0
  387. package/clients/learningService/core/ApiRequestOptions.ts +17 -0
  388. package/clients/learningService/core/ApiResult.ts +11 -0
  389. package/clients/learningService/core/CancelablePromise.ts +131 -0
  390. package/clients/learningService/core/OpenAPI.ts +32 -0
  391. package/clients/learningService/core/request.ts +322 -0
  392. package/clients/learningService/index.ts +50 -0
  393. package/clients/learningService/models/AverageDto.ts +10 -0
  394. package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
  395. package/clients/learningService/models/CountDto.ts +10 -0
  396. package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
  397. package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
  398. package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
  399. package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
  400. package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
  401. package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
  402. package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
  403. package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
  404. package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
  405. package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
  406. package/clients/learningService/models/CourseDto.ts +170 -0
  407. package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
  408. package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
  409. package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
  410. package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
  411. package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
  412. package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
  413. package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
  414. package/clients/{tenantService/models/ICustomAttributeProvider.ts → learningService/models/CourseUpdateDto.ts} +1 -1
  415. package/clients/learningService/models/EmptyEnvelope.ts +12 -0
  416. package/clients/learningService/models/ErrorEnvelope.ts +12 -0
  417. package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
  418. package/clients/learningService/models/InstructorProfileDto.ts +39 -0
  419. package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
  420. package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
  421. package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
  422. package/clients/{cartService/models/ResendConfirmationEmailRequest.ts → learningService/models/Pagination.ts} +3 -2
  423. package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
  424. package/clients/learningService/models/StudentProfileDto.ts +38 -0
  425. package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
  426. package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
  427. package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
  428. package/clients/learningService/services/CourseCertificatesService.ts +270 -0
  429. package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
  430. package/clients/learningService/services/CoursesService.ts +128 -0
  431. package/clients/learningService/services/InstructorProfilesService.ts +152 -0
  432. package/clients/learningService/services/StudentProfilesService.ts +212 -0
  433. package/clients/marketingService/core/ApiError.ts +25 -0
  434. package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
  435. package/clients/marketingService/core/ApiResult.ts +11 -0
  436. package/clients/marketingService/core/CancelablePromise.ts +131 -0
  437. package/clients/marketingService/core/OpenAPI.ts +32 -0
  438. package/clients/marketingService/core/request.ts +322 -0
  439. package/clients/marketingService/index.ts +64 -0
  440. package/clients/marketingService/models/Currency.ts +9 -0
  441. package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
  442. package/clients/marketingService/models/EmailGroupDto.ts +14 -0
  443. package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
  444. package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
  445. package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
  446. package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
  447. package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
  448. package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
  449. package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
  450. package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
  451. package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
  452. package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
  453. package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
  454. package/clients/{catalogService/models/ItemImageDtoIReadOnlyCollectionEnvelope.ts → marketingService/models/EmailTemplateDtoListEnvelope.ts} +5 -5
  455. package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
  456. package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
  457. package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
  458. package/clients/marketingService/models/Int32Envelope.ts +13 -0
  459. package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
  460. package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
  461. package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
  462. package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
  463. package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
  464. package/clients/marketingService/models/MarketingListDto.ts +33 -0
  465. package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
  466. package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
  467. package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
  468. package/clients/marketingService/models/Money.ts +10 -0
  469. package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
  470. package/clients/marketingService/models/NewsletterDto.ts +14 -0
  471. package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
  472. package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
  473. package/clients/marketingService/models/OrderDto.ts +113 -0
  474. package/clients/marketingService/models/OrderDtoEnvelope.ts +14 -0
  475. package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
  476. package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
  477. package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
  478. package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
  479. package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
  480. package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
  481. package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
  482. package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
  483. package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
  484. package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
  485. package/clients/marketingService/services/EmailGroupsService.ts +193 -0
  486. package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
  487. package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
  488. package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
  489. package/clients/marketingService/services/MarketingListsService.ts +193 -0
  490. package/clients/marketingService/services/NewslettersService.ts +193 -0
  491. package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
  492. package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
  493. package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
  494. package/clients/ordersService/core/ApiError.ts +25 -0
  495. package/clients/ordersService/core/ApiRequestOptions.ts +17 -0
  496. package/clients/ordersService/core/ApiResult.ts +11 -0
  497. package/clients/ordersService/core/CancelablePromise.ts +131 -0
  498. package/clients/ordersService/core/OpenAPI.ts +32 -0
  499. package/clients/ordersService/core/request.ts +322 -0
  500. package/clients/ordersService/index.ts +26 -0
  501. package/clients/ordersService/models/Currency.ts +9 -0
  502. package/clients/ordersService/models/EmptyEnvelope.ts +12 -0
  503. package/clients/ordersService/models/ErrorEnvelope.ts +12 -0
  504. package/clients/ordersService/models/Int32Envelope.ts +13 -0
  505. package/clients/ordersService/models/Money.ts +10 -0
  506. package/clients/ordersService/models/OrderCreateDto.ts +74 -0
  507. package/clients/ordersService/models/OrderDto.ts +113 -0
  508. package/clients/ordersService/models/OrderDtoEnvelope.ts +14 -0
  509. package/clients/ordersService/models/OrderDtoListEnvelope.ts +14 -0
  510. package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
  511. package/clients/ordersService/models/OrderLineDto.ts +100 -0
  512. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +14 -0
  513. package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → ordersService/models/OrderLineDtoListEnvelope.ts} +5 -5
  514. package/clients/{cartService/models/ProductCartRecordDto.ts → ordersService/models/OrderLineUpdateDto.ts} +12 -13
  515. package/clients/ordersService/models/OrderUpdateDto.ts +40 -0
  516. package/clients/ordersService/services/OrdersService.ts +390 -0
  517. package/clients/pricingService/core/ApiError.ts +24 -24
  518. package/clients/pricingService/core/ApiRequestOptions.ts +16 -16
  519. package/clients/pricingService/core/ApiResult.ts +10 -10
  520. package/clients/pricingService/core/CancelablePromise.ts +130 -130
  521. package/clients/pricingService/core/OpenAPI.ts +31 -31
  522. package/clients/pricingService/core/request.ts +321 -321
  523. package/clients/pricingService/index.ts +28 -29
  524. package/clients/pricingService/models/Currency.ts +1 -1
  525. package/clients/pricingService/models/EmptyEnvelope.ts +12 -0
  526. package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
  527. package/clients/pricingService/models/Int32Envelope.ts +13 -0
  528. package/clients/pricingService/models/ItemPriceCreateDto.ts +20 -0
  529. package/clients/pricingService/models/ItemPriceDto.ts +20 -0
  530. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +14 -0
  531. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +14 -0
  532. package/clients/pricingService/models/ItemPriceUpdateDto.ts +15 -0
  533. package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
  534. package/clients/pricingService/models/PriceListCreateDto.ts +18 -0
  535. package/clients/pricingService/models/PriceListDto.ts +17 -0
  536. package/clients/pricingService/models/PriceListDtoEnvelope.ts +14 -0
  537. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +14 -0
  538. package/clients/pricingService/models/PriceListUpdateDto.ts +14 -0
  539. package/clients/pricingService/services/PriceListsService.ts +325 -8
  540. package/clients/pricingService/services/PricesService.ts +18 -3
  541. package/clients/securityService/core/ApiError.ts +25 -0
  542. package/clients/securityService/core/ApiRequestOptions.ts +17 -0
  543. package/clients/securityService/core/ApiResult.ts +11 -0
  544. package/clients/securityService/core/CancelablePromise.ts +131 -0
  545. package/clients/securityService/core/OpenAPI.ts +32 -0
  546. package/clients/securityService/core/request.ts +322 -0
  547. package/clients/securityService/index.ts +24 -0
  548. package/clients/securityService/models/EmptyEnvelope.ts +12 -0
  549. package/clients/securityService/models/ErrorEnvelope.ts +12 -0
  550. package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
  551. package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
  552. package/clients/{tenantService/models/BusinessEnrollmentDtoIReadOnlyListEnvelope.ts → securityService/models/SecurityPermissionDtoListEnvelope.ts} +5 -5
  553. package/clients/{tenantService/models/Error.ts → securityService/models/SecurityPermissionUpdateDto.ts} +2 -3
  554. package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
  555. package/clients/securityService/models/SecurityRoleDto.ts +13 -0
  556. package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
  557. package/clients/{cartService/models/Error.ts → securityService/models/SecurityRoleUpdateDto.ts} +2 -3
  558. package/clients/securityService/models/TenantEnrolmentDto.ts +15 -0
  559. package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  560. package/clients/securityService/services/PermissionsService.ts +399 -0
  561. package/clients/securityService/services/RolesService.ts +430 -0
  562. package/clients/supportService/core/ApiError.ts +25 -0
  563. package/clients/supportService/core/ApiRequestOptions.ts +17 -0
  564. package/clients/supportService/core/ApiResult.ts +11 -0
  565. package/clients/supportService/core/CancelablePromise.ts +131 -0
  566. package/clients/supportService/core/OpenAPI.ts +32 -0
  567. package/clients/supportService/core/request.ts +322 -0
  568. package/clients/supportService/index.ts +54 -0
  569. package/clients/supportService/models/EmptyEnvelope.ts +12 -0
  570. package/clients/supportService/models/ErrorEnvelope.ts +12 -0
  571. package/clients/supportService/models/PrivateMessageDto.ts +15 -0
  572. package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
  573. package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
  574. package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
  575. package/clients/{tenantService/models/BusinessEnrollmentDtoEnvelope.ts → supportService/models/SupportEntitlementDtoEnvelope.ts} +5 -5
  576. package/clients/{cartService/models/WishListItemRecordDtoIReadOnlyListEnvelope.ts → supportService/models/SupportEntitlementDtoListEnvelope.ts} +5 -5
  577. package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
  578. package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
  579. package/clients/{catalogService/models/ItemImagesUpdateDto.ts → supportService/models/SupportRequestAttachmentDto.ts} +7 -4
  580. package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
  581. package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
  582. package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
  583. package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
  584. package/clients/supportService/models/SupportRequestDto.ts +18 -0
  585. package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
  586. package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
  587. package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
  588. package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
  589. package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
  590. package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
  591. package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
  592. package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
  593. package/clients/supportService/models/SupportTicketDto.ts +17 -0
  594. package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
  595. package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
  596. package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
  597. package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
  598. package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
  599. package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
  600. package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
  601. package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
  602. package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
  603. package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
  604. package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
  605. package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
  606. package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
  607. package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
  608. package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
  609. package/clients/supportService/services/SupportRequestsService.ts +290 -0
  610. package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
  611. package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
  612. package/clients/supportService/services/SupportTicketsService.ts +331 -0
  613. package/clients/systemService/core/ApiError.ts +25 -0
  614. package/clients/systemService/core/ApiRequestOptions.ts +17 -0
  615. package/clients/systemService/core/ApiResult.ts +11 -0
  616. package/clients/systemService/core/CancelablePromise.ts +131 -0
  617. package/clients/systemService/core/OpenAPI.ts +32 -0
  618. package/clients/systemService/core/request.ts +322 -0
  619. package/clients/systemService/index.ts +33 -0
  620. package/clients/systemService/models/BooleanEnvelope.ts +13 -0
  621. package/clients/systemService/models/ErrorEnvelope.ts +12 -0
  622. package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
  623. package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
  624. package/clients/{cartService/models/InfoResponse.ts → systemService/models/ISwaggerContact.ts} +3 -2
  625. package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
  626. package/clients/systemService/models/ISwaggerLicense.ts +9 -0
  627. package/clients/systemService/models/ISwaggerSpec.ts +19 -0
  628. package/clients/{catalogService/models/ForgotPasswordRequest.ts → systemService/models/LicenseValidationRequest.ts} +2 -2
  629. package/clients/systemService/models/Module.ts +44 -0
  630. package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
  631. package/clients/systemService/models/StringListEnvelope.ts +13 -0
  632. package/clients/systemService/models/StudioModule.ts +9 -0
  633. package/clients/systemService/models/StudioModuleListEnvelope.ts +14 -0
  634. package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
  635. package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  636. package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
  637. package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
  638. package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  639. package/clients/systemService/services/AntiforgeryService.ts +41 -0
  640. package/clients/systemService/services/LicensingService.ts +230 -0
  641. package/clients/systemService/services/MigrationsService.ts +55 -0
  642. package/clients/systemService/services/ModulesService.ts +61 -0
  643. package/clients/tenantService/core/ApiError.ts +24 -24
  644. package/clients/tenantService/core/ApiRequestOptions.ts +16 -16
  645. package/clients/tenantService/core/ApiResult.ts +10 -10
  646. package/clients/tenantService/core/CancelablePromise.ts +130 -130
  647. package/clients/tenantService/core/OpenAPI.ts +31 -31
  648. package/clients/tenantService/core/request.ts +321 -321
  649. package/clients/tenantService/index.ts +130 -62
  650. package/clients/tenantService/models/BooleanEnvelope.ts +13 -0
  651. package/clients/tenantService/models/CartDto.ts +18 -0
  652. package/clients/tenantService/models/CartDtoEnvelope.ts +14 -0
  653. package/clients/tenantService/models/EmptyEnvelope.ts +12 -0
  654. package/clients/tenantService/models/ErrorEnvelope.ts +12 -0
  655. package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
  656. package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
  657. package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  658. package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
  659. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
  660. package/clients/tenantService/models/Operation.ts +23 -0
  661. package/clients/tenantService/models/PlatformUserDto.ts +71 -0
  662. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +14 -0
  663. package/clients/tenantService/models/SocialProfileDto.ts +39 -0
  664. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +14 -0
  665. package/clients/tenantService/models/StringListEnvelope.ts +2 -2
  666. package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
  667. package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  668. package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
  669. package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  670. package/clients/{cartService/models/RegisterRequest.ts → tenantService/models/SuiteLicenseFeatureDto.ts} +3 -3
  671. package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
  672. package/clients/tenantService/models/{BusinessCreateDto.ts → TenantCreateDto.ts} +9 -8
  673. package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
  674. package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
  675. package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
  676. package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
  677. package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
  678. package/clients/tenantService/models/TenantDto.ts +45 -0
  679. package/clients/tenantService/models/TenantDtoEnvelope.ts +14 -0
  680. package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
  681. package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
  682. package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
  683. package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  684. package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  685. package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
  686. package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
  687. package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
  688. package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
  689. package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
  690. package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
  691. package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
  692. package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
  693. package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
  694. package/clients/tenantService/models/TenantPositionDto.ts +13 -0
  695. package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
  696. package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
  697. package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
  698. package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
  699. package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
  700. package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
  701. package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
  702. package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
  703. package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
  704. package/clients/tenantService/models/TenantSizeDto.ts +12 -0
  705. package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
  706. package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
  707. package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
  708. package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
  709. package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
  710. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
  711. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  712. package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
  713. package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
  714. package/clients/tenantService/models/TenantTeamDto.ts +17 -0
  715. package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
  716. package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
  717. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
  718. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
  719. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
  720. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  721. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
  722. package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
  723. package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
  724. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
  725. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  726. package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
  727. package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
  728. package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
  729. package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
  730. package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
  731. package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
  732. package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
  733. package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
  734. package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
  735. package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
  736. package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
  737. package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
  738. package/clients/{catalogService/models/StockItemCreateDto.ts → tenantService/models/TenantTypeCreateDto.ts} +4 -4
  739. package/clients/tenantService/models/TenantTypeDto.ts +11 -0
  740. package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
  741. package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  742. package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
  743. package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
  744. package/clients/tenantService/models/TenantUnitDto.ts +18 -0
  745. package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
  746. package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
  747. package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
  748. package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
  749. package/clients/tenantService/models/WalletDto.ts +2 -1
  750. package/clients/tenantService/models/WalletDtoEnvelope.ts +14 -0
  751. package/clients/tenantService/models/WebPortalDto.ts +19 -0
  752. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +14 -0
  753. package/clients/tenantService/services/DepartmentsService.ts +198 -0
  754. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
  755. package/clients/tenantService/services/EnrollmentsService.ts +195 -0
  756. package/clients/tenantService/services/IndustriesService.ts +190 -0
  757. package/clients/tenantService/services/InvitationsService.ts +150 -0
  758. package/clients/tenantService/services/PositionsService.ts +192 -0
  759. package/clients/tenantService/services/SegmentsService.ts +191 -0
  760. package/clients/tenantService/services/SizesService.ts +194 -0
  761. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
  762. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
  763. package/clients/tenantService/services/TeamRecordsService.ts +192 -0
  764. package/clients/tenantService/services/TeamsService.ts +192 -0
  765. package/clients/tenantService/services/TenantsService.ts +771 -115
  766. package/clients/tenantService/services/TerritoriesService.ts +192 -0
  767. package/clients/tenantService/services/TypesService.ts +176 -0
  768. package/clients/tenantService/services/UnitsService.ts +190 -0
  769. package/clients/walletsService/core/ApiError.ts +25 -0
  770. package/clients/walletsService/core/ApiRequestOptions.ts +17 -0
  771. package/clients/walletsService/core/ApiResult.ts +11 -0
  772. package/clients/walletsService/core/CancelablePromise.ts +131 -0
  773. package/clients/walletsService/core/OpenAPI.ts +32 -0
  774. package/clients/walletsService/core/request.ts +322 -0
  775. package/clients/walletsService/index.ts +24 -0
  776. package/clients/walletsService/models/Currency.ts +9 -0
  777. package/clients/walletsService/models/ErrorEnvelope.ts +12 -0
  778. package/clients/walletsService/models/InvoiceDto.ts +102 -0
  779. package/clients/{invoicingService/models/InvoiceDtoIReadOnlyListEnvelope.ts → walletsService/models/InvoiceDtoListEnvelope.ts} +3 -3
  780. package/clients/walletsService/models/LocationDto.ts +31 -0
  781. package/clients/walletsService/models/LocationDtoListEnvelope.ts +14 -0
  782. package/clients/walletsService/models/Money.ts +10 -0
  783. package/clients/walletsService/models/OrderDto.ts +113 -0
  784. package/clients/walletsService/models/OrderDtoListEnvelope.ts +14 -0
  785. package/clients/walletsService/models/PaymentDto.ts +94 -0
  786. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +14 -0
  787. package/clients/walletsService/models/WalletDto.ts +22 -0
  788. package/clients/walletsService/models/WalletDtoEnvelope.ts +14 -0
  789. package/clients/walletsService/services/WalletsService.ts +239 -0
  790. package/package.json +26 -23
  791. package/schemas/accountingService/schema.s.ts +5108 -0
  792. package/schemas/cartService/schema.s.ts +2804 -1560
  793. package/schemas/catalogService/schema.s.ts +7056 -6109
  794. package/schemas/crmService/schema.s.ts +1558 -0
  795. package/schemas/forexService/schema.s.ts +373 -526
  796. package/schemas/holderService/schema.s.ts +1327 -831
  797. package/schemas/identityService/schema.s.ts +766 -1119
  798. package/schemas/inventoryService/schema.s.ts +46 -425
  799. package/schemas/invoicingService/schema.s.ts +2243 -521
  800. package/schemas/learningService/schema.s.ts +1723 -0
  801. package/schemas/marketingService/schema.s.ts +3027 -0
  802. package/schemas/ordersService/schema.s.ts +1129 -0
  803. package/schemas/pricingService/schema.s.ts +658 -549
  804. package/schemas/securityService/schema.s.ts +1226 -0
  805. package/schemas/supportService/schema.s.ts +2114 -0
  806. package/schemas/systemService/schema.s.ts +1348 -0
  807. package/schemas/tenantService/schema.s.ts +6094 -1606
  808. package/schemas/walletsService/schema.s.ts +806 -0
  809. package/tsconfig.json +110 -0
  810. package/vite.config.js +29 -0
  811. package/wwwroot/build/bundle.js +1 -0
  812. package/clients/cartService/models/AccessTokenResponse.ts +0 -11
  813. package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
  814. package/clients/cartService/models/LoginRequest.ts +0 -11
  815. package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
  816. package/clients/cartService/models/ResponseStatus.ts +0 -12
  817. package/clients/cartService/models/TwoFactorRequest.ts +0 -12
  818. package/clients/cartService/models/TwoFactorResponse.ts +0 -12
  819. package/clients/cartService/services/FenixAllianceAbsWebService.ts +0 -293
  820. package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
  821. package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
  822. package/clients/catalogService/models/InfoRequest.ts +0 -10
  823. package/clients/catalogService/models/InfoResponse.ts +0 -9
  824. package/clients/catalogService/models/ItemPricePolicyDto.ts +0 -35
  825. package/clients/catalogService/models/ItemPricePolicyDtoListEnvelope.ts +0 -14
  826. package/clients/catalogService/models/ItemQuestionDtoIReadOnlyCollectionEnvelope.ts +0 -14
  827. package/clients/catalogService/models/ItemReviewDtoIReadOnlyCollectionEnvelope.ts +0 -14
  828. package/clients/catalogService/models/ItemTypeDtoIReadOnlyCollectionEnvelope.ts +0 -14
  829. package/clients/catalogService/models/LoginRequest.ts +0 -11
  830. package/clients/catalogService/models/PricingRuleDtoIReadOnlyCollectionEnvelope.ts +0 -14
  831. package/clients/catalogService/models/RefreshRequest.ts +0 -8
  832. package/clients/catalogService/models/RegisterRequest.ts +0 -9
  833. package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
  834. package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
  835. package/clients/catalogService/models/StockItemDto.ts +0 -17
  836. package/clients/catalogService/models/StockItemUpdateDto.ts +0 -9
  837. package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
  838. package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
  839. package/clients/catalogService/services/FenixAllianceAbsWebService.ts +0 -293
  840. package/clients/catalogService/services/ProductsService.ts +0 -1743
  841. package/clients/contactService/index.ts +0 -28
  842. package/clients/contactService/models/AccessTokenResponse.ts +0 -11
  843. package/clients/contactService/models/ContactDto.ts +0 -44
  844. package/clients/contactService/models/ForgotPasswordRequest.ts +0 -8
  845. package/clients/contactService/models/HttpValidationProblemDetails.ts +0 -5
  846. package/clients/contactService/models/InfoRequest.ts +0 -10
  847. package/clients/contactService/models/InfoResponse.ts +0 -9
  848. package/clients/contactService/models/LoginRequest.ts +0 -11
  849. package/clients/contactService/models/RefreshRequest.ts +0 -8
  850. package/clients/contactService/models/RegisterRequest.ts +0 -9
  851. package/clients/contactService/models/ResendConfirmationEmailRequest.ts +0 -8
  852. package/clients/contactService/models/ResetPasswordRequest.ts +0 -10
  853. package/clients/contactService/models/TwoFactorRequest.ts +0 -12
  854. package/clients/contactService/models/TwoFactorResponse.ts +0 -12
  855. package/clients/contactService/services/ContactsService.ts +0 -140
  856. package/clients/contactService/services/FenixAllianceAbsWebService.ts +0 -293
  857. package/clients/forexService/models/AccessTokenResponse.ts +0 -11
  858. package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
  859. package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
  860. package/clients/forexService/models/InfoRequest.ts +0 -10
  861. package/clients/forexService/models/InfoResponse.ts +0 -9
  862. package/clients/forexService/models/LoginRequest.ts +0 -11
  863. package/clients/forexService/models/RefreshRequest.ts +0 -8
  864. package/clients/forexService/models/RegisterRequest.ts +0 -9
  865. package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
  866. package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
  867. package/clients/forexService/models/TwoFactorRequest.ts +0 -12
  868. package/clients/forexService/models/TwoFactorResponse.ts +0 -12
  869. package/clients/forexService/services/FenixAllianceAbsWebService.ts +0 -293
  870. package/clients/holderService/models/AccessTokenResponse.ts +0 -11
  871. package/clients/holderService/models/AccountHolderCreateDto.ts +0 -34
  872. package/clients/holderService/models/AccountHolderDtoEnvelope.ts +0 -14
  873. package/clients/holderService/models/BusinessEnrollmentDto.ts +0 -19
  874. package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
  875. package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
  876. package/clients/holderService/models/InfoRequest.ts +0 -10
  877. package/clients/holderService/models/InfoResponse.ts +0 -9
  878. package/clients/holderService/models/LoginRequest.ts +0 -11
  879. package/clients/holderService/models/RefreshRequest.ts +0 -8
  880. package/clients/holderService/models/RegisterRequest.ts +0 -9
  881. package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
  882. package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
  883. package/clients/holderService/models/TwoFactorRequest.ts +0 -12
  884. package/clients/holderService/models/TwoFactorResponse.ts +0 -12
  885. package/clients/holderService/services/FenixAllianceAbsWebService.ts +0 -293
  886. package/clients/identityService/models/AccessTokenResponse.ts +0 -11
  887. package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
  888. package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
  889. package/clients/identityService/models/InfoRequest.ts +0 -10
  890. package/clients/identityService/models/InfoResponse.ts +0 -9
  891. package/clients/identityService/models/LoginRequest.ts +0 -11
  892. package/clients/identityService/models/RefreshRequest.ts +0 -8
  893. package/clients/identityService/models/RegisterRequest.ts +0 -9
  894. package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
  895. package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
  896. package/clients/identityService/models/TwoFactorRequest.ts +0 -12
  897. package/clients/identityService/models/TwoFactorResponse.ts +0 -12
  898. package/clients/identityService/services/FenixAllianceAbsWebService.ts +0 -293
  899. package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
  900. package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
  901. package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
  902. package/clients/inventoryService/models/InfoRequest.ts +0 -10
  903. package/clients/inventoryService/models/InfoResponse.ts +0 -9
  904. package/clients/inventoryService/models/LoginRequest.ts +0 -11
  905. package/clients/inventoryService/models/RefreshRequest.ts +0 -8
  906. package/clients/inventoryService/models/RegisterRequest.ts +0 -9
  907. package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
  908. package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
  909. package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
  910. package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
  911. package/clients/inventoryService/services/FenixAllianceAbsWebService.ts +0 -293
  912. package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
  913. package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
  914. package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
  915. package/clients/invoicingService/models/InfoRequest.ts +0 -10
  916. package/clients/invoicingService/models/InfoResponse.ts +0 -9
  917. package/clients/invoicingService/models/LoginRequest.ts +0 -11
  918. package/clients/invoicingService/models/RefreshRequest.ts +0 -8
  919. package/clients/invoicingService/models/RegisterRequest.ts +0 -9
  920. package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
  921. package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
  922. package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
  923. package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
  924. package/clients/invoicingService/services/FenixAllianceAbsWebService.ts +0 -293
  925. package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
  926. package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
  927. package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
  928. package/clients/pricingService/models/InfoRequest.ts +0 -10
  929. package/clients/pricingService/models/InfoResponse.ts +0 -9
  930. package/clients/pricingService/models/LoginRequest.ts +0 -11
  931. package/clients/pricingService/models/RefreshRequest.ts +0 -8
  932. package/clients/pricingService/models/RegisterRequest.ts +0 -9
  933. package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
  934. package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
  935. package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
  936. package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
  937. package/clients/pricingService/services/FenixAllianceAbsWebService.ts +0 -293
  938. package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
  939. package/clients/tenantService/models/AccountHolderCreateDto.ts +0 -34
  940. package/clients/tenantService/models/AggregateException.ts +0 -18
  941. package/clients/tenantService/models/Assembly.ts +0 -46
  942. package/clients/tenantService/models/BusinessEnrollmentDto.ts +0 -19
  943. package/clients/tenantService/models/ConstructorInfo.ts +0 -103
  944. package/clients/tenantService/models/CustomAttributeData.ts +0 -15
  945. package/clients/tenantService/models/CustomAttributeNamedArgument.ts +0 -13
  946. package/clients/tenantService/models/CustomAttributeTypedArgument.ts +0 -10
  947. package/clients/tenantService/models/EventInfo.ts +0 -44
  948. package/clients/tenantService/models/Exception.ts +0 -16
  949. package/clients/tenantService/models/FieldInfo.ts +0 -74
  950. package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
  951. package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
  952. package/clients/tenantService/models/InfoRequest.ts +0 -10
  953. package/clients/tenantService/models/InfoResponse.ts +0 -9
  954. package/clients/tenantService/models/LoginRequest.ts +0 -11
  955. package/clients/tenantService/models/MemberInfo.ts +0 -31
  956. package/clients/tenantService/models/MethodBase.ts +0 -103
  957. package/clients/tenantService/models/MethodInfo.ts +0 -108
  958. package/clients/tenantService/models/Module.ts +0 -19
  959. package/clients/tenantService/models/ModuleHandle.ts +0 -8
  960. package/clients/tenantService/models/ParameterInfo.ts +0 -40
  961. package/clients/tenantService/models/PropertyInfo.ts +0 -49
  962. package/clients/tenantService/models/RefreshRequest.ts +0 -8
  963. package/clients/tenantService/models/RegisterRequest.ts +0 -9
  964. package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
  965. package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
  966. package/clients/tenantService/models/ResponseStatus.ts +0 -12
  967. package/clients/tenantService/models/RuntimeFieldHandle.ts +0 -9
  968. package/clients/tenantService/models/RuntimeMethodHandle.ts +0 -9
  969. package/clients/tenantService/models/RuntimeTypeHandle.ts +0 -9
  970. package/clients/tenantService/models/StructLayoutAttribute.ts +0 -16
  971. package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
  972. package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
  973. package/clients/tenantService/models/Type.ts +0 -141
  974. package/clients/tenantService/models/TypeInfo.ts +0 -156
  975. package/clients/tenantService/models/WalletDtoTask.ts +0 -40
  976. package/clients/tenantService/models/WalletDtoTaskEnvelope.ts +0 -14
  977. package/clients/tenantService/services/FenixAllianceAbsWebService.ts +0 -293
  978. package/schemas/contactService/schema.s.ts +0 -674
@@ -0,0 +1,1348 @@
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/SystemService/Antiforgery/GetAndStoreTokens": {
9
+ get: {
10
+ parameters: {
11
+ query?: {
12
+ "api-version"?: string;
13
+ };
14
+ header?: {
15
+ "x-api-version"?: string;
16
+ };
17
+ };
18
+ responses: {
19
+ /** @description OK */
20
+ 200: {
21
+ content: never;
22
+ };
23
+ };
24
+ };
25
+ };
26
+ "/api/v2/SystemService/Antiforgery/IsRequestValid": {
27
+ get: {
28
+ parameters: {
29
+ query?: {
30
+ "api-version"?: string;
31
+ };
32
+ header?: {
33
+ "x-api-version"?: string;
34
+ };
35
+ };
36
+ responses: {
37
+ /** @description OK */
38
+ 200: {
39
+ content: never;
40
+ };
41
+ };
42
+ };
43
+ };
44
+ "/api/v2/SystemService/Licensing/Licenses": {
45
+ get: {
46
+ parameters: {
47
+ query?: {
48
+ tenantId?: string;
49
+ "api-version"?: string;
50
+ };
51
+ header?: {
52
+ "x-api-version"?: string;
53
+ };
54
+ };
55
+ responses: {
56
+ /** @description OK */
57
+ 200: {
58
+ content: {
59
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
60
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
61
+ "application/json;odata.metadata=minimal": components["schemas"]["SuiteLicenseDtoListEnvelope"];
62
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
63
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
64
+ "application/json;odata.metadata=full": components["schemas"]["SuiteLicenseDtoListEnvelope"];
65
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
66
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
67
+ "application/json;odata.metadata=none": components["schemas"]["SuiteLicenseDtoListEnvelope"];
68
+ "application/json;odata.streaming=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
69
+ "application/json;odata.streaming=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
70
+ "application/json": components["schemas"]["SuiteLicenseDtoListEnvelope"];
71
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
72
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
73
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
74
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
75
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
76
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
77
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
78
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
79
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
80
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
81
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
82
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
83
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
84
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
85
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
86
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
87
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
88
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
89
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
90
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
91
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
92
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
93
+ "application/json;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoListEnvelope"];
94
+ "application/json;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoListEnvelope"];
95
+ "application/xml": components["schemas"]["SuiteLicenseDtoListEnvelope"];
96
+ "text/plain": components["schemas"]["SuiteLicenseDtoListEnvelope"];
97
+ "application/octet-stream": components["schemas"]["SuiteLicenseDtoListEnvelope"];
98
+ "text/json": components["schemas"]["SuiteLicenseDtoListEnvelope"];
99
+ "text/xml": components["schemas"]["SuiteLicenseDtoListEnvelope"];
100
+ };
101
+ };
102
+ /** @description Forbidden */
103
+ 403: {
104
+ content: {
105
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
106
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
107
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
108
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
109
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
110
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
111
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
112
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
113
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
114
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
115
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
116
+ "application/json": components["schemas"]["ErrorEnvelope"];
117
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
118
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
119
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
120
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
121
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
122
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
123
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
124
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
125
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
126
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
127
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
128
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
129
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
130
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
131
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
132
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
133
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
134
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
135
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
136
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
137
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
138
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
139
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
140
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
141
+ "application/xml": components["schemas"]["ErrorEnvelope"];
142
+ "text/plain": components["schemas"]["ErrorEnvelope"];
143
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
144
+ "text/json": components["schemas"]["ErrorEnvelope"];
145
+ "text/xml": components["schemas"]["ErrorEnvelope"];
146
+ };
147
+ };
148
+ };
149
+ };
150
+ };
151
+ "/api/v2/SystemService/Licensing/Licenses/{licenseId}": {
152
+ get: {
153
+ parameters: {
154
+ query?: {
155
+ "api-version"?: string;
156
+ };
157
+ header?: {
158
+ "x-api-version"?: string;
159
+ };
160
+ path: {
161
+ licenseId: string;
162
+ };
163
+ };
164
+ responses: {
165
+ /** @description OK */
166
+ 200: {
167
+ content: {
168
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
169
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
170
+ "application/json;odata.metadata=minimal": components["schemas"]["SuiteLicenseDtoEnvelope"];
171
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
172
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
173
+ "application/json;odata.metadata=full": components["schemas"]["SuiteLicenseDtoEnvelope"];
174
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
175
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
176
+ "application/json;odata.metadata=none": components["schemas"]["SuiteLicenseDtoEnvelope"];
177
+ "application/json;odata.streaming=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
178
+ "application/json;odata.streaming=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
179
+ "application/json": components["schemas"]["SuiteLicenseDtoEnvelope"];
180
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
181
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
182
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
183
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
184
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
185
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
186
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
187
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
188
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
189
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
190
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
191
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
192
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
193
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
194
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
195
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
196
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
197
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
198
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
199
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
200
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
201
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
202
+ "application/json;IEEE754Compatible=false": components["schemas"]["SuiteLicenseDtoEnvelope"];
203
+ "application/json;IEEE754Compatible=true": components["schemas"]["SuiteLicenseDtoEnvelope"];
204
+ "application/xml": components["schemas"]["SuiteLicenseDtoEnvelope"];
205
+ "text/plain": components["schemas"]["SuiteLicenseDtoEnvelope"];
206
+ "application/octet-stream": components["schemas"]["SuiteLicenseDtoEnvelope"];
207
+ "text/json": components["schemas"]["SuiteLicenseDtoEnvelope"];
208
+ "text/xml": components["schemas"]["SuiteLicenseDtoEnvelope"];
209
+ };
210
+ };
211
+ /** @description Forbidden */
212
+ 403: {
213
+ content: {
214
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
215
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
216
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
217
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
218
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
219
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
220
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
221
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
222
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
223
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
224
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
225
+ "application/json": components["schemas"]["ErrorEnvelope"];
226
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
227
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
228
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
229
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
230
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
231
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
232
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
233
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
234
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
235
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
236
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
237
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
238
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
239
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
240
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
241
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
242
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
243
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
244
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
245
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
246
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
247
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
248
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
249
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
250
+ "application/xml": components["schemas"]["ErrorEnvelope"];
251
+ "text/plain": components["schemas"]["ErrorEnvelope"];
252
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
253
+ "text/json": components["schemas"]["ErrorEnvelope"];
254
+ "text/xml": components["schemas"]["ErrorEnvelope"];
255
+ };
256
+ };
257
+ };
258
+ };
259
+ };
260
+ "/api/v2/SystemService/Licensing/Licenses/{licenseId}/Assignments": {
261
+ get: {
262
+ parameters: {
263
+ query: {
264
+ tenantId: string;
265
+ "api-version"?: string;
266
+ };
267
+ header?: {
268
+ "x-api-version"?: string;
269
+ };
270
+ path: {
271
+ licenseId: string;
272
+ };
273
+ };
274
+ responses: {
275
+ /** @description OK */
276
+ 200: {
277
+ content: {
278
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
279
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
280
+ "application/json;odata.metadata=minimal": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
281
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
282
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
283
+ "application/json;odata.metadata=full": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
284
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
285
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
286
+ "application/json;odata.metadata=none": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
287
+ "application/json;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
288
+ "application/json;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
289
+ "application/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
290
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
291
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
292
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
293
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
294
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
295
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
296
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
297
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
298
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
299
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
300
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
301
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
302
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
303
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
304
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
305
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
306
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
307
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
308
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
309
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
310
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
311
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
312
+ "application/json;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
313
+ "application/json;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
314
+ "application/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
315
+ "text/plain": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
316
+ "application/octet-stream": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
317
+ "text/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
318
+ "text/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
319
+ };
320
+ };
321
+ /** @description Forbidden */
322
+ 403: {
323
+ content: {
324
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
325
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
326
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
327
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
328
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
329
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
330
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
331
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
332
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
333
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
334
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
335
+ "application/json": components["schemas"]["ErrorEnvelope"];
336
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
337
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
338
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
339
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
340
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
341
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
342
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
343
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
344
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
345
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
346
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
347
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
348
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
349
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
350
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
351
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
352
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
353
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
354
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
355
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
356
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
357
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
358
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
359
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
360
+ "application/xml": components["schemas"]["ErrorEnvelope"];
361
+ "text/plain": components["schemas"]["ErrorEnvelope"];
362
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
363
+ "text/json": components["schemas"]["ErrorEnvelope"];
364
+ "text/xml": components["schemas"]["ErrorEnvelope"];
365
+ };
366
+ };
367
+ };
368
+ };
369
+ };
370
+ "/api/v2/SystemService/Licensing/Licenses/{licenseId}/Attributes": {
371
+ get: {
372
+ parameters: {
373
+ query: {
374
+ tenantId: string;
375
+ "api-version"?: string;
376
+ };
377
+ header?: {
378
+ "x-api-version"?: string;
379
+ };
380
+ path: {
381
+ licenseId: string;
382
+ };
383
+ };
384
+ responses: {
385
+ /** @description OK */
386
+ 200: {
387
+ content: {
388
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
389
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
390
+ "application/json;odata.metadata=minimal": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
391
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
392
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
393
+ "application/json;odata.metadata=full": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
394
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
395
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
396
+ "application/json;odata.metadata=none": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
397
+ "application/json;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
398
+ "application/json;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
399
+ "application/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
400
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
401
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
402
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
403
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
404
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
405
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
406
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
407
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
408
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
409
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
410
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
411
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
412
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
413
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
414
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
415
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
416
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
417
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
418
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
419
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
420
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
421
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
422
+ "application/json;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
423
+ "application/json;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
424
+ "application/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
425
+ "text/plain": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
426
+ "application/octet-stream": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
427
+ "text/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
428
+ "text/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
429
+ };
430
+ };
431
+ /** @description Forbidden */
432
+ 403: {
433
+ content: {
434
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
435
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
436
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
437
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
438
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
439
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
440
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
441
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
442
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
443
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
444
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
445
+ "application/json": components["schemas"]["ErrorEnvelope"];
446
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
447
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
448
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
449
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
450
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
451
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
452
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
453
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
454
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
455
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
456
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
457
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
458
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
459
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
460
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
461
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
462
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
463
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
464
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
465
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
466
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
467
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
468
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
469
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
470
+ "application/xml": components["schemas"]["ErrorEnvelope"];
471
+ "text/plain": components["schemas"]["ErrorEnvelope"];
472
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
473
+ "text/json": components["schemas"]["ErrorEnvelope"];
474
+ "text/xml": components["schemas"]["ErrorEnvelope"];
475
+ };
476
+ };
477
+ };
478
+ };
479
+ };
480
+ "/api/v2/SystemService/Licensing/Licenses/{licenseId}/Features": {
481
+ get: {
482
+ parameters: {
483
+ query: {
484
+ tenantId: string;
485
+ "api-version"?: string;
486
+ };
487
+ header?: {
488
+ "x-api-version"?: string;
489
+ };
490
+ path: {
491
+ licenseId: string;
492
+ };
493
+ };
494
+ responses: {
495
+ /** @description OK */
496
+ 200: {
497
+ content: {
498
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
499
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
500
+ "application/json;odata.metadata=minimal": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
501
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
502
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
503
+ "application/json;odata.metadata=full": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
504
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
505
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
506
+ "application/json;odata.metadata=none": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
507
+ "application/json;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
508
+ "application/json;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
509
+ "application/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
510
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
511
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
512
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
513
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
514
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
515
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
516
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
517
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
518
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
519
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
520
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
521
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
522
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
523
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
524
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
525
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
526
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
527
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
528
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
529
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
530
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
531
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
532
+ "application/json;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
533
+ "application/json;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
534
+ "application/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
535
+ "text/plain": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
536
+ "application/octet-stream": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
537
+ "text/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
538
+ "text/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
539
+ };
540
+ };
541
+ /** @description Forbidden */
542
+ 403: {
543
+ content: {
544
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
545
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
546
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
547
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
548
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
549
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
550
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
551
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
552
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
553
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
554
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
555
+ "application/json": components["schemas"]["ErrorEnvelope"];
556
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
557
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
558
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
559
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
560
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
561
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
562
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
563
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
564
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
565
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
566
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
567
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
568
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
569
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
570
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
571
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
572
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
573
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
574
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
575
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
576
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
577
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
578
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
579
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
580
+ "application/xml": components["schemas"]["ErrorEnvelope"];
581
+ "text/plain": components["schemas"]["ErrorEnvelope"];
582
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
583
+ "text/json": components["schemas"]["ErrorEnvelope"];
584
+ "text/xml": components["schemas"]["ErrorEnvelope"];
585
+ };
586
+ };
587
+ };
588
+ };
589
+ };
590
+ "/api/v2/SystemService/Licensing/Licenses/{licenseId}/Quota": {
591
+ get: {
592
+ parameters: {
593
+ query: {
594
+ tenantId: string;
595
+ "api-version"?: string;
596
+ };
597
+ header?: {
598
+ "x-api-version"?: string;
599
+ };
600
+ path: {
601
+ licenseId: string;
602
+ };
603
+ };
604
+ responses: {
605
+ /** @description OK */
606
+ 200: {
607
+ content: {
608
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
609
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
610
+ "application/json;odata.metadata=minimal": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
611
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
612
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
613
+ "application/json;odata.metadata=full": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
614
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
615
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
616
+ "application/json;odata.metadata=none": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
617
+ "application/json;odata.streaming=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
618
+ "application/json;odata.streaming=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
619
+ "application/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
620
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
621
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
622
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
623
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
624
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
625
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
626
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
627
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
628
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
629
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
630
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
631
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
632
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
633
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
634
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
635
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
636
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
637
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
638
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
639
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
640
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
641
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
642
+ "application/json;IEEE754Compatible=false": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
643
+ "application/json;IEEE754Compatible=true": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
644
+ "application/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
645
+ "text/plain": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
646
+ "application/octet-stream": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
647
+ "text/json": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
648
+ "text/xml": components["schemas"]["SuiteLicenseAssignmentDtoListEnvelope"];
649
+ };
650
+ };
651
+ /** @description Forbidden */
652
+ 403: {
653
+ content: {
654
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
655
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
656
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
657
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
658
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
659
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
660
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
661
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
662
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
663
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
664
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
665
+ "application/json": components["schemas"]["ErrorEnvelope"];
666
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
667
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
668
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
669
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
670
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
671
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
672
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
673
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
674
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
675
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
676
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
677
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
678
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
679
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
680
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
681
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
682
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
683
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
684
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
685
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
686
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
687
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
688
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
689
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
690
+ "application/xml": components["schemas"]["ErrorEnvelope"];
691
+ "text/plain": components["schemas"]["ErrorEnvelope"];
692
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
693
+ "text/json": components["schemas"]["ErrorEnvelope"];
694
+ "text/xml": components["schemas"]["ErrorEnvelope"];
695
+ };
696
+ };
697
+ };
698
+ };
699
+ };
700
+ "/api/v2/SystemService/Licensing/Licenses/Redeem": {
701
+ post: {
702
+ parameters: {
703
+ query: {
704
+ tenantId: string;
705
+ "api-version"?: string;
706
+ };
707
+ header?: {
708
+ "x-api-version"?: string;
709
+ };
710
+ };
711
+ requestBody: {
712
+ content: {
713
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
714
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
715
+ "application/json;odata.metadata=minimal": components["schemas"]["LicenseValidationRequest"];
716
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
717
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
718
+ "application/json;odata.metadata=full": components["schemas"]["LicenseValidationRequest"];
719
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
720
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
721
+ "application/json;odata.metadata=none": components["schemas"]["LicenseValidationRequest"];
722
+ "application/json;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
723
+ "application/json;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
724
+ "application/json": components["schemas"]["LicenseValidationRequest"];
725
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
726
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
727
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
728
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
729
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
730
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
731
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
732
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
733
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
734
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
735
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
736
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
737
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
738
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
739
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
740
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
741
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
742
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
743
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
744
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
745
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
746
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
747
+ "application/json;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
748
+ "application/json;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
749
+ "application/xml": components["schemas"]["LicenseValidationRequest"];
750
+ "text/plain": components["schemas"]["LicenseValidationRequest"];
751
+ "text/xml": components["schemas"]["LicenseValidationRequest"];
752
+ "application/*+xml": components["schemas"]["LicenseValidationRequest"];
753
+ "application/json-patch+json": components["schemas"]["LicenseValidationRequest"];
754
+ "text/json": components["schemas"]["LicenseValidationRequest"];
755
+ "application/*+json": components["schemas"]["LicenseValidationRequest"];
756
+ };
757
+ };
758
+ responses: {
759
+ /** @description OK */
760
+ 200: {
761
+ content: {
762
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["BooleanEnvelope"];
763
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["BooleanEnvelope"];
764
+ "application/json;odata.metadata=minimal": components["schemas"]["BooleanEnvelope"];
765
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["BooleanEnvelope"];
766
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["BooleanEnvelope"];
767
+ "application/json;odata.metadata=full": components["schemas"]["BooleanEnvelope"];
768
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["BooleanEnvelope"];
769
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["BooleanEnvelope"];
770
+ "application/json;odata.metadata=none": components["schemas"]["BooleanEnvelope"];
771
+ "application/json;odata.streaming=true": components["schemas"]["BooleanEnvelope"];
772
+ "application/json;odata.streaming=false": components["schemas"]["BooleanEnvelope"];
773
+ "application/json": components["schemas"]["BooleanEnvelope"];
774
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
775
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
776
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
777
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
778
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
779
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
780
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
781
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
782
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
783
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
784
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
785
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
786
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
787
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
788
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
789
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
790
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
791
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
792
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
793
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
794
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
795
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
796
+ "application/json;IEEE754Compatible=false": components["schemas"]["BooleanEnvelope"];
797
+ "application/json;IEEE754Compatible=true": components["schemas"]["BooleanEnvelope"];
798
+ "application/xml": components["schemas"]["BooleanEnvelope"];
799
+ "text/plain": components["schemas"]["BooleanEnvelope"];
800
+ "application/octet-stream": components["schemas"]["BooleanEnvelope"];
801
+ "text/json": components["schemas"]["BooleanEnvelope"];
802
+ "text/xml": components["schemas"]["BooleanEnvelope"];
803
+ };
804
+ };
805
+ /** @description Forbidden */
806
+ 403: {
807
+ content: {
808
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
809
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
810
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
811
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
812
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
813
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
814
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
815
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
816
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
817
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
818
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
819
+ "application/json": components["schemas"]["ErrorEnvelope"];
820
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
821
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
822
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
823
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
824
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
825
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
826
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
827
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
828
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
829
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
830
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
831
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
832
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
833
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
834
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
835
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
836
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
837
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
838
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
839
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
840
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
841
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
842
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
843
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
844
+ "application/xml": components["schemas"]["ErrorEnvelope"];
845
+ "text/plain": components["schemas"]["ErrorEnvelope"];
846
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
847
+ "text/json": components["schemas"]["ErrorEnvelope"];
848
+ "text/xml": components["schemas"]["ErrorEnvelope"];
849
+ };
850
+ };
851
+ };
852
+ };
853
+ };
854
+ "/api/v2/SystemService/Licensing/Licenses/Validate": {
855
+ post: {
856
+ parameters: {
857
+ query?: {
858
+ "api-version"?: string;
859
+ };
860
+ header?: {
861
+ "x-api-version"?: string;
862
+ };
863
+ };
864
+ requestBody: {
865
+ content: {
866
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
867
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
868
+ "application/json;odata.metadata=minimal": components["schemas"]["LicenseValidationRequest"];
869
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
870
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
871
+ "application/json;odata.metadata=full": components["schemas"]["LicenseValidationRequest"];
872
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
873
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
874
+ "application/json;odata.metadata=none": components["schemas"]["LicenseValidationRequest"];
875
+ "application/json;odata.streaming=true": components["schemas"]["LicenseValidationRequest"];
876
+ "application/json;odata.streaming=false": components["schemas"]["LicenseValidationRequest"];
877
+ "application/json": components["schemas"]["LicenseValidationRequest"];
878
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
879
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
880
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
881
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
882
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
883
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
884
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
885
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
886
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
887
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
888
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
889
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
890
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
891
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
892
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
893
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
894
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
895
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
896
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
897
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
898
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
899
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
900
+ "application/json;IEEE754Compatible=false": components["schemas"]["LicenseValidationRequest"];
901
+ "application/json;IEEE754Compatible=true": components["schemas"]["LicenseValidationRequest"];
902
+ "application/xml": components["schemas"]["LicenseValidationRequest"];
903
+ "text/plain": components["schemas"]["LicenseValidationRequest"];
904
+ "text/xml": components["schemas"]["LicenseValidationRequest"];
905
+ "application/*+xml": components["schemas"]["LicenseValidationRequest"];
906
+ "application/json-patch+json": components["schemas"]["LicenseValidationRequest"];
907
+ "text/json": components["schemas"]["LicenseValidationRequest"];
908
+ "application/*+json": components["schemas"]["LicenseValidationRequest"];
909
+ };
910
+ };
911
+ responses: {
912
+ /** @description OK */
913
+ 200: {
914
+ content: {
915
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
916
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
917
+ "application/json;odata.metadata=minimal": components["schemas"]["GeneralValidationFailureListEnvelope"];
918
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
919
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
920
+ "application/json;odata.metadata=full": components["schemas"]["GeneralValidationFailureListEnvelope"];
921
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
922
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
923
+ "application/json;odata.metadata=none": components["schemas"]["GeneralValidationFailureListEnvelope"];
924
+ "application/json;odata.streaming=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
925
+ "application/json;odata.streaming=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
926
+ "application/json": components["schemas"]["GeneralValidationFailureListEnvelope"];
927
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
928
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
929
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
930
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
931
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
932
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
933
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
934
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
935
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
936
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
937
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
938
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
939
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
940
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
941
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
942
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
943
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
944
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
945
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
946
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
947
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
948
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
949
+ "application/json;IEEE754Compatible=false": components["schemas"]["GeneralValidationFailureListEnvelope"];
950
+ "application/json;IEEE754Compatible=true": components["schemas"]["GeneralValidationFailureListEnvelope"];
951
+ "application/xml": components["schemas"]["GeneralValidationFailureListEnvelope"];
952
+ "text/plain": components["schemas"]["GeneralValidationFailureListEnvelope"];
953
+ "application/octet-stream": components["schemas"]["GeneralValidationFailureListEnvelope"];
954
+ "text/json": components["schemas"]["GeneralValidationFailureListEnvelope"];
955
+ "text/xml": components["schemas"]["GeneralValidationFailureListEnvelope"];
956
+ };
957
+ };
958
+ /** @description Forbidden */
959
+ 403: {
960
+ content: {
961
+ "application/json;odata.metadata=minimal;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
962
+ "application/json;odata.metadata=minimal;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
963
+ "application/json;odata.metadata=minimal": components["schemas"]["ErrorEnvelope"];
964
+ "application/json;odata.metadata=full;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
965
+ "application/json;odata.metadata=full;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
966
+ "application/json;odata.metadata=full": components["schemas"]["ErrorEnvelope"];
967
+ "application/json;odata.metadata=none;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
968
+ "application/json;odata.metadata=none;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
969
+ "application/json;odata.metadata=none": components["schemas"]["ErrorEnvelope"];
970
+ "application/json;odata.streaming=true": components["schemas"]["ErrorEnvelope"];
971
+ "application/json;odata.streaming=false": components["schemas"]["ErrorEnvelope"];
972
+ "application/json": components["schemas"]["ErrorEnvelope"];
973
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
974
+ "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
975
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
976
+ "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
977
+ "application/json;odata.metadata=minimal;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
978
+ "application/json;odata.metadata=minimal;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
979
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
980
+ "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
981
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
982
+ "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
983
+ "application/json;odata.metadata=full;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
984
+ "application/json;odata.metadata=full;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
985
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
986
+ "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
987
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
988
+ "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
989
+ "application/json;odata.metadata=none;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
990
+ "application/json;odata.metadata=none;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
991
+ "application/json;odata.streaming=true;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
992
+ "application/json;odata.streaming=true;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
993
+ "application/json;odata.streaming=false;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
994
+ "application/json;odata.streaming=false;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
995
+ "application/json;IEEE754Compatible=false": components["schemas"]["ErrorEnvelope"];
996
+ "application/json;IEEE754Compatible=true": components["schemas"]["ErrorEnvelope"];
997
+ "application/xml": components["schemas"]["ErrorEnvelope"];
998
+ "text/plain": components["schemas"]["ErrorEnvelope"];
999
+ "application/octet-stream": components["schemas"]["ErrorEnvelope"];
1000
+ "text/json": components["schemas"]["ErrorEnvelope"];
1001
+ "text/xml": components["schemas"]["ErrorEnvelope"];
1002
+ };
1003
+ };
1004
+ };
1005
+ };
1006
+ };
1007
+ "/api/v2/SystemService/Migrations": {
1008
+ get: {
1009
+ parameters: {
1010
+ query?: {
1011
+ pending?: boolean;
1012
+ "api-version"?: string;
1013
+ };
1014
+ header?: {
1015
+ "x-api-version"?: string;
1016
+ };
1017
+ };
1018
+ responses: {
1019
+ /** @description OK */
1020
+ 200: {
1021
+ content: {
1022
+ "application/json": components["schemas"]["StringListEnvelope"];
1023
+ "application/xml": components["schemas"]["StringListEnvelope"];
1024
+ };
1025
+ };
1026
+ /** @description Unauthorized */
1027
+ 401: {
1028
+ content: {
1029
+ "application/json": components["schemas"]["ErrorEnvelope"];
1030
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1031
+ };
1032
+ };
1033
+ /** @description Forbidden */
1034
+ 403: {
1035
+ content: {
1036
+ "application/json": components["schemas"]["ErrorEnvelope"];
1037
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1038
+ };
1039
+ };
1040
+ };
1041
+ };
1042
+ };
1043
+ "/api/v2/SystemService/Migrations/Migrate": {
1044
+ post: {
1045
+ parameters: {
1046
+ query?: {
1047
+ "api-version"?: string;
1048
+ };
1049
+ header?: {
1050
+ "x-api-version"?: string;
1051
+ };
1052
+ };
1053
+ responses: {
1054
+ /** @description OK */
1055
+ 200: {
1056
+ content: {
1057
+ "application/json": components["schemas"]["StringListEnvelope"];
1058
+ "application/xml": components["schemas"]["StringListEnvelope"];
1059
+ };
1060
+ };
1061
+ /** @description Unauthorized */
1062
+ 401: {
1063
+ content: {
1064
+ "application/json": components["schemas"]["ErrorEnvelope"];
1065
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1066
+ };
1067
+ };
1068
+ /** @description Forbidden */
1069
+ 403: {
1070
+ content: {
1071
+ "application/json": components["schemas"]["ErrorEnvelope"];
1072
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1073
+ };
1074
+ };
1075
+ };
1076
+ };
1077
+ };
1078
+ "/api/v2/StudioService/Modules": {
1079
+ get: {
1080
+ parameters: {
1081
+ query: {
1082
+ tenantId: string;
1083
+ "api-version"?: string;
1084
+ };
1085
+ header?: {
1086
+ "x-api-version"?: string;
1087
+ };
1088
+ };
1089
+ responses: {
1090
+ /** @description OK */
1091
+ 200: {
1092
+ content: {
1093
+ "application/json": components["schemas"]["StudioModuleListEnvelope"];
1094
+ "application/xml": components["schemas"]["StudioModuleListEnvelope"];
1095
+ };
1096
+ };
1097
+ /** @description Unauthorized */
1098
+ 401: {
1099
+ content: {
1100
+ "application/json": components["schemas"]["ErrorEnvelope"];
1101
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1102
+ };
1103
+ };
1104
+ /** @description Forbidden */
1105
+ 403: {
1106
+ content: {
1107
+ "application/json": components["schemas"]["ErrorEnvelope"];
1108
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1109
+ };
1110
+ };
1111
+ };
1112
+ };
1113
+ };
1114
+ "/api/v2/StudioService/Modules/Data": {
1115
+ get: {
1116
+ parameters: {
1117
+ query?: {
1118
+ tenantId?: string;
1119
+ "api-version"?: string;
1120
+ };
1121
+ header?: {
1122
+ "x-api-version"?: string;
1123
+ };
1124
+ };
1125
+ responses: {
1126
+ /** @description OK */
1127
+ 200: {
1128
+ content: {
1129
+ "application/json": components["schemas"]["ModuleListEnvelope"];
1130
+ "application/xml": components["schemas"]["ModuleListEnvelope"];
1131
+ };
1132
+ };
1133
+ /** @description Unauthorized */
1134
+ 401: {
1135
+ content: {
1136
+ "application/json": components["schemas"]["ErrorEnvelope"];
1137
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1138
+ };
1139
+ };
1140
+ /** @description Forbidden */
1141
+ 403: {
1142
+ content: {
1143
+ "application/json": components["schemas"]["ErrorEnvelope"];
1144
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1145
+ };
1146
+ };
1147
+ };
1148
+ };
1149
+ };
1150
+ }
1151
+
1152
+ export type webhooks = Record<string, never>;
1153
+
1154
+ export interface components {
1155
+ schemas: {
1156
+ BooleanEnvelope: {
1157
+ isSuccess?: boolean;
1158
+ errorMessage?: string | null;
1159
+ correlationId?: string | null;
1160
+ /** Format: date-time */
1161
+ timestamp?: string;
1162
+ activityId?: string | null;
1163
+ result?: boolean;
1164
+ };
1165
+ ErrorEnvelope: {
1166
+ isSuccess?: boolean;
1167
+ errorMessage?: string | null;
1168
+ correlationId?: string | null;
1169
+ /** Format: date-time */
1170
+ timestamp?: string;
1171
+ activityId?: string | null;
1172
+ };
1173
+ GeneralValidationFailure: {
1174
+ message?: string | null;
1175
+ howToResolve?: string | null;
1176
+ };
1177
+ GeneralValidationFailureListEnvelope: {
1178
+ isSuccess?: boolean;
1179
+ errorMessage?: string | null;
1180
+ correlationId?: string | null;
1181
+ /** Format: date-time */
1182
+ timestamp?: string;
1183
+ activityId?: string | null;
1184
+ result?: components["schemas"]["GeneralValidationFailure"][] | null;
1185
+ };
1186
+ ISwaggerContact: {
1187
+ name?: string | null;
1188
+ email?: string | null;
1189
+ url?: string | null;
1190
+ };
1191
+ ISwaggerEndpoint: {
1192
+ enable?: boolean;
1193
+ name?: string | null;
1194
+ url?: string | null;
1195
+ };
1196
+ ISwaggerLicense: {
1197
+ name?: string | null;
1198
+ url?: string | null;
1199
+ };
1200
+ ISwaggerSpec: {
1201
+ enable?: boolean;
1202
+ name?: string | null;
1203
+ title?: string | null;
1204
+ version?: string | null;
1205
+ description?: string | null;
1206
+ termsOfService?: string | null;
1207
+ swaggerEndpoint?: components["schemas"]["ISwaggerEndpoint"];
1208
+ openApiContact?: components["schemas"]["ISwaggerContact"];
1209
+ license?: components["schemas"]["ISwaggerLicense"];
1210
+ };
1211
+ LicenseValidationRequest: {
1212
+ licenseKey: string;
1213
+ };
1214
+ Module: {
1215
+ enable?: boolean;
1216
+ active?: boolean;
1217
+ /** Format: int32 */
1218
+ order?: number;
1219
+ id?: string | null;
1220
+ name?: string | null;
1221
+ fullName?: string | null;
1222
+ description?: string | null;
1223
+ /**
1224
+ * Format: int32
1225
+ * @enum {integer}
1226
+ */
1227
+ type?: 0 | 1 | 2 | 3;
1228
+ configuration?: string | null;
1229
+ author?: string | null;
1230
+ authorUrl?: string | null;
1231
+ license?: string | null;
1232
+ requireLicenseAcceptance?: boolean | null;
1233
+ repository?: string | null;
1234
+ path?: string | null;
1235
+ icon?: string | null;
1236
+ image?: string | null;
1237
+ nuSpecPath?: string | null;
1238
+ manifest?: string | null;
1239
+ documentation?: string | null;
1240
+ website?: string | null;
1241
+ logo?: string | null;
1242
+ swaggerSpec?: components["schemas"]["ISwaggerSpec"];
1243
+ swaggerSpecs?: components["schemas"]["ISwaggerSpec"][] | null;
1244
+ url?: string | null;
1245
+ assemblyPaths?: string[] | null;
1246
+ markedForDeletion?: boolean;
1247
+ version?: string | null;
1248
+ };
1249
+ ModuleListEnvelope: {
1250
+ isSuccess?: boolean;
1251
+ errorMessage?: string | null;
1252
+ correlationId?: string | null;
1253
+ /** Format: date-time */
1254
+ timestamp?: string;
1255
+ activityId?: string | null;
1256
+ result?: components["schemas"]["Module"][] | null;
1257
+ };
1258
+ StringListEnvelope: {
1259
+ isSuccess?: boolean;
1260
+ errorMessage?: string | null;
1261
+ correlationId?: string | null;
1262
+ /** Format: date-time */
1263
+ timestamp?: string;
1264
+ activityId?: string | null;
1265
+ result?: string[] | null;
1266
+ };
1267
+ StudioModule: {
1268
+ name?: string | null;
1269
+ version?: string | null;
1270
+ };
1271
+ StudioModuleListEnvelope: {
1272
+ isSuccess?: boolean;
1273
+ errorMessage?: string | null;
1274
+ correlationId?: string | null;
1275
+ /** Format: date-time */
1276
+ timestamp?: string;
1277
+ activityId?: string | null;
1278
+ result?: components["schemas"]["StudioModule"][] | null;
1279
+ };
1280
+ SuiteLicenseAssignmentDto: {
1281
+ id?: string | null;
1282
+ /** Format: date-time */
1283
+ timestamp?: string | null;
1284
+ name?: string | null;
1285
+ assigned?: boolean;
1286
+ enrollmentId?: string | null;
1287
+ suiteLicenseId?: string | null;
1288
+ /** Format: date-time */
1289
+ expirationDate?: string;
1290
+ /** Format: int32 */
1291
+ availableSeats?: number;
1292
+ /** Format: int32 */
1293
+ totalSeats?: number;
1294
+ };
1295
+ SuiteLicenseAssignmentDtoListEnvelope: {
1296
+ isSuccess?: boolean;
1297
+ errorMessage?: string | null;
1298
+ correlationId?: string | null;
1299
+ /** Format: date-time */
1300
+ timestamp?: string;
1301
+ activityId?: string | null;
1302
+ result?: components["schemas"]["SuiteLicenseAssignmentDto"][] | null;
1303
+ };
1304
+ SuiteLicenseDto: {
1305
+ id?: string | null;
1306
+ /** Format: date-time */
1307
+ timestamp?: string | null;
1308
+ tenantId?: string | null;
1309
+ licenseString?: string | null;
1310
+ enrollmentId?: string | null;
1311
+ /** Format: date-time */
1312
+ expirationDate?: string;
1313
+ /** Format: int32 */
1314
+ availableSeats?: number;
1315
+ /** Format: int32 */
1316
+ totalSeats?: number;
1317
+ };
1318
+ SuiteLicenseDtoEnvelope: {
1319
+ isSuccess?: boolean;
1320
+ errorMessage?: string | null;
1321
+ correlationId?: string | null;
1322
+ /** Format: date-time */
1323
+ timestamp?: string;
1324
+ activityId?: string | null;
1325
+ result?: components["schemas"]["SuiteLicenseDto"];
1326
+ };
1327
+ SuiteLicenseDtoListEnvelope: {
1328
+ isSuccess?: boolean;
1329
+ errorMessage?: string | null;
1330
+ correlationId?: string | null;
1331
+ /** Format: date-time */
1332
+ timestamp?: string;
1333
+ activityId?: string | null;
1334
+ result?: components["schemas"]["SuiteLicenseDto"][] | null;
1335
+ };
1336
+ };
1337
+ responses: never;
1338
+ parameters: never;
1339
+ requestBodies: never;
1340
+ headers: never;
1341
+ pathItems: never;
1342
+ }
1343
+
1344
+ export type $defs = Record<string, never>;
1345
+
1346
+ export type external = Record<string, never>;
1347
+
1348
+ export type operations = Record<string, never>;