@fenixalliance/abs-api-client 1.0.2 → 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 (695) hide show
  1. package/FenixAlliance.ABP.SDK.TypeScript.sln +25 -0
  2. package/FenixAlliance.ABP.SDK.TypeScript.xml +8 -0
  3. package/clients/accountingService/core/ApiError.ts +25 -0
  4. package/clients/accountingService/core/ApiRequestOptions.ts +17 -0
  5. package/clients/accountingService/core/ApiResult.ts +11 -0
  6. package/clients/accountingService/core/CancelablePromise.ts +131 -0
  7. package/clients/accountingService/core/OpenAPI.ts +32 -0
  8. package/clients/accountingService/core/request.ts +322 -0
  9. package/clients/accountingService/index.ts +97 -0
  10. package/clients/accountingService/models/AccountCreateDto.ts +30 -0
  11. package/clients/accountingService/models/AccountDto.ts +41 -0
  12. package/clients/{catalogService/models/StockItemDtoEnvelope.ts → accountingService/models/AccountDtoEnvelope.ts} +5 -5
  13. package/clients/{holderService/models/InvoiceDtoListEnvelope.ts → accountingService/models/AccountDtoListEnvelope.ts} +5 -5
  14. package/clients/accountingService/models/AccountUpdateDto.ts +26 -0
  15. package/clients/accountingService/models/AccountingEntryCreateDto.ts +26 -0
  16. package/clients/accountingService/models/AccountingEntryDto.ts +34 -0
  17. package/clients/accountingService/models/AccountingEntryDtoEnvelope.ts +14 -0
  18. package/clients/accountingService/models/AccountingEntryDtoListEnvelope.ts +14 -0
  19. package/clients/accountingService/models/AccountingEntryUpdateDto.ts +24 -0
  20. package/clients/accountingService/models/BillingProfileCreateDto.ts +30 -0
  21. package/clients/accountingService/models/BillingProfileDto.ts +67 -0
  22. package/clients/accountingService/models/BillingProfileDtoEnvelope.ts +14 -0
  23. package/clients/accountingService/models/BillingProfileDtoListEnvelope.ts +14 -0
  24. package/clients/accountingService/models/BillingProfileUpdateDto.ts +28 -0
  25. package/clients/accountingService/models/BudgetCreateDto.ts +12 -0
  26. package/clients/accountingService/models/BudgetDto.ts +12 -0
  27. package/clients/{holderService/models/PaymentDtoListEnvelope.ts → accountingService/models/BudgetDtoEnvelope.ts} +5 -5
  28. package/clients/accountingService/models/BudgetDtoListEnvelope.ts +14 -0
  29. package/clients/accountingService/models/BudgetUpdateDto.ts +9 -0
  30. package/clients/accountingService/models/CreateLedgerDto.ts +15 -0
  31. package/clients/accountingService/models/Currency.ts +9 -0
  32. package/clients/accountingService/models/EmptyEnvelope.ts +12 -0
  33. package/clients/accountingService/models/ErrorEnvelope.ts +12 -0
  34. package/clients/accountingService/models/FinancialBookCreateDto.ts +12 -0
  35. package/clients/{holderService/models/InvoiceDto.ts → accountingService/models/FinancialBookDto.ts} +3 -4
  36. package/clients/accountingService/models/FinancialBookDtoEnvelope.ts +14 -0
  37. package/clients/accountingService/models/FinancialBookDtoListEnvelope.ts +14 -0
  38. package/clients/accountingService/models/FinancialBookUpdateDto.ts +10 -0
  39. package/clients/accountingService/models/FiscalAuthorityCreateDto.ts +14 -0
  40. package/clients/accountingService/models/FiscalAuthorityDto.ts +16 -0
  41. package/clients/accountingService/models/FiscalAuthorityDtoEnvelope.ts +14 -0
  42. package/clients/accountingService/models/FiscalAuthorityDtoListEnvelope.ts +14 -0
  43. package/clients/accountingService/models/FiscalAuthorityUpdateDto.ts +12 -0
  44. package/clients/accountingService/models/FiscalYearCreateDto.ts +16 -0
  45. package/clients/accountingService/models/FiscalYearDto.ts +16 -0
  46. package/clients/accountingService/models/FiscalYearDtoEnvelope.ts +14 -0
  47. package/clients/accountingService/models/FiscalYearDtoListEnvelope.ts +14 -0
  48. package/clients/accountingService/models/FiscalYearUpdateDto.ts +12 -0
  49. package/clients/accountingService/models/Int32Envelope.ts +13 -0
  50. package/clients/accountingService/models/InvoiceEnumerationRangeCreateDto.ts +29 -0
  51. package/clients/accountingService/models/InvoiceEnumerationRangeDto.ts +29 -0
  52. package/clients/accountingService/models/InvoiceEnumerationRangeDtoEnvelope.ts +14 -0
  53. package/clients/accountingService/models/InvoiceEnumerationRangeDtoListEnvelope.ts +14 -0
  54. package/clients/accountingService/models/InvoiceEnumerationRangeUpdateDto.ts +27 -0
  55. package/clients/accountingService/models/JournalCreateDto.ts +17 -0
  56. package/clients/accountingService/models/JournalDto.ts +17 -0
  57. package/clients/accountingService/models/JournalDtoEnvelope.ts +14 -0
  58. package/clients/accountingService/models/JournalDtoListEnvelope.ts +14 -0
  59. package/clients/accountingService/models/JournalEntryCreateDto.ts +20 -0
  60. package/clients/accountingService/models/JournalEntryDto.ts +31 -0
  61. package/clients/accountingService/models/JournalEntryDtoListEnvelope.ts +14 -0
  62. package/clients/accountingService/models/JournalEntryUpdateDto.ts +18 -0
  63. package/clients/accountingService/models/JournalTypeCreateDto.ts +12 -0
  64. package/clients/accountingService/models/JournalTypeDto.ts +12 -0
  65. package/clients/accountingService/models/JournalTypeDtoEnvelope.ts +14 -0
  66. package/clients/accountingService/models/JournalTypeDtoListEnvelope.ts +14 -0
  67. package/clients/accountingService/models/JournalTypeUpdateDto.ts +10 -0
  68. package/clients/accountingService/models/JournalUpdateDto.ts +13 -0
  69. package/clients/accountingService/models/LedgerDto.ts +15 -0
  70. package/clients/accountingService/models/LedgerDtoEnvelope.ts +14 -0
  71. package/clients/accountingService/models/LedgerDtoListEnvelope.ts +14 -0
  72. package/clients/accountingService/models/LoanCreateDto.ts +18 -0
  73. package/clients/accountingService/models/LoanDto.ts +18 -0
  74. package/clients/accountingService/models/LoanDtoEnvelope.ts +14 -0
  75. package/clients/accountingService/models/LoanDtoListEnvelope.ts +14 -0
  76. package/clients/accountingService/models/LoanUpdateDto.ts +15 -0
  77. package/clients/accountingService/models/Money.ts +10 -0
  78. package/clients/accountingService/models/Operation.ts +23 -0
  79. package/clients/accountingService/models/ReceiptCreateDto.ts +48 -0
  80. package/clients/accountingService/models/ReceiptDto.ts +24 -0
  81. package/clients/accountingService/models/ReceiptDtoEnvelope.ts +14 -0
  82. package/clients/accountingService/models/ReceiptDtoListEnvelope.ts +14 -0
  83. package/clients/accountingService/models/ReceiptUpdateDto.ts +19 -0
  84. package/clients/accountingService/models/UpdateLedgerDto.ts +12 -0
  85. package/clients/accountingService/services/AccountsService.ts +788 -0
  86. package/clients/accountingService/services/BillingProfilesService.ts +194 -0
  87. package/clients/accountingService/services/BudgetsService.ts +167 -0
  88. package/clients/accountingService/services/FinancialBooksService.ts +194 -0
  89. package/clients/accountingService/services/FiscalAuthoritiesService.ts +194 -0
  90. package/clients/accountingService/services/FiscalYearsService.ts +194 -0
  91. package/clients/accountingService/services/InvoiceEnumerationRangesService.ts +167 -0
  92. package/clients/accountingService/services/JournalTypesService.ts +167 -0
  93. package/clients/accountingService/services/JournalsService.ts +366 -0
  94. package/clients/accountingService/services/LedgersService.ts +163 -0
  95. package/clients/accountingService/services/LoansService.ts +194 -0
  96. package/clients/accountingService/services/ReceiptsService.ts +164 -0
  97. package/clients/cartService/index.ts +5 -0
  98. package/clients/cartService/models/BooleanEnvelope.ts +2 -2
  99. package/clients/cartService/models/CartDtoEnvelope.ts +2 -2
  100. package/clients/cartService/models/CartUpdateRequest.ts +2 -2
  101. package/clients/cartService/models/CountryDto.ts +14 -0
  102. package/clients/cartService/models/CountryDtoEnvelope.ts +14 -0
  103. package/clients/cartService/models/CurrencyDto.ts +13 -0
  104. package/clients/cartService/models/CurrencyDtoEnvelope.ts +14 -0
  105. package/clients/cartService/models/EmptyEnvelope.ts +2 -1
  106. package/clients/cartService/models/ErrorEnvelope.ts +2 -2
  107. package/clients/cartService/models/ItemCartRecordCreateDto.ts +1 -1
  108. package/clients/cartService/models/ItemCartRecordDto.ts +9 -7
  109. package/clients/cartService/models/ItemCartRecordDtoEnvelope.ts +2 -2
  110. package/clients/cartService/models/ItemCartRecordDtoListEnvelope.ts +2 -2
  111. package/clients/cartService/models/ItemCartRecordUpdateDto.ts +0 -2
  112. package/clients/cartService/models/ItemToCompareCartRecordDto.ts +14 -1
  113. package/clients/cartService/models/ItemToCompareCartRecordDtoEnvelope.ts +2 -2
  114. package/clients/cartService/models/ItemToCompareCartRecordDtoListEnvelope.ts +2 -2
  115. package/clients/cartService/models/ProductToWishListRequest.ts +2 -2
  116. package/clients/cartService/models/WishListDtoEnvelope.ts +14 -0
  117. package/clients/cartService/services/CartsService.ts +1069 -22
  118. package/clients/cartService/services/CompareService.ts +24 -4
  119. package/clients/cartService/services/RecordsService.ts +114 -9
  120. package/clients/cartService/services/WishListsService.ts +116 -9
  121. package/clients/catalogService/index.ts +14 -6
  122. package/clients/catalogService/models/CatalogItemCreateDto.ts +167 -0
  123. package/clients/catalogService/models/CatalogItemDto.ts +170 -0
  124. package/clients/catalogService/models/CatalogItemDtoEnvelope.ts +14 -0
  125. package/clients/catalogService/models/CatalogItemDtoListEnvelope.ts +14 -0
  126. package/clients/catalogService/models/{StockItemDto.ts → CatalogItemUpdateDto.ts} +138 -105
  127. package/clients/catalogService/models/Currency.ts +9 -0
  128. package/clients/catalogService/models/EmptyEnvelope.ts +2 -1
  129. package/clients/catalogService/models/ErrorEnvelope.ts +2 -2
  130. package/clients/catalogService/models/Int32Envelope.ts +13 -0
  131. package/clients/catalogService/models/ItemAttachmentCreateDto.ts +6 -4
  132. package/clients/catalogService/models/ItemAttachmentDto.ts +13 -11
  133. package/clients/catalogService/models/ItemAttachmentDtoEnvelope.ts +2 -2
  134. package/clients/catalogService/models/ItemAttachmentDtoListEnvelope.ts +2 -2
  135. package/clients/catalogService/models/ItemAttachmentUpdateDto.ts +5 -2
  136. package/clients/catalogService/models/ItemAttributeDtoEnvelope.ts +2 -2
  137. package/clients/catalogService/models/ItemAttributeDtoListEnvelope.ts +2 -2
  138. package/clients/catalogService/models/ItemAttributeOptionDtoEnvelope.ts +2 -2
  139. package/clients/catalogService/models/ItemAttributeOptionDtoListEnvelope.ts +2 -2
  140. package/clients/catalogService/models/ItemBrandDtoEnvelope.ts +2 -2
  141. package/clients/catalogService/models/ItemBrandDtoListEnvelope.ts +2 -2
  142. package/clients/catalogService/models/ItemCategoryDtoEnvelope.ts +2 -2
  143. package/clients/catalogService/models/ItemCategoryDtoListEnvelope.ts +2 -2
  144. package/clients/catalogService/models/ItemGoogleCategoryDto.ts +2 -1
  145. package/clients/catalogService/models/ItemGoogleCategoryDtoEnvelope.ts +2 -2
  146. package/clients/catalogService/models/ItemGoogleCategoryDtoListEnvelope.ts +2 -2
  147. package/clients/catalogService/models/ItemImageDtoEnvelope.ts +2 -2
  148. package/clients/catalogService/models/ItemImageDtoListEnvelope.ts +2 -2
  149. package/clients/catalogService/models/ItemQuestionDtoEnvelope.ts +2 -2
  150. package/clients/catalogService/models/ItemQuestionDtoListEnvelope.ts +2 -2
  151. package/clients/catalogService/models/ItemRefundPolicyDtoEnvelope.ts +2 -2
  152. package/clients/catalogService/models/ItemRefundPolicyDtoListEnvelope.ts +2 -2
  153. package/clients/catalogService/models/ItemReturnPolicyDtoEnvelope.ts +2 -2
  154. package/clients/catalogService/models/ItemReturnPolicyDtoListEnvelope.ts +2 -2
  155. package/clients/catalogService/models/ItemReviewDtoEnvelope.ts +2 -2
  156. package/clients/catalogService/models/ItemReviewDtoListEnvelope.ts +2 -2
  157. package/clients/catalogService/models/ItemShippingPolicyDtoEnvelope.ts +2 -2
  158. package/clients/catalogService/models/ItemShippingPolicyDtoListEnvelope.ts +2 -2
  159. package/clients/catalogService/models/ItemTagDtoEnvelope.ts +2 -2
  160. package/clients/catalogService/models/ItemTagDtoListEnvelope.ts +2 -2
  161. package/clients/catalogService/models/ItemTaxPolicyDtoEnvelope.ts +2 -2
  162. package/clients/catalogService/models/ItemTaxPolicyDtoListEnvelope.ts +2 -2
  163. package/clients/catalogService/models/ItemTypeDtoEnvelope.ts +2 -2
  164. package/clients/catalogService/models/ItemTypeDtoListEnvelope.ts +2 -2
  165. package/clients/catalogService/models/ItemWarrantyPolicyDtoEnvelope.ts +2 -2
  166. package/clients/catalogService/models/ItemWarrantyPolicyDtoListEnvelope.ts +2 -2
  167. package/clients/catalogService/models/MerchantDto.ts +47 -0
  168. package/clients/catalogService/models/MerchantDtoListEnvelope.ts +14 -0
  169. package/clients/catalogService/models/Money.ts +10 -0
  170. package/clients/catalogService/models/MoneyEnvelope.ts +14 -0
  171. package/clients/catalogService/models/PricingRuleDtoEnvelope.ts +2 -2
  172. package/clients/catalogService/models/PricingRuleDtoListEnvelope.ts +2 -2
  173. package/clients/catalogService/services/ItemAttachmentsService.ts +55 -30
  174. package/clients/catalogService/services/ItemAttributesService.ts +55 -30
  175. package/clients/catalogService/services/ItemBrandsService.ts +55 -30
  176. package/clients/catalogService/services/ItemCategoriesService.ts +74 -49
  177. package/clients/catalogService/services/ItemGoogleCategoriesService.ts +182 -0
  178. package/clients/catalogService/services/ItemImagesService.ts +55 -30
  179. package/clients/catalogService/services/ItemQuestionsService.ts +55 -30
  180. package/clients/catalogService/services/ItemReviewsService.ts +55 -30
  181. package/clients/catalogService/services/ItemTagsService.ts +55 -30
  182. package/clients/catalogService/services/ItemTypesService.ts +57 -32
  183. package/clients/catalogService/services/ItemsService.ts +2176 -0
  184. package/clients/catalogService/services/MerchantsService.ts +30 -0
  185. package/clients/catalogService/services/PoliciesService.ts +24 -4
  186. package/clients/catalogService/services/PricingRulesService.ts +64 -39
  187. package/clients/crmService/index.ts +5 -0
  188. package/clients/crmService/models/CartDtoEnvelope.ts +2 -2
  189. package/clients/crmService/models/ContactCreateDto.ts +55 -0
  190. package/clients/crmService/models/ContactDto.ts +35 -21
  191. package/clients/crmService/models/ContactDtoEnvelope.ts +2 -2
  192. package/clients/crmService/models/ContactDtoListEnvelope.ts +2 -2
  193. package/clients/crmService/models/ContactProfileDto.ts +38 -0
  194. package/clients/crmService/models/ContactProfileDtoListEnvelope.ts +14 -0
  195. package/clients/crmService/models/ContactUpdateDto.ts +53 -0
  196. package/clients/crmService/models/EmptyEnvelope.ts +2 -1
  197. package/clients/crmService/models/ErrorEnvelope.ts +2 -2
  198. package/clients/crmService/models/Operation.ts +23 -0
  199. package/clients/crmService/models/SocialProfileDtoEnvelope.ts +2 -2
  200. package/clients/crmService/models/WalletDtoEnvelope.ts +2 -2
  201. package/clients/crmService/services/ContactsService.ts +509 -40
  202. package/clients/crmService/services/SyncService.ts +31 -15
  203. package/clients/forexService/index.ts +3 -0
  204. package/clients/forexService/models/Currency.ts +1 -1
  205. package/clients/forexService/models/ErrorEnvelope.ts +2 -2
  206. package/clients/forexService/models/ExchangeRate.ts +11 -0
  207. package/clients/forexService/models/ExchangeRateEnvelope.ts +14 -0
  208. package/clients/forexService/models/ForexRatesDtoEnvelope.ts +2 -2
  209. package/clients/forexService/models/Money.ts +1 -1
  210. package/clients/forexService/models/MoneyEnvelope.ts +2 -2
  211. package/clients/forexService/services/ExchangeService.ts +9 -11
  212. package/clients/forexService/services/ExchangeVService.ts +65 -0
  213. package/clients/forexService/services/RatesService.ts +71 -6
  214. package/clients/holderService/index.ts +19 -8
  215. package/clients/holderService/models/AddressDto.ts +1 -1
  216. package/clients/holderService/models/AddressDtoListEnvelope.ts +2 -2
  217. package/clients/holderService/models/CartDtoEnvelope.ts +2 -2
  218. package/clients/holderService/models/EmptyEnvelope.ts +12 -0
  219. package/clients/holderService/models/EmptyEnvelopeEnvelope.ts +14 -0
  220. package/clients/holderService/models/EnrollmentId.ts +5 -0
  221. package/clients/holderService/models/ErrorEnvelope.ts +2 -2
  222. package/clients/holderService/models/ExtendedPlatformUserDto.ts +79 -0
  223. package/clients/holderService/models/ExtendedPlatformUserDtoEnvelope.ts +14 -0
  224. package/clients/holderService/models/ExtendedTenantDto.ts +51 -0
  225. package/clients/holderService/models/ExtendedTenantDtoListEnvelope.ts +14 -0
  226. package/clients/holderService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  227. package/clients/holderService/models/ExtendedTenantEnrolmentDtoListEnvelope.ts +14 -0
  228. package/clients/holderService/models/NotificationDtoListEnvelope.ts +2 -2
  229. package/clients/holderService/models/Operation.ts +23 -0
  230. package/clients/holderService/models/PlatformUserDto.ts +26 -28
  231. package/clients/holderService/models/PlatformUserDtoEnvelope.ts +2 -2
  232. package/clients/holderService/models/PlatformUserSettingsDto.ts +21 -0
  233. package/clients/holderService/models/PlatformUserSettingsDtoEnvelope.ts +14 -0
  234. package/clients/holderService/models/PlatformUserSettingsUpdateDto.ts +19 -0
  235. package/clients/holderService/models/PlatformUserUpdateDto.ts +43 -0
  236. package/clients/holderService/models/SocialProfileDtoEnvelope.ts +2 -2
  237. package/clients/holderService/models/TenantDto.ts +1 -10
  238. package/clients/holderService/models/TenantDtoListEnvelope.ts +2 -2
  239. package/clients/{tenantService/models/TenantEnrollmentDto.ts → holderService/models/TenantEnrolmentDto.ts} +4 -3
  240. package/clients/holderService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  241. package/clients/holderService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  242. package/clients/holderService/models/TenantInvitationDto.ts +16 -0
  243. package/clients/holderService/models/{TenantEnrollmentDtoListEnvelope.ts → TenantInvitationDtoListEnvelope.ts} +5 -5
  244. package/clients/holderService/models/WalletDtoEnvelope.ts +2 -2
  245. package/clients/holderService/services/HolderService.ts +283 -44
  246. package/clients/identityService/index.ts +1 -1
  247. package/clients/identityService/models/AccountHolderCreateDto.ts +20 -15
  248. package/clients/identityService/models/AccountHolderCreateDtoEnvelope.ts +2 -2
  249. package/clients/identityService/models/ApiResponseEnvelope.ts +2 -2
  250. package/clients/identityService/models/ErrorEnvelope.ts +2 -2
  251. package/clients/identityService/models/JsonWebKeySetEnvelope.ts +2 -2
  252. package/clients/identityService/models/JsonWebTokenEnvelope.ts +2 -2
  253. package/clients/identityService/models/OpenIdConfigurationEnvelope.ts +2 -2
  254. package/clients/identityService/models/PlatformUserDto.ts +26 -28
  255. package/clients/identityService/models/StringListEnvelope.ts +2 -2
  256. package/clients/identityService/models/TenantDto.ts +1 -10
  257. package/clients/identityService/services/ApplicationsService.ts +30 -5
  258. package/clients/identityService/services/CheckerService.ts +8 -3
  259. package/clients/identityService/services/OAuthService.ts +44 -10
  260. package/clients/identityService/services/ResourceService.ts +8 -2
  261. package/clients/identityService/services/UserInfoService.ts +16 -4
  262. package/clients/inventoryService/services/InventoryService.ts +6 -1
  263. package/clients/invoicingService/index.ts +29 -4
  264. package/clients/invoicingService/models/Currency.ts +9 -0
  265. package/clients/invoicingService/models/EmptyEnvelope.ts +2 -1
  266. package/clients/invoicingService/models/ErrorEnvelope.ts +2 -2
  267. package/clients/invoicingService/models/ExtendedInvoiceDto.ts +111 -0
  268. package/clients/invoicingService/models/ExtendedInvoiceDtoListEnvelope.ts +14 -0
  269. package/clients/invoicingService/models/Int32Envelope.ts +13 -0
  270. package/clients/invoicingService/models/InvoiceAdjustmentCreateDto.ts +27 -0
  271. package/clients/invoicingService/models/InvoiceAdjustmentDto.ts +27 -0
  272. package/clients/invoicingService/models/InvoiceAdjustmentDtoEnvelope.ts +14 -0
  273. package/clients/invoicingService/models/InvoiceAdjustmentDtoListEnvelope.ts +14 -0
  274. package/clients/invoicingService/models/InvoiceAdjustmentUpdateDto.ts +22 -0
  275. package/clients/invoicingService/models/InvoiceCreateDto.ts +64 -0
  276. package/clients/invoicingService/models/InvoiceDto.ts +91 -2
  277. package/clients/invoicingService/models/InvoiceDtoEnvelope.ts +2 -2
  278. package/clients/invoicingService/models/InvoiceDtoListEnvelope.ts +2 -2
  279. package/clients/invoicingService/models/InvoiceItemRecordDto.ts +100 -0
  280. package/clients/invoicingService/models/InvoiceLineAppliedTaxCreateDto.ts +13 -0
  281. package/clients/invoicingService/models/InvoiceLineAppliedTaxDto.ts +20 -0
  282. package/clients/invoicingService/models/InvoiceLineAppliedTaxDtoListEnvelope.ts +14 -0
  283. package/clients/invoicingService/models/InvoiceLineAppliedTaxUpdateDto.ts +8 -0
  284. package/clients/invoicingService/models/InvoiceLineCreateDto.ts +13 -0
  285. package/clients/invoicingService/models/InvoiceLineDto.ts +7 -2
  286. package/clients/invoicingService/models/InvoiceLineDtoEnvelope.ts +2 -2
  287. package/clients/invoicingService/models/InvoiceLineDtoListEnvelope.ts +2 -2
  288. package/clients/invoicingService/models/{ItemPriceCreateDto.ts → InvoiceLineUpdateDto.ts} +9 -9
  289. package/clients/invoicingService/models/InvoiceReferenceCreateDto.ts +13 -0
  290. package/clients/invoicingService/models/InvoiceReferenceDto.ts +13 -0
  291. package/clients/{tenantService/models/TenantEnrollmentDtoEnvelope.ts → invoicingService/models/InvoiceReferenceDtoEnvelope.ts} +5 -5
  292. package/clients/{tenantService/models/TenantEnrollmentDtoListEnvelope.ts → invoicingService/models/InvoiceReferenceDtoListEnvelope.ts} +5 -5
  293. package/clients/invoicingService/models/InvoiceReferenceUpdateDto.ts +8 -0
  294. package/clients/invoicingService/models/InvoiceUpdateDto.ts +29 -1
  295. package/clients/invoicingService/models/Money.ts +10 -0
  296. package/clients/invoicingService/models/MoneyEnvelope.ts +14 -0
  297. package/clients/invoicingService/models/SimpleContactDto.ts +40 -0
  298. package/clients/invoicingService/models/SimpleTenantEnrolmentDto.ts +11 -0
  299. package/clients/invoicingService/models/SimpleUserDto.ts +25 -0
  300. package/clients/invoicingService/models/TenantDto.ts +45 -0
  301. package/clients/invoicingService/services/InvoicesService.ts +799 -23
  302. package/clients/learningService/core/ApiError.ts +25 -0
  303. package/clients/learningService/core/ApiRequestOptions.ts +17 -0
  304. package/clients/learningService/core/ApiResult.ts +11 -0
  305. package/clients/learningService/core/CancelablePromise.ts +131 -0
  306. package/clients/learningService/core/OpenAPI.ts +32 -0
  307. package/clients/learningService/core/request.ts +322 -0
  308. package/clients/learningService/index.ts +50 -0
  309. package/clients/learningService/models/AverageDto.ts +10 -0
  310. package/clients/learningService/models/AverageDtoEnvelope.ts +14 -0
  311. package/clients/learningService/models/CountDto.ts +10 -0
  312. package/clients/learningService/models/CountDtoEnvelope.ts +14 -0
  313. package/clients/learningService/models/CourseCertificateTemplateCreateDto.ts +17 -0
  314. package/clients/learningService/models/CourseCertificateTemplateDto.ts +17 -0
  315. package/clients/learningService/models/CourseCertificateTemplateDtoEnvelope.ts +14 -0
  316. package/clients/learningService/models/CourseCertificateTemplateDtoListEnvelope.ts +14 -0
  317. package/clients/learningService/models/CourseCompletionCertificateCreateDto.ts +15 -0
  318. package/clients/learningService/models/CourseCompletionCertificateDto.ts +15 -0
  319. package/clients/learningService/models/CourseCompletionCertificateDtoEnvelope.ts +14 -0
  320. package/clients/learningService/models/CourseCompletionCertificateDtoListEnvelope.ts +14 -0
  321. package/clients/learningService/models/CourseCompletionCertificateUpdateDto.ts +13 -0
  322. package/clients/learningService/models/CourseDto.ts +170 -0
  323. package/clients/learningService/models/CourseDtoEnvelope.ts +14 -0
  324. package/clients/learningService/models/CourseDtoListEnvelope.ts +14 -0
  325. package/clients/learningService/models/CourseEnrollmentCreateDto.ts +14 -0
  326. package/clients/learningService/models/CourseEnrollmentDto.ts +14 -0
  327. package/clients/learningService/models/CourseEnrollmentDtoEnvelope.ts +14 -0
  328. package/clients/learningService/models/CourseEnrollmentDtoListEnvelope.ts +14 -0
  329. package/clients/learningService/models/CourseEnrollmentUpdateDto.ts +11 -0
  330. package/clients/learningService/models/CourseUpdateDto.ts +5 -0
  331. package/clients/learningService/models/EmptyEnvelope.ts +12 -0
  332. package/clients/learningService/models/ErrorEnvelope.ts +12 -0
  333. package/clients/learningService/models/InstructorProfileCreateDto.ts +39 -0
  334. package/clients/learningService/models/InstructorProfileDto.ts +39 -0
  335. package/clients/learningService/models/InstructorProfileDtoEnvelope.ts +14 -0
  336. package/clients/learningService/models/InstructorProfileDtoListEnvelope.ts +14 -0
  337. package/clients/learningService/models/InstructorProfileUpdateDto.ts +36 -0
  338. package/clients/learningService/models/Pagination.ts +9 -0
  339. package/clients/learningService/models/StudentProfileCreateDto.ts +38 -0
  340. package/clients/learningService/models/StudentProfileDto.ts +38 -0
  341. package/clients/learningService/models/StudentProfileDtoEnvelope.ts +14 -0
  342. package/clients/learningService/models/StudentProfileDtoListEnvelope.ts +14 -0
  343. package/clients/learningService/models/StudentProfileUpdateDto.ts +38 -0
  344. package/clients/learningService/services/CourseCertificatesService.ts +270 -0
  345. package/clients/learningService/services/CourseEnrollmentsService.ts +232 -0
  346. package/clients/learningService/services/CoursesService.ts +128 -0
  347. package/clients/learningService/services/InstructorProfilesService.ts +152 -0
  348. package/clients/learningService/services/StudentProfilesService.ts +212 -0
  349. package/clients/marketingService/core/ApiError.ts +25 -0
  350. package/clients/marketingService/core/ApiRequestOptions.ts +17 -0
  351. package/clients/marketingService/core/ApiResult.ts +11 -0
  352. package/clients/marketingService/core/CancelablePromise.ts +131 -0
  353. package/clients/marketingService/core/OpenAPI.ts +32 -0
  354. package/clients/marketingService/core/request.ts +322 -0
  355. package/clients/marketingService/index.ts +64 -0
  356. package/clients/marketingService/models/Currency.ts +9 -0
  357. package/clients/marketingService/models/EmailGroupCreateDto.ts +14 -0
  358. package/clients/marketingService/models/EmailGroupDto.ts +14 -0
  359. package/clients/marketingService/models/EmailGroupDtoEnvelope.ts +14 -0
  360. package/clients/marketingService/models/EmailGroupDtoListEnvelope.ts +14 -0
  361. package/clients/marketingService/models/EmailGroupUpdateDto.ts +12 -0
  362. package/clients/marketingService/models/EmailSignatureCreateDto.ts +16 -0
  363. package/clients/marketingService/models/EmailSignatureDto.ts +64 -0
  364. package/clients/marketingService/models/EmailSignatureDtoEnvelope.ts +14 -0
  365. package/clients/marketingService/models/EmailSignatureDtoListEnvelope.ts +14 -0
  366. package/clients/marketingService/models/EmailSignatureUpdateDto.ts +60 -0
  367. package/clients/marketingService/models/EmailTemplateCreateDto.ts +17 -0
  368. package/clients/marketingService/models/EmailTemplateDto.ts +66 -0
  369. package/clients/marketingService/models/EmailTemplateDtoEnvelope.ts +14 -0
  370. package/clients/marketingService/models/EmailTemplateDtoListEnvelope.ts +14 -0
  371. package/clients/marketingService/models/EmailTemplateUpdateDto.ts +61 -0
  372. package/clients/marketingService/models/EmptyEnvelope.ts +12 -0
  373. package/clients/marketingService/models/ErrorEnvelope.ts +12 -0
  374. package/clients/marketingService/models/Int32Envelope.ts +13 -0
  375. package/clients/marketingService/models/MarketingCampaignCreateDto.ts +25 -0
  376. package/clients/marketingService/models/MarketingCampaignDto.ts +25 -0
  377. package/clients/marketingService/models/MarketingCampaignDtoEnvelope.ts +14 -0
  378. package/clients/marketingService/models/MarketingCampaignUpdateDto.ts +23 -0
  379. package/clients/marketingService/models/MarketingListCreateDto.ts +33 -0
  380. package/clients/marketingService/models/MarketingListDto.ts +33 -0
  381. package/clients/marketingService/models/MarketingListDtoEnvelope.ts +14 -0
  382. package/clients/marketingService/models/MarketingListDtoListEnvelope.ts +14 -0
  383. package/clients/marketingService/models/MarketingListUpdateDto.ts +31 -0
  384. package/clients/marketingService/models/Money.ts +10 -0
  385. package/clients/marketingService/models/NewsletterCreateDto.ts +14 -0
  386. package/clients/marketingService/models/NewsletterDto.ts +14 -0
  387. package/clients/marketingService/models/NewsletterDtoEnvelope.ts +14 -0
  388. package/clients/marketingService/models/NewsletterUpdateDto.ts +12 -0
  389. package/clients/marketingService/models/OrderDto.ts +113 -0
  390. package/clients/{holderService/models/OrderDtoListEnvelope.ts → marketingService/models/OrderDtoEnvelope.ts} +4 -4
  391. package/clients/marketingService/models/SocialMediaPostCreateDto.ts +13 -0
  392. package/clients/marketingService/models/SocialMediaPostDto.ts +15 -0
  393. package/clients/marketingService/models/SocialMediaPostDtoEnvelope.ts +14 -0
  394. package/clients/marketingService/models/SocialMediaPostDtoListEnvelope.ts +14 -0
  395. package/clients/marketingService/models/SocialMediaPostUpdateDto.ts +13 -0
  396. package/clients/marketingService/models/SocialPostBucketCreateDto.ts +12 -0
  397. package/clients/marketingService/models/SocialPostBucketDto.ts +12 -0
  398. package/clients/marketingService/models/SocialPostBucketDtoEnvelope.ts +14 -0
  399. package/clients/marketingService/models/SocialPostBucketDtoListEnvelope.ts +14 -0
  400. package/clients/marketingService/models/SocialPostBucketUpdateDto.ts +10 -0
  401. package/clients/marketingService/services/EmailGroupsService.ts +193 -0
  402. package/clients/marketingService/services/EmailSignaturesService.ts +193 -0
  403. package/clients/marketingService/services/EmailTemplatesService.ts +193 -0
  404. package/clients/marketingService/services/MarketingCampaignsService.ts +193 -0
  405. package/clients/marketingService/services/MarketingListsService.ts +193 -0
  406. package/clients/marketingService/services/NewslettersService.ts +193 -0
  407. package/clients/marketingService/services/SocialMediaPostsService.ts +193 -0
  408. package/clients/marketingService/services/SocialPostBucketsService.ts +193 -0
  409. package/clients/marketingService/services/TrackingPixelsService.ts +31 -0
  410. package/clients/ordersService/index.ts +7 -4
  411. package/clients/ordersService/models/Currency.ts +9 -0
  412. package/clients/ordersService/models/EmptyEnvelope.ts +2 -1
  413. package/clients/ordersService/models/ErrorEnvelope.ts +2 -2
  414. package/clients/ordersService/models/Int32Envelope.ts +13 -0
  415. package/clients/ordersService/models/Money.ts +10 -0
  416. package/clients/ordersService/models/OrderCreateDto.ts +60 -2
  417. package/clients/ordersService/models/OrderDto.ts +93 -7
  418. package/clients/ordersService/models/OrderDtoEnvelope.ts +2 -2
  419. package/clients/ordersService/models/OrderDtoListEnvelope.ts +2 -2
  420. package/clients/ordersService/models/OrderLineCreateDto.ts +100 -0
  421. package/clients/ordersService/models/OrderLineDto.ts +7 -2
  422. package/clients/ordersService/models/OrderLineDtoEnvelope.ts +2 -2
  423. package/clients/ordersService/models/OrderLineDtoListEnvelope.ts +2 -2
  424. package/clients/ordersService/models/OrderLineUpdateDto.ts +97 -0
  425. package/clients/ordersService/models/OrderUpdateDto.ts +29 -1
  426. package/clients/ordersService/services/OrdersService.ts +115 -21
  427. package/clients/pricingService/index.ts +1 -0
  428. package/clients/pricingService/models/Currency.ts +1 -1
  429. package/clients/pricingService/models/EmptyEnvelope.ts +2 -1
  430. package/clients/pricingService/models/ErrorEnvelope.ts +2 -2
  431. package/clients/pricingService/models/Int32Envelope.ts +13 -0
  432. package/clients/pricingService/models/ItemPriceCreateDto.ts +6 -6
  433. package/clients/pricingService/models/ItemPriceDtoEnvelope.ts +2 -2
  434. package/clients/pricingService/models/ItemPriceDtoListEnvelope.ts +2 -2
  435. package/clients/pricingService/models/ItemPriceUpdateDto.ts +2 -1
  436. package/clients/pricingService/models/Money.ts +1 -1
  437. package/clients/pricingService/models/MoneyEnvelope.ts +2 -2
  438. package/clients/pricingService/models/PriceListDtoEnvelope.ts +2 -2
  439. package/clients/pricingService/models/PriceListDtoListEnvelope.ts +2 -2
  440. package/clients/pricingService/services/PriceListsService.ts +100 -29
  441. package/clients/pricingService/services/PricesService.ts +18 -3
  442. package/clients/securityService/core/ApiError.ts +25 -0
  443. package/clients/securityService/core/ApiRequestOptions.ts +17 -0
  444. package/clients/securityService/core/ApiResult.ts +11 -0
  445. package/clients/securityService/core/CancelablePromise.ts +131 -0
  446. package/clients/securityService/core/OpenAPI.ts +32 -0
  447. package/clients/securityService/core/request.ts +322 -0
  448. package/clients/securityService/index.ts +24 -0
  449. package/clients/securityService/models/EmptyEnvelope.ts +12 -0
  450. package/clients/securityService/models/ErrorEnvelope.ts +12 -0
  451. package/clients/securityService/models/SecurityPermissionCreateDto.ts +12 -0
  452. package/clients/securityService/models/SecurityPermissionDto.ts +13 -0
  453. package/clients/securityService/models/SecurityPermissionDtoListEnvelope.ts +14 -0
  454. package/clients/securityService/models/SecurityPermissionUpdateDto.ts +9 -0
  455. package/clients/securityService/models/SecurityRoleCreateDto.ts +12 -0
  456. package/clients/securityService/models/SecurityRoleDto.ts +13 -0
  457. package/clients/securityService/models/SecurityRoleDtoListEnvelope.ts +14 -0
  458. package/clients/securityService/models/SecurityRoleUpdateDto.ts +9 -0
  459. package/clients/{holderService/models/TenantEnrollmentDto.ts → securityService/models/TenantEnrolmentDto.ts} +4 -3
  460. package/clients/securityService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  461. package/clients/securityService/services/PermissionsService.ts +399 -0
  462. package/clients/securityService/services/RolesService.ts +430 -0
  463. package/clients/supportService/core/ApiError.ts +25 -0
  464. package/clients/supportService/core/ApiRequestOptions.ts +17 -0
  465. package/clients/supportService/core/ApiResult.ts +11 -0
  466. package/clients/supportService/core/CancelablePromise.ts +131 -0
  467. package/clients/supportService/core/OpenAPI.ts +32 -0
  468. package/clients/supportService/core/request.ts +322 -0
  469. package/clients/supportService/index.ts +54 -0
  470. package/clients/supportService/models/EmptyEnvelope.ts +12 -0
  471. package/clients/supportService/models/ErrorEnvelope.ts +12 -0
  472. package/clients/supportService/models/PrivateMessageDto.ts +15 -0
  473. package/clients/supportService/models/PrivateMessageDtoListEnvelope.ts +14 -0
  474. package/clients/supportService/models/SupportEntitlementCreateDto.ts +57 -0
  475. package/clients/supportService/models/SupportEntitlementDto.ts +57 -0
  476. package/clients/supportService/models/SupportEntitlementDtoEnvelope.ts +14 -0
  477. package/clients/supportService/models/SupportEntitlementDtoListEnvelope.ts +14 -0
  478. package/clients/supportService/models/SupportEntitlementUpdateDto.ts +54 -0
  479. package/clients/supportService/models/SupportRequestAttachmentCreateDto.ts +23 -0
  480. package/clients/supportService/models/SupportRequestAttachmentDto.ts +28 -0
  481. package/clients/supportService/models/SupportRequestAttachmentDtoEnvelope.ts +14 -0
  482. package/clients/supportService/models/SupportRequestAttachmentDtoListEnvelope.ts +14 -0
  483. package/clients/supportService/models/SupportRequestAttachmentUpdateDto.ts +19 -0
  484. package/clients/supportService/models/SupportRequestCreateDto.ts +18 -0
  485. package/clients/supportService/models/SupportRequestDto.ts +18 -0
  486. package/clients/supportService/models/SupportRequestDtoEnvelope.ts +14 -0
  487. package/clients/supportService/models/SupportRequestDtoListEnvelope.ts +14 -0
  488. package/clients/supportService/models/SupportRequestUpdateDto.ts +12 -0
  489. package/clients/supportService/models/SupportTicketConversationCreateDto.ts +13 -0
  490. package/clients/supportService/models/SupportTicketConversationDto.ts +14 -0
  491. package/clients/supportService/models/SupportTicketConversationDtoEnvelope.ts +14 -0
  492. package/clients/supportService/models/SupportTicketConversationDtoListEnvelope.ts +14 -0
  493. package/clients/supportService/models/SupportTicketCreateDto.ts +17 -0
  494. package/clients/supportService/models/SupportTicketDto.ts +17 -0
  495. package/clients/supportService/models/SupportTicketDtoEnvelope.ts +14 -0
  496. package/clients/supportService/models/SupportTicketDtoListEnvelope.ts +14 -0
  497. package/clients/supportService/models/SupportTicketPriorityCreateDto.ts +11 -0
  498. package/clients/supportService/models/SupportTicketPriorityDto.ts +13 -0
  499. package/clients/supportService/models/SupportTicketPriorityDtoEnvelope.ts +14 -0
  500. package/clients/supportService/models/SupportTicketPriorityDtoListEnvelope.ts +14 -0
  501. package/clients/supportService/models/SupportTicketPriorityUpdateDto.ts +9 -0
  502. package/clients/supportService/models/SupportTicketTypeCreateDto.ts +12 -0
  503. package/clients/supportService/models/SupportTicketTypeDto.ts +12 -0
  504. package/clients/supportService/models/SupportTicketTypeDtoEnvelope.ts +14 -0
  505. package/clients/supportService/models/SupportTicketTypeDtoListEnvelope.ts +14 -0
  506. package/clients/supportService/models/SupportTicketTypeUpdateDto.ts +11 -0
  507. package/clients/supportService/models/SupportTicketUpdateDto.ts +14 -0
  508. package/clients/supportService/services/SupportEntitlementsService.ts +163 -0
  509. package/clients/supportService/services/SupportRequestAttachmentsService.ts +163 -0
  510. package/clients/supportService/services/SupportRequestsService.ts +290 -0
  511. package/clients/supportService/services/SupportTicketPrioritiesService.ts +163 -0
  512. package/clients/supportService/services/SupportTicketTypesService.ts +163 -0
  513. package/clients/supportService/services/SupportTicketsService.ts +331 -0
  514. package/clients/systemService/index.ts +19 -0
  515. package/clients/systemService/models/BooleanEnvelope.ts +13 -0
  516. package/clients/systemService/models/ErrorEnvelope.ts +2 -2
  517. package/clients/systemService/models/GeneralValidationFailure.ts +9 -0
  518. package/clients/systemService/models/GeneralValidationFailureListEnvelope.ts +14 -0
  519. package/clients/systemService/models/ISwaggerContact.ts +10 -0
  520. package/clients/systemService/models/ISwaggerEndpoint.ts +10 -0
  521. package/clients/systemService/models/ISwaggerLicense.ts +9 -0
  522. package/clients/systemService/models/ISwaggerSpec.ts +19 -0
  523. package/clients/systemService/models/LicenseValidationRequest.ts +8 -0
  524. package/clients/systemService/models/Module.ts +44 -0
  525. package/clients/systemService/models/ModuleListEnvelope.ts +14 -0
  526. package/clients/systemService/models/StringListEnvelope.ts +2 -2
  527. package/clients/systemService/models/StudioModule.ts +9 -0
  528. package/clients/{catalogService/models/StockItemDtoListEnvelope.ts → systemService/models/StudioModuleListEnvelope.ts} +5 -5
  529. package/clients/systemService/models/SuiteLicenseAssignmentDto.ts +16 -0
  530. package/clients/systemService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  531. package/clients/systemService/models/SuiteLicenseDto.ts +15 -0
  532. package/clients/systemService/models/SuiteLicenseDtoEnvelope.ts +14 -0
  533. package/clients/systemService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  534. package/clients/systemService/services/AntiforgeryService.ts +16 -4
  535. package/clients/systemService/services/LicensingService.ts +230 -0
  536. package/clients/systemService/services/MigrationsService.ts +14 -3
  537. package/clients/systemService/services/ModulesService.ts +61 -0
  538. package/clients/tenantService/index.ts +100 -3
  539. package/clients/tenantService/models/BooleanEnvelope.ts +2 -2
  540. package/clients/tenantService/models/CartDtoEnvelope.ts +2 -2
  541. package/clients/tenantService/models/EmptyEnvelope.ts +2 -1
  542. package/clients/tenantService/models/ErrorEnvelope.ts +2 -2
  543. package/clients/tenantService/models/ExtendedTenantDto.ts +51 -0
  544. package/clients/tenantService/models/ExtendedTenantDtoEnvelope.ts +14 -0
  545. package/clients/tenantService/models/ExtendedTenantEnrolmentDto.ts +19 -0
  546. package/clients/tenantService/models/ExtendedTenantEnrolmentDtoEnvelope.ts +14 -0
  547. package/clients/tenantService/models/NotificationDtoListEnvelope.ts +2 -2
  548. package/clients/tenantService/models/Operation.ts +23 -0
  549. package/clients/tenantService/models/PlatformUserDto.ts +26 -28
  550. package/clients/tenantService/models/PlatformUserDtoListEnvelope.ts +2 -2
  551. package/clients/tenantService/models/SocialProfileDtoEnvelope.ts +2 -2
  552. package/clients/tenantService/models/StringListEnvelope.ts +2 -2
  553. package/clients/tenantService/models/SuiteLicenseAssignmentDto.ts +16 -0
  554. package/clients/tenantService/models/SuiteLicenseAssignmentDtoListEnvelope.ts +14 -0
  555. package/clients/tenantService/models/SuiteLicenseDto.ts +15 -0
  556. package/clients/tenantService/models/SuiteLicenseDtoListEnvelope.ts +14 -0
  557. package/clients/tenantService/models/SuiteLicenseFeatureDto.ts +9 -0
  558. package/clients/tenantService/models/SuiteLicenseFeatureDtoListEnvelope.ts +14 -0
  559. package/clients/tenantService/models/TenantCreateDto.ts +7 -7
  560. package/clients/tenantService/models/TenantDepartmentCreateDto.ts +16 -0
  561. package/clients/tenantService/models/TenantDepartmentDto.ts +16 -0
  562. package/clients/tenantService/models/TenantDepartmentDtoEnvelope.ts +14 -0
  563. package/clients/tenantService/models/TenantDepartmentDtoListEnvelope.ts +14 -0
  564. package/clients/tenantService/models/TenantDepartmentUpdateDto.ts +12 -0
  565. package/clients/tenantService/models/TenantDto.ts +1 -10
  566. package/clients/tenantService/models/TenantDtoEnvelope.ts +2 -2
  567. package/clients/tenantService/models/TenantEnrollmentCreateDto.ts +11 -0
  568. package/clients/tenantService/models/TenantEnrollmentUpdateDto.ts +9 -0
  569. package/clients/tenantService/models/TenantEnrolmentDto.ts +15 -0
  570. package/clients/tenantService/models/TenantEnrolmentDtoEnvelope.ts +14 -0
  571. package/clients/tenantService/models/TenantEnrolmentDtoListEnvelope.ts +14 -0
  572. package/clients/tenantService/models/TenantIndustryCreateDto.ts +12 -0
  573. package/clients/tenantService/models/TenantIndustryDto.ts +12 -0
  574. package/clients/tenantService/models/TenantIndustryDtoEnvelope.ts +14 -0
  575. package/clients/tenantService/models/TenantIndustryUpdateDto.ts +10 -0
  576. package/clients/tenantService/models/TenantInvitationCreateDto.ts +12 -0
  577. package/clients/tenantService/models/TenantInvitationDto.ts +16 -0
  578. package/clients/tenantService/models/TenantInvitationDtoEnvelope.ts +14 -0
  579. package/clients/tenantService/models/TenantInvitationDtoListEnvelope.ts +14 -0
  580. package/clients/tenantService/models/TenantPositionCreateDto.ts +13 -0
  581. package/clients/tenantService/models/TenantPositionDto.ts +13 -0
  582. package/clients/tenantService/models/TenantPositionDtoEnvelope.ts +14 -0
  583. package/clients/tenantService/models/TenantPositionDtoListEnvelope.ts +14 -0
  584. package/clients/tenantService/models/TenantPositionUpdateDto.ts +9 -0
  585. package/clients/tenantService/models/TenantSegmentCreateDto.ts +12 -0
  586. package/clients/tenantService/models/TenantSegmentDto.ts +12 -0
  587. package/clients/tenantService/models/TenantSegmentDtoEnvelope.ts +14 -0
  588. package/clients/tenantService/models/TenantSegmentDtoListEnvelope.ts +14 -0
  589. package/clients/tenantService/models/TenantSegmentUpdateDto.ts +10 -0
  590. package/clients/tenantService/models/TenantSizeCreateDto.ts +12 -0
  591. package/clients/tenantService/models/TenantSizeDto.ts +12 -0
  592. package/clients/tenantService/models/TenantSizeDtoEnvelope.ts +14 -0
  593. package/clients/tenantService/models/TenantSizeDtoListEnvelope.ts +14 -0
  594. package/clients/tenantService/models/TenantSizeUpdateDto.ts +10 -0
  595. package/clients/tenantService/models/TenantTeamContactEnrollmentCreateDto.ts +13 -0
  596. package/clients/tenantService/models/TenantTeamContactEnrollmentDto.ts +13 -0
  597. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoEnvelope.ts +14 -0
  598. package/clients/tenantService/models/TenantTeamContactEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  599. package/clients/tenantService/models/TenantTeamContactEnrollmentUpdateDto.ts +11 -0
  600. package/clients/tenantService/models/TenantTeamCreateDto.ts +17 -0
  601. package/clients/tenantService/models/TenantTeamDto.ts +17 -0
  602. package/clients/tenantService/models/TenantTeamDtoEnvelope.ts +14 -0
  603. package/clients/tenantService/models/TenantTeamDtoIReadOnlyCollectionEnvelope.ts +14 -0
  604. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentCreateDto.ts +13 -0
  605. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDto.ts +13 -0
  606. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoEnvelope.ts +14 -0
  607. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  608. package/clients/tenantService/models/TenantTeamEmployeeEnrollmentUpdateDto.ts +11 -0
  609. package/clients/tenantService/models/TenantTeamProjectEnrollmentCreateDto.ts +13 -0
  610. package/clients/tenantService/models/TenantTeamProjectEnrollmentDto.ts +13 -0
  611. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoEnvelope.ts +14 -0
  612. package/clients/tenantService/models/TenantTeamProjectEnrollmentDtoIReadOnlyCollectionEnvelope.ts +14 -0
  613. package/clients/tenantService/models/TenantTeamProjectEnrollmentUpdateDto.ts +11 -0
  614. package/clients/tenantService/models/TenantTeamRecordCreateDto.ts +12 -0
  615. package/clients/tenantService/models/TenantTeamRecordDto.ts +12 -0
  616. package/clients/tenantService/models/TenantTeamRecordDtoEnvelope.ts +14 -0
  617. package/clients/tenantService/models/TenantTeamRecordDtoIReadOnlyCollectionEnvelope.ts +14 -0
  618. package/clients/tenantService/models/TenantTeamRecordUpdateDto.ts +10 -0
  619. package/clients/tenantService/models/TenantTeamUpdateDto.ts +17 -0
  620. package/clients/tenantService/models/TenantTerritoryCreateDto.ts +14 -0
  621. package/clients/tenantService/models/TenantTerritoryDto.ts +14 -0
  622. package/clients/tenantService/models/TenantTerritoryDtoEnvelope.ts +14 -0
  623. package/clients/tenantService/models/TenantTerritoryDtoListEnvelope.ts +14 -0
  624. package/clients/tenantService/models/TenantTerritoryUpdateDto.ts +9 -0
  625. package/clients/tenantService/models/TenantTypeCreateDto.ts +11 -0
  626. package/clients/tenantService/models/TenantTypeDto.ts +11 -0
  627. package/clients/tenantService/models/TenantTypeDtoEnvelope.ts +14 -0
  628. package/clients/tenantService/models/TenantTypeDtoIReadOnlyCollectionEnvelope.ts +14 -0
  629. package/clients/tenantService/models/TenantTypeUpdateDto.ts +9 -0
  630. package/clients/tenantService/models/TenantUnitCreateDto.ts +18 -0
  631. package/clients/tenantService/models/TenantUnitDto.ts +18 -0
  632. package/clients/tenantService/models/TenantUnitDtoEnvelope.ts +14 -0
  633. package/clients/tenantService/models/TenantUnitDtoListEnvelope.ts +14 -0
  634. package/clients/tenantService/models/TenantUnitUpdateDto.ts +14 -0
  635. package/clients/tenantService/models/TenantUpdateDto.ts +31 -0
  636. package/clients/tenantService/models/WalletDtoEnvelope.ts +2 -2
  637. package/clients/tenantService/models/WebPortalDto.ts +9 -2
  638. package/clients/tenantService/models/WebPortalDtoListEnvelope.ts +2 -2
  639. package/clients/tenantService/services/DepartmentsService.ts +198 -0
  640. package/clients/tenantService/services/EmployeeEnrollmentsService.ts +181 -0
  641. package/clients/tenantService/services/EnrollmentsService.ts +195 -0
  642. package/clients/tenantService/services/IndustriesService.ts +190 -0
  643. package/clients/tenantService/services/InvitationsService.ts +150 -0
  644. package/clients/tenantService/services/PositionsService.ts +192 -0
  645. package/clients/tenantService/services/SegmentsService.ts +191 -0
  646. package/clients/tenantService/services/SizesService.ts +194 -0
  647. package/clients/tenantService/services/TeamContactEnrollmentsService.ts +191 -0
  648. package/clients/tenantService/services/TeamProjectEnrollmentService.ts +181 -0
  649. package/clients/tenantService/services/TeamRecordsService.ts +192 -0
  650. package/clients/tenantService/services/TeamsService.ts +192 -0
  651. package/clients/tenantService/services/TenantsService.ts +580 -49
  652. package/clients/tenantService/services/TerritoriesService.ts +192 -0
  653. package/clients/tenantService/services/TypesService.ts +176 -0
  654. package/clients/tenantService/services/UnitsService.ts +190 -0
  655. package/clients/walletsService/index.ts +5 -3
  656. package/clients/walletsService/models/Currency.ts +9 -0
  657. package/clients/walletsService/models/ErrorEnvelope.ts +2 -2
  658. package/clients/walletsService/models/InvoiceDto.ts +91 -2
  659. package/clients/walletsService/models/InvoiceDtoListEnvelope.ts +2 -2
  660. package/clients/walletsService/models/LocationDto.ts +1 -1
  661. package/clients/walletsService/models/LocationDtoListEnvelope.ts +2 -2
  662. package/clients/walletsService/models/Money.ts +10 -0
  663. package/clients/walletsService/models/OrderDto.ts +93 -7
  664. package/clients/walletsService/models/OrderDtoListEnvelope.ts +2 -2
  665. package/clients/walletsService/models/PaymentDto.ts +81 -4
  666. package/clients/walletsService/models/PaymentDtoListEnvelope.ts +2 -2
  667. package/clients/walletsService/models/WalletDtoEnvelope.ts +2 -2
  668. package/clients/walletsService/services/WalletsService.ts +73 -8
  669. package/package.json +4 -3
  670. package/schemas/accountingService/schema.s.ts +5108 -0
  671. package/schemas/cartService/schema.s.ts +1716 -78
  672. package/schemas/catalogService/schema.s.ts +2810 -1736
  673. package/schemas/crmService/schema.s.ts +892 -138
  674. package/schemas/forexService/schema.s.ts +116 -345
  675. package/schemas/holderService/schema.s.ts +693 -197
  676. package/schemas/identityService/schema.s.ts +125 -103
  677. package/schemas/inventoryService/schema.s.ts +4 -1
  678. package/schemas/invoicingService/schema.s.ts +1758 -105
  679. package/schemas/learningService/schema.s.ts +1723 -0
  680. package/schemas/marketingService/schema.s.ts +3027 -0
  681. package/schemas/ordersService/schema.s.ts +632 -108
  682. package/schemas/pricingService/schema.s.ts +181 -102
  683. package/schemas/securityService/schema.s.ts +1226 -0
  684. package/schemas/supportService/schema.s.ts +2114 -0
  685. package/schemas/systemService/schema.s.ts +1215 -5
  686. package/schemas/tenantService/schema.s.ts +5405 -427
  687. package/schemas/walletsService/schema.s.ts +374 -34
  688. package/clients/catalogService/models/StockItemCreateDto.ts +0 -108
  689. package/clients/catalogService/models/StockItemUpdateDto.ts +0 -106
  690. package/clients/catalogService/services/ProductsService.ts +0 -1706
  691. package/clients/holderService/models/OrderDto.ts +0 -27
  692. package/clients/holderService/models/PaymentDto.ts +0 -17
  693. package/clients/invoicingService/models/ItemPriceUpdateDto.ts +0 -14
  694. package/clients/ordersService/models/ItemPriceCreateDto.ts +0 -20
  695. package/clients/ordersService/models/ItemPriceUpdateDto.ts +0 -14
@@ -0,0 +1,3027 @@
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/MarketingService/EmailGroups": {
9
+ get: {
10
+ parameters: {
11
+ query: {
12
+ tenantId: string;
13
+ "api-version"?: string;
14
+ };
15
+ header?: {
16
+ "x-api-version"?: string;
17
+ };
18
+ };
19
+ responses: {
20
+ /** @description OK */
21
+ 200: {
22
+ content: {
23
+ "application/json": components["schemas"]["EmailGroupDtoListEnvelope"];
24
+ "application/xml": components["schemas"]["EmailGroupDtoListEnvelope"];
25
+ };
26
+ };
27
+ /** @description Unauthorized */
28
+ 401: {
29
+ content: {
30
+ "application/json": components["schemas"]["ErrorEnvelope"];
31
+ "application/xml": components["schemas"]["ErrorEnvelope"];
32
+ };
33
+ };
34
+ /** @description Forbidden */
35
+ 403: {
36
+ content: {
37
+ "application/json": components["schemas"]["ErrorEnvelope"];
38
+ "application/xml": components["schemas"]["ErrorEnvelope"];
39
+ };
40
+ };
41
+ };
42
+ };
43
+ post: {
44
+ parameters: {
45
+ query: {
46
+ tenantId: string;
47
+ "api-version"?: string;
48
+ };
49
+ header?: {
50
+ "x-api-version"?: string;
51
+ };
52
+ };
53
+ requestBody: {
54
+ content: {
55
+ "application/json": components["schemas"]["EmailGroupCreateDto"];
56
+ "application/xml": components["schemas"]["EmailGroupCreateDto"];
57
+ };
58
+ };
59
+ responses: {
60
+ /** @description Created */
61
+ 201: {
62
+ content: {
63
+ "application/json": components["schemas"]["EmptyEnvelope"];
64
+ "application/xml": components["schemas"]["EmptyEnvelope"];
65
+ };
66
+ };
67
+ /** @description Bad Request */
68
+ 400: {
69
+ content: {
70
+ "application/json": components["schemas"]["ErrorEnvelope"];
71
+ "application/xml": components["schemas"]["ErrorEnvelope"];
72
+ };
73
+ };
74
+ /** @description Unauthorized */
75
+ 401: {
76
+ content: {
77
+ "application/json": components["schemas"]["ErrorEnvelope"];
78
+ "application/xml": components["schemas"]["ErrorEnvelope"];
79
+ };
80
+ };
81
+ /** @description Forbidden */
82
+ 403: {
83
+ content: {
84
+ "application/json": components["schemas"]["ErrorEnvelope"];
85
+ "application/xml": components["schemas"]["ErrorEnvelope"];
86
+ };
87
+ };
88
+ };
89
+ };
90
+ };
91
+ "/api/v2/MarketingService/EmailGroups/Count": {
92
+ get: {
93
+ parameters: {
94
+ query: {
95
+ tenantId: string;
96
+ "api-version"?: string;
97
+ };
98
+ header?: {
99
+ "x-api-version"?: string;
100
+ };
101
+ };
102
+ responses: {
103
+ /** @description OK */
104
+ 200: {
105
+ content: {
106
+ "application/json": components["schemas"]["Int32Envelope"];
107
+ "application/xml": components["schemas"]["Int32Envelope"];
108
+ };
109
+ };
110
+ /** @description Bad Request */
111
+ 400: {
112
+ content: {
113
+ "application/json": components["schemas"]["ErrorEnvelope"];
114
+ "application/xml": components["schemas"]["ErrorEnvelope"];
115
+ };
116
+ };
117
+ /** @description Unauthorized */
118
+ 401: {
119
+ content: {
120
+ "application/json": components["schemas"]["ErrorEnvelope"];
121
+ "application/xml": components["schemas"]["ErrorEnvelope"];
122
+ };
123
+ };
124
+ /** @description Forbidden */
125
+ 403: {
126
+ content: {
127
+ "application/json": components["schemas"]["ErrorEnvelope"];
128
+ "application/xml": components["schemas"]["ErrorEnvelope"];
129
+ };
130
+ };
131
+ };
132
+ };
133
+ };
134
+ "/api/v2/MarketingService/EmailGroups/{emailgroupId}": {
135
+ get: {
136
+ parameters: {
137
+ query: {
138
+ tenantId: string;
139
+ "api-version"?: string;
140
+ };
141
+ header?: {
142
+ "x-api-version"?: string;
143
+ };
144
+ path: {
145
+ emailgroupId: string;
146
+ };
147
+ };
148
+ responses: {
149
+ /** @description OK */
150
+ 200: {
151
+ content: {
152
+ "application/json": components["schemas"]["EmailGroupDtoEnvelope"];
153
+ "application/xml": components["schemas"]["EmailGroupDtoEnvelope"];
154
+ };
155
+ };
156
+ /** @description Bad Request */
157
+ 400: {
158
+ content: {
159
+ "application/json": components["schemas"]["ErrorEnvelope"];
160
+ "application/xml": components["schemas"]["ErrorEnvelope"];
161
+ };
162
+ };
163
+ /** @description Unauthorized */
164
+ 401: {
165
+ content: {
166
+ "application/json": components["schemas"]["ErrorEnvelope"];
167
+ "application/xml": components["schemas"]["ErrorEnvelope"];
168
+ };
169
+ };
170
+ /** @description Forbidden */
171
+ 403: {
172
+ content: {
173
+ "application/json": components["schemas"]["ErrorEnvelope"];
174
+ "application/xml": components["schemas"]["ErrorEnvelope"];
175
+ };
176
+ };
177
+ };
178
+ };
179
+ put: {
180
+ parameters: {
181
+ query: {
182
+ tenantId: string;
183
+ "api-version"?: string;
184
+ };
185
+ header?: {
186
+ "x-api-version"?: string;
187
+ };
188
+ path: {
189
+ emailgroupId: string;
190
+ };
191
+ };
192
+ requestBody: {
193
+ content: {
194
+ "application/json": components["schemas"]["EmailGroupUpdateDto"];
195
+ "application/xml": components["schemas"]["EmailGroupUpdateDto"];
196
+ };
197
+ };
198
+ responses: {
199
+ /** @description OK */
200
+ 200: {
201
+ content: {
202
+ "application/json": components["schemas"]["EmptyEnvelope"];
203
+ "application/xml": components["schemas"]["EmptyEnvelope"];
204
+ };
205
+ };
206
+ /** @description Bad Request */
207
+ 400: {
208
+ content: {
209
+ "application/json": components["schemas"]["ErrorEnvelope"];
210
+ "application/xml": components["schemas"]["ErrorEnvelope"];
211
+ };
212
+ };
213
+ /** @description Unauthorized */
214
+ 401: {
215
+ content: {
216
+ "application/json": components["schemas"]["ErrorEnvelope"];
217
+ "application/xml": components["schemas"]["ErrorEnvelope"];
218
+ };
219
+ };
220
+ /** @description Forbidden */
221
+ 403: {
222
+ content: {
223
+ "application/json": components["schemas"]["ErrorEnvelope"];
224
+ "application/xml": components["schemas"]["ErrorEnvelope"];
225
+ };
226
+ };
227
+ };
228
+ };
229
+ delete: {
230
+ parameters: {
231
+ query: {
232
+ tenantId: string;
233
+ "api-version"?: string;
234
+ };
235
+ header?: {
236
+ "x-api-version"?: string;
237
+ };
238
+ path: {
239
+ emailgroupId: string;
240
+ };
241
+ };
242
+ responses: {
243
+ /** @description OK */
244
+ 200: {
245
+ content: {
246
+ "application/json": components["schemas"]["EmptyEnvelope"];
247
+ "application/xml": components["schemas"]["EmptyEnvelope"];
248
+ };
249
+ };
250
+ /** @description Bad Request */
251
+ 400: {
252
+ content: {
253
+ "application/json": components["schemas"]["ErrorEnvelope"];
254
+ "application/xml": components["schemas"]["ErrorEnvelope"];
255
+ };
256
+ };
257
+ /** @description Unauthorized */
258
+ 401: {
259
+ content: {
260
+ "application/json": components["schemas"]["ErrorEnvelope"];
261
+ "application/xml": components["schemas"]["ErrorEnvelope"];
262
+ };
263
+ };
264
+ /** @description Forbidden */
265
+ 403: {
266
+ content: {
267
+ "application/json": components["schemas"]["ErrorEnvelope"];
268
+ "application/xml": components["schemas"]["ErrorEnvelope"];
269
+ };
270
+ };
271
+ };
272
+ };
273
+ };
274
+ "/api/v2/MarketingService/EmailSignatures": {
275
+ get: {
276
+ parameters: {
277
+ query: {
278
+ tenantId: string;
279
+ "api-version"?: string;
280
+ };
281
+ header?: {
282
+ "x-api-version"?: string;
283
+ };
284
+ };
285
+ responses: {
286
+ /** @description OK */
287
+ 200: {
288
+ content: {
289
+ "application/json": components["schemas"]["EmailSignatureDtoListEnvelope"];
290
+ "application/xml": components["schemas"]["EmailSignatureDtoListEnvelope"];
291
+ };
292
+ };
293
+ /** @description Unauthorized */
294
+ 401: {
295
+ content: {
296
+ "application/json": components["schemas"]["ErrorEnvelope"];
297
+ "application/xml": components["schemas"]["ErrorEnvelope"];
298
+ };
299
+ };
300
+ /** @description Forbidden */
301
+ 403: {
302
+ content: {
303
+ "application/json": components["schemas"]["ErrorEnvelope"];
304
+ "application/xml": components["schemas"]["ErrorEnvelope"];
305
+ };
306
+ };
307
+ };
308
+ };
309
+ post: {
310
+ parameters: {
311
+ query: {
312
+ tenantId: string;
313
+ "api-version"?: string;
314
+ };
315
+ header?: {
316
+ "x-api-version"?: string;
317
+ };
318
+ };
319
+ requestBody: {
320
+ content: {
321
+ "application/json": components["schemas"]["EmailSignatureCreateDto"];
322
+ "application/xml": components["schemas"]["EmailSignatureCreateDto"];
323
+ };
324
+ };
325
+ responses: {
326
+ /** @description Created */
327
+ 201: {
328
+ content: {
329
+ "application/json": components["schemas"]["EmptyEnvelope"];
330
+ "application/xml": components["schemas"]["EmptyEnvelope"];
331
+ };
332
+ };
333
+ /** @description Bad Request */
334
+ 400: {
335
+ content: {
336
+ "application/json": components["schemas"]["ErrorEnvelope"];
337
+ "application/xml": components["schemas"]["ErrorEnvelope"];
338
+ };
339
+ };
340
+ /** @description Unauthorized */
341
+ 401: {
342
+ content: {
343
+ "application/json": components["schemas"]["ErrorEnvelope"];
344
+ "application/xml": components["schemas"]["ErrorEnvelope"];
345
+ };
346
+ };
347
+ /** @description Forbidden */
348
+ 403: {
349
+ content: {
350
+ "application/json": components["schemas"]["ErrorEnvelope"];
351
+ "application/xml": components["schemas"]["ErrorEnvelope"];
352
+ };
353
+ };
354
+ };
355
+ };
356
+ };
357
+ "/api/v2/MarketingService/EmailSignatures/Count": {
358
+ get: {
359
+ parameters: {
360
+ query: {
361
+ tenantId: string;
362
+ "api-version"?: string;
363
+ };
364
+ header?: {
365
+ "x-api-version"?: string;
366
+ };
367
+ };
368
+ responses: {
369
+ /** @description OK */
370
+ 200: {
371
+ content: {
372
+ "application/json": components["schemas"]["Int32Envelope"];
373
+ "application/xml": components["schemas"]["Int32Envelope"];
374
+ };
375
+ };
376
+ /** @description Bad Request */
377
+ 400: {
378
+ content: {
379
+ "application/json": components["schemas"]["ErrorEnvelope"];
380
+ "application/xml": components["schemas"]["ErrorEnvelope"];
381
+ };
382
+ };
383
+ /** @description Unauthorized */
384
+ 401: {
385
+ content: {
386
+ "application/json": components["schemas"]["ErrorEnvelope"];
387
+ "application/xml": components["schemas"]["ErrorEnvelope"];
388
+ };
389
+ };
390
+ /** @description Forbidden */
391
+ 403: {
392
+ content: {
393
+ "application/json": components["schemas"]["ErrorEnvelope"];
394
+ "application/xml": components["schemas"]["ErrorEnvelope"];
395
+ };
396
+ };
397
+ };
398
+ };
399
+ };
400
+ "/api/v2/MarketingService/EmailSignatures/{emailsignatureId}": {
401
+ get: {
402
+ parameters: {
403
+ query: {
404
+ tenantId: string;
405
+ "api-version"?: string;
406
+ };
407
+ header?: {
408
+ "x-api-version"?: string;
409
+ };
410
+ path: {
411
+ emailsignatureId: string;
412
+ };
413
+ };
414
+ responses: {
415
+ /** @description OK */
416
+ 200: {
417
+ content: {
418
+ "application/json": components["schemas"]["EmailSignatureDtoEnvelope"];
419
+ "application/xml": components["schemas"]["EmailSignatureDtoEnvelope"];
420
+ };
421
+ };
422
+ /** @description Bad Request */
423
+ 400: {
424
+ content: {
425
+ "application/json": components["schemas"]["ErrorEnvelope"];
426
+ "application/xml": components["schemas"]["ErrorEnvelope"];
427
+ };
428
+ };
429
+ /** @description Unauthorized */
430
+ 401: {
431
+ content: {
432
+ "application/json": components["schemas"]["ErrorEnvelope"];
433
+ "application/xml": components["schemas"]["ErrorEnvelope"];
434
+ };
435
+ };
436
+ /** @description Forbidden */
437
+ 403: {
438
+ content: {
439
+ "application/json": components["schemas"]["ErrorEnvelope"];
440
+ "application/xml": components["schemas"]["ErrorEnvelope"];
441
+ };
442
+ };
443
+ };
444
+ };
445
+ put: {
446
+ parameters: {
447
+ query: {
448
+ tenantId: string;
449
+ "api-version"?: string;
450
+ };
451
+ header?: {
452
+ "x-api-version"?: string;
453
+ };
454
+ path: {
455
+ emailsignatureId: string;
456
+ };
457
+ };
458
+ requestBody: {
459
+ content: {
460
+ "application/json": components["schemas"]["EmailSignatureUpdateDto"];
461
+ "application/xml": components["schemas"]["EmailSignatureUpdateDto"];
462
+ };
463
+ };
464
+ responses: {
465
+ /** @description OK */
466
+ 200: {
467
+ content: {
468
+ "application/json": components["schemas"]["EmptyEnvelope"];
469
+ "application/xml": components["schemas"]["EmptyEnvelope"];
470
+ };
471
+ };
472
+ /** @description Bad Request */
473
+ 400: {
474
+ content: {
475
+ "application/json": components["schemas"]["ErrorEnvelope"];
476
+ "application/xml": components["schemas"]["ErrorEnvelope"];
477
+ };
478
+ };
479
+ /** @description Unauthorized */
480
+ 401: {
481
+ content: {
482
+ "application/json": components["schemas"]["ErrorEnvelope"];
483
+ "application/xml": components["schemas"]["ErrorEnvelope"];
484
+ };
485
+ };
486
+ /** @description Forbidden */
487
+ 403: {
488
+ content: {
489
+ "application/json": components["schemas"]["ErrorEnvelope"];
490
+ "application/xml": components["schemas"]["ErrorEnvelope"];
491
+ };
492
+ };
493
+ };
494
+ };
495
+ delete: {
496
+ parameters: {
497
+ query: {
498
+ tenantId: string;
499
+ "api-version"?: string;
500
+ };
501
+ header?: {
502
+ "x-api-version"?: string;
503
+ };
504
+ path: {
505
+ emailsignatureId: string;
506
+ };
507
+ };
508
+ responses: {
509
+ /** @description OK */
510
+ 200: {
511
+ content: {
512
+ "application/json": components["schemas"]["EmptyEnvelope"];
513
+ "application/xml": components["schemas"]["EmptyEnvelope"];
514
+ };
515
+ };
516
+ /** @description Bad Request */
517
+ 400: {
518
+ content: {
519
+ "application/json": components["schemas"]["ErrorEnvelope"];
520
+ "application/xml": components["schemas"]["ErrorEnvelope"];
521
+ };
522
+ };
523
+ /** @description Unauthorized */
524
+ 401: {
525
+ content: {
526
+ "application/json": components["schemas"]["ErrorEnvelope"];
527
+ "application/xml": components["schemas"]["ErrorEnvelope"];
528
+ };
529
+ };
530
+ /** @description Forbidden */
531
+ 403: {
532
+ content: {
533
+ "application/json": components["schemas"]["ErrorEnvelope"];
534
+ "application/xml": components["schemas"]["ErrorEnvelope"];
535
+ };
536
+ };
537
+ };
538
+ };
539
+ };
540
+ "/api/v2/MarketingService/EmailTemplates": {
541
+ get: {
542
+ parameters: {
543
+ query: {
544
+ tenantId: string;
545
+ "api-version"?: string;
546
+ };
547
+ header?: {
548
+ "x-api-version"?: string;
549
+ };
550
+ };
551
+ responses: {
552
+ /** @description OK */
553
+ 200: {
554
+ content: {
555
+ "application/json": components["schemas"]["EmailTemplateDtoListEnvelope"];
556
+ "application/xml": components["schemas"]["EmailTemplateDtoListEnvelope"];
557
+ };
558
+ };
559
+ /** @description Unauthorized */
560
+ 401: {
561
+ content: {
562
+ "application/json": components["schemas"]["ErrorEnvelope"];
563
+ "application/xml": components["schemas"]["ErrorEnvelope"];
564
+ };
565
+ };
566
+ /** @description Forbidden */
567
+ 403: {
568
+ content: {
569
+ "application/json": components["schemas"]["ErrorEnvelope"];
570
+ "application/xml": components["schemas"]["ErrorEnvelope"];
571
+ };
572
+ };
573
+ };
574
+ };
575
+ post: {
576
+ parameters: {
577
+ query: {
578
+ tenantId: string;
579
+ "api-version"?: string;
580
+ };
581
+ header?: {
582
+ "x-api-version"?: string;
583
+ };
584
+ };
585
+ requestBody: {
586
+ content: {
587
+ "application/json": components["schemas"]["EmailTemplateCreateDto"];
588
+ "application/xml": components["schemas"]["EmailTemplateCreateDto"];
589
+ };
590
+ };
591
+ responses: {
592
+ /** @description Created */
593
+ 201: {
594
+ content: {
595
+ "application/json": components["schemas"]["EmptyEnvelope"];
596
+ "application/xml": components["schemas"]["EmptyEnvelope"];
597
+ };
598
+ };
599
+ /** @description Bad Request */
600
+ 400: {
601
+ content: {
602
+ "application/json": components["schemas"]["ErrorEnvelope"];
603
+ "application/xml": components["schemas"]["ErrorEnvelope"];
604
+ };
605
+ };
606
+ /** @description Unauthorized */
607
+ 401: {
608
+ content: {
609
+ "application/json": components["schemas"]["ErrorEnvelope"];
610
+ "application/xml": components["schemas"]["ErrorEnvelope"];
611
+ };
612
+ };
613
+ /** @description Forbidden */
614
+ 403: {
615
+ content: {
616
+ "application/json": components["schemas"]["ErrorEnvelope"];
617
+ "application/xml": components["schemas"]["ErrorEnvelope"];
618
+ };
619
+ };
620
+ };
621
+ };
622
+ };
623
+ "/api/v2/MarketingService/EmailTemplates/Count": {
624
+ get: {
625
+ parameters: {
626
+ query: {
627
+ tenantId: string;
628
+ "api-version"?: string;
629
+ };
630
+ header?: {
631
+ "x-api-version"?: string;
632
+ };
633
+ };
634
+ responses: {
635
+ /** @description OK */
636
+ 200: {
637
+ content: {
638
+ "application/json": components["schemas"]["Int32Envelope"];
639
+ "application/xml": components["schemas"]["Int32Envelope"];
640
+ };
641
+ };
642
+ /** @description Bad Request */
643
+ 400: {
644
+ content: {
645
+ "application/json": components["schemas"]["ErrorEnvelope"];
646
+ "application/xml": components["schemas"]["ErrorEnvelope"];
647
+ };
648
+ };
649
+ /** @description Unauthorized */
650
+ 401: {
651
+ content: {
652
+ "application/json": components["schemas"]["ErrorEnvelope"];
653
+ "application/xml": components["schemas"]["ErrorEnvelope"];
654
+ };
655
+ };
656
+ /** @description Forbidden */
657
+ 403: {
658
+ content: {
659
+ "application/json": components["schemas"]["ErrorEnvelope"];
660
+ "application/xml": components["schemas"]["ErrorEnvelope"];
661
+ };
662
+ };
663
+ };
664
+ };
665
+ };
666
+ "/api/v2/MarketingService/EmailTemplates/{emailtemplateId}": {
667
+ get: {
668
+ parameters: {
669
+ query: {
670
+ tenantId: string;
671
+ "api-version"?: string;
672
+ };
673
+ header?: {
674
+ "x-api-version"?: string;
675
+ };
676
+ path: {
677
+ emailtemplateId: string;
678
+ };
679
+ };
680
+ responses: {
681
+ /** @description OK */
682
+ 200: {
683
+ content: {
684
+ "application/json": components["schemas"]["EmailTemplateDtoEnvelope"];
685
+ "application/xml": components["schemas"]["EmailTemplateDtoEnvelope"];
686
+ };
687
+ };
688
+ /** @description Bad Request */
689
+ 400: {
690
+ content: {
691
+ "application/json": components["schemas"]["ErrorEnvelope"];
692
+ "application/xml": components["schemas"]["ErrorEnvelope"];
693
+ };
694
+ };
695
+ /** @description Unauthorized */
696
+ 401: {
697
+ content: {
698
+ "application/json": components["schemas"]["ErrorEnvelope"];
699
+ "application/xml": components["schemas"]["ErrorEnvelope"];
700
+ };
701
+ };
702
+ /** @description Forbidden */
703
+ 403: {
704
+ content: {
705
+ "application/json": components["schemas"]["ErrorEnvelope"];
706
+ "application/xml": components["schemas"]["ErrorEnvelope"];
707
+ };
708
+ };
709
+ };
710
+ };
711
+ put: {
712
+ parameters: {
713
+ query: {
714
+ tenantId: string;
715
+ "api-version"?: string;
716
+ };
717
+ header?: {
718
+ "x-api-version"?: string;
719
+ };
720
+ path: {
721
+ emailtemplateId: string;
722
+ };
723
+ };
724
+ requestBody: {
725
+ content: {
726
+ "application/json": components["schemas"]["EmailTemplateUpdateDto"];
727
+ "application/xml": components["schemas"]["EmailTemplateUpdateDto"];
728
+ };
729
+ };
730
+ responses: {
731
+ /** @description OK */
732
+ 200: {
733
+ content: {
734
+ "application/json": components["schemas"]["EmptyEnvelope"];
735
+ "application/xml": components["schemas"]["EmptyEnvelope"];
736
+ };
737
+ };
738
+ /** @description Bad Request */
739
+ 400: {
740
+ content: {
741
+ "application/json": components["schemas"]["ErrorEnvelope"];
742
+ "application/xml": components["schemas"]["ErrorEnvelope"];
743
+ };
744
+ };
745
+ /** @description Unauthorized */
746
+ 401: {
747
+ content: {
748
+ "application/json": components["schemas"]["ErrorEnvelope"];
749
+ "application/xml": components["schemas"]["ErrorEnvelope"];
750
+ };
751
+ };
752
+ /** @description Forbidden */
753
+ 403: {
754
+ content: {
755
+ "application/json": components["schemas"]["ErrorEnvelope"];
756
+ "application/xml": components["schemas"]["ErrorEnvelope"];
757
+ };
758
+ };
759
+ };
760
+ };
761
+ delete: {
762
+ parameters: {
763
+ query: {
764
+ tenantId: string;
765
+ "api-version"?: string;
766
+ };
767
+ header?: {
768
+ "x-api-version"?: string;
769
+ };
770
+ path: {
771
+ emailtemplateId: string;
772
+ };
773
+ };
774
+ responses: {
775
+ /** @description OK */
776
+ 200: {
777
+ content: {
778
+ "application/json": components["schemas"]["EmptyEnvelope"];
779
+ "application/xml": components["schemas"]["EmptyEnvelope"];
780
+ };
781
+ };
782
+ /** @description Bad Request */
783
+ 400: {
784
+ content: {
785
+ "application/json": components["schemas"]["ErrorEnvelope"];
786
+ "application/xml": components["schemas"]["ErrorEnvelope"];
787
+ };
788
+ };
789
+ /** @description Unauthorized */
790
+ 401: {
791
+ content: {
792
+ "application/json": components["schemas"]["ErrorEnvelope"];
793
+ "application/xml": components["schemas"]["ErrorEnvelope"];
794
+ };
795
+ };
796
+ /** @description Forbidden */
797
+ 403: {
798
+ content: {
799
+ "application/json": components["schemas"]["ErrorEnvelope"];
800
+ "application/xml": components["schemas"]["ErrorEnvelope"];
801
+ };
802
+ };
803
+ };
804
+ };
805
+ };
806
+ "/api/v2/MarketingService/MarketingCampaigns": {
807
+ get: {
808
+ parameters: {
809
+ query: {
810
+ tenantId: string;
811
+ "api-version"?: string;
812
+ };
813
+ header?: {
814
+ "x-api-version"?: string;
815
+ };
816
+ };
817
+ responses: {
818
+ /** @description Bad Request */
819
+ 400: {
820
+ content: {
821
+ "application/json": components["schemas"]["ErrorEnvelope"];
822
+ "application/xml": components["schemas"]["ErrorEnvelope"];
823
+ };
824
+ };
825
+ /** @description Unauthorized */
826
+ 401: {
827
+ content: {
828
+ "application/json": components["schemas"]["ErrorEnvelope"];
829
+ "application/xml": components["schemas"]["ErrorEnvelope"];
830
+ };
831
+ };
832
+ /** @description Forbidden */
833
+ 403: {
834
+ content: {
835
+ "application/json": components["schemas"]["ErrorEnvelope"];
836
+ "application/xml": components["schemas"]["ErrorEnvelope"];
837
+ };
838
+ };
839
+ };
840
+ };
841
+ post: {
842
+ parameters: {
843
+ query: {
844
+ tenantId: string;
845
+ "api-version"?: string;
846
+ };
847
+ header?: {
848
+ "x-api-version"?: string;
849
+ };
850
+ };
851
+ requestBody: {
852
+ content: {
853
+ "application/json": components["schemas"]["MarketingCampaignCreateDto"];
854
+ "application/xml": components["schemas"]["MarketingCampaignCreateDto"];
855
+ };
856
+ };
857
+ responses: {
858
+ /** @description Created */
859
+ 201: {
860
+ content: {
861
+ "application/json": components["schemas"]["EmptyEnvelope"];
862
+ "application/xml": components["schemas"]["EmptyEnvelope"];
863
+ };
864
+ };
865
+ /** @description Bad Request */
866
+ 400: {
867
+ content: {
868
+ "application/json": components["schemas"]["ErrorEnvelope"];
869
+ "application/xml": components["schemas"]["ErrorEnvelope"];
870
+ };
871
+ };
872
+ /** @description Unauthorized */
873
+ 401: {
874
+ content: {
875
+ "application/json": components["schemas"]["ErrorEnvelope"];
876
+ "application/xml": components["schemas"]["ErrorEnvelope"];
877
+ };
878
+ };
879
+ /** @description Forbidden */
880
+ 403: {
881
+ content: {
882
+ "application/json": components["schemas"]["ErrorEnvelope"];
883
+ "application/xml": components["schemas"]["ErrorEnvelope"];
884
+ };
885
+ };
886
+ };
887
+ };
888
+ };
889
+ "/api/v2/MarketingService/MarketingCampaigns/Count": {
890
+ get: {
891
+ parameters: {
892
+ query: {
893
+ tenantId: string;
894
+ "api-version"?: string;
895
+ };
896
+ header?: {
897
+ "x-api-version"?: string;
898
+ };
899
+ };
900
+ responses: {
901
+ /** @description OK */
902
+ 200: {
903
+ content: {
904
+ "application/json": components["schemas"]["Int32Envelope"];
905
+ "application/xml": components["schemas"]["Int32Envelope"];
906
+ };
907
+ };
908
+ /** @description Bad Request */
909
+ 400: {
910
+ content: {
911
+ "application/json": components["schemas"]["ErrorEnvelope"];
912
+ "application/xml": components["schemas"]["ErrorEnvelope"];
913
+ };
914
+ };
915
+ /** @description Unauthorized */
916
+ 401: {
917
+ content: {
918
+ "application/json": components["schemas"]["ErrorEnvelope"];
919
+ "application/xml": components["schemas"]["ErrorEnvelope"];
920
+ };
921
+ };
922
+ /** @description Forbidden */
923
+ 403: {
924
+ content: {
925
+ "application/json": components["schemas"]["ErrorEnvelope"];
926
+ "application/xml": components["schemas"]["ErrorEnvelope"];
927
+ };
928
+ };
929
+ };
930
+ };
931
+ };
932
+ "/api/v2/MarketingService/MarketingCampaigns/{marketingcampaignId}": {
933
+ get: {
934
+ parameters: {
935
+ query: {
936
+ tenantId: string;
937
+ "api-version"?: string;
938
+ };
939
+ header?: {
940
+ "x-api-version"?: string;
941
+ };
942
+ path: {
943
+ marketingcampaignId: string;
944
+ };
945
+ };
946
+ responses: {
947
+ /** @description OK */
948
+ 200: {
949
+ content: {
950
+ "application/json": components["schemas"]["MarketingCampaignDtoEnvelope"];
951
+ "application/xml": components["schemas"]["MarketingCampaignDtoEnvelope"];
952
+ };
953
+ };
954
+ /** @description Bad Request */
955
+ 400: {
956
+ content: {
957
+ "application/json": components["schemas"]["ErrorEnvelope"];
958
+ "application/xml": components["schemas"]["ErrorEnvelope"];
959
+ };
960
+ };
961
+ /** @description Unauthorized */
962
+ 401: {
963
+ content: {
964
+ "application/json": components["schemas"]["ErrorEnvelope"];
965
+ "application/xml": components["schemas"]["ErrorEnvelope"];
966
+ };
967
+ };
968
+ /** @description Forbidden */
969
+ 403: {
970
+ content: {
971
+ "application/json": components["schemas"]["ErrorEnvelope"];
972
+ "application/xml": components["schemas"]["ErrorEnvelope"];
973
+ };
974
+ };
975
+ };
976
+ };
977
+ put: {
978
+ parameters: {
979
+ query: {
980
+ tenantId: string;
981
+ "api-version"?: string;
982
+ };
983
+ header?: {
984
+ "x-api-version"?: string;
985
+ };
986
+ path: {
987
+ marketingcampaignId: string;
988
+ };
989
+ };
990
+ requestBody: {
991
+ content: {
992
+ "application/json": components["schemas"]["MarketingCampaignUpdateDto"];
993
+ "application/xml": components["schemas"]["MarketingCampaignUpdateDto"];
994
+ };
995
+ };
996
+ responses: {
997
+ /** @description OK */
998
+ 200: {
999
+ content: {
1000
+ "application/json": components["schemas"]["EmptyEnvelope"];
1001
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1002
+ };
1003
+ };
1004
+ /** @description Bad Request */
1005
+ 400: {
1006
+ content: {
1007
+ "application/json": components["schemas"]["ErrorEnvelope"];
1008
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1009
+ };
1010
+ };
1011
+ /** @description Unauthorized */
1012
+ 401: {
1013
+ content: {
1014
+ "application/json": components["schemas"]["ErrorEnvelope"];
1015
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1016
+ };
1017
+ };
1018
+ /** @description Forbidden */
1019
+ 403: {
1020
+ content: {
1021
+ "application/json": components["schemas"]["ErrorEnvelope"];
1022
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1023
+ };
1024
+ };
1025
+ };
1026
+ };
1027
+ delete: {
1028
+ parameters: {
1029
+ query: {
1030
+ tenantId: string;
1031
+ "api-version"?: string;
1032
+ };
1033
+ header?: {
1034
+ "x-api-version"?: string;
1035
+ };
1036
+ path: {
1037
+ marketingcampaignId: string;
1038
+ };
1039
+ };
1040
+ responses: {
1041
+ /** @description OK */
1042
+ 200: {
1043
+ content: {
1044
+ "application/json": components["schemas"]["EmptyEnvelope"];
1045
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1046
+ };
1047
+ };
1048
+ /** @description Bad Request */
1049
+ 400: {
1050
+ content: {
1051
+ "application/json": components["schemas"]["ErrorEnvelope"];
1052
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1053
+ };
1054
+ };
1055
+ /** @description Unauthorized */
1056
+ 401: {
1057
+ content: {
1058
+ "application/json": components["schemas"]["ErrorEnvelope"];
1059
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1060
+ };
1061
+ };
1062
+ /** @description Forbidden */
1063
+ 403: {
1064
+ content: {
1065
+ "application/json": components["schemas"]["ErrorEnvelope"];
1066
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1067
+ };
1068
+ };
1069
+ };
1070
+ };
1071
+ };
1072
+ "/api/v2/MarketingService/MarketingLists": {
1073
+ get: {
1074
+ parameters: {
1075
+ query: {
1076
+ tenantId: string;
1077
+ "api-version"?: string;
1078
+ };
1079
+ header?: {
1080
+ "x-api-version"?: string;
1081
+ };
1082
+ };
1083
+ responses: {
1084
+ /** @description OK */
1085
+ 200: {
1086
+ content: {
1087
+ "application/json": components["schemas"]["MarketingListDtoListEnvelope"];
1088
+ "application/xml": components["schemas"]["MarketingListDtoListEnvelope"];
1089
+ };
1090
+ };
1091
+ /** @description Unauthorized */
1092
+ 401: {
1093
+ content: {
1094
+ "application/json": components["schemas"]["ErrorEnvelope"];
1095
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1096
+ };
1097
+ };
1098
+ /** @description Forbidden */
1099
+ 403: {
1100
+ content: {
1101
+ "application/json": components["schemas"]["ErrorEnvelope"];
1102
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1103
+ };
1104
+ };
1105
+ };
1106
+ };
1107
+ post: {
1108
+ parameters: {
1109
+ query: {
1110
+ tenantId: string;
1111
+ "api-version"?: string;
1112
+ };
1113
+ header?: {
1114
+ "x-api-version"?: string;
1115
+ };
1116
+ };
1117
+ requestBody: {
1118
+ content: {
1119
+ "application/json": components["schemas"]["MarketingListCreateDto"];
1120
+ "application/xml": components["schemas"]["MarketingListCreateDto"];
1121
+ };
1122
+ };
1123
+ responses: {
1124
+ /** @description Created */
1125
+ 201: {
1126
+ content: {
1127
+ "application/json": components["schemas"]["EmptyEnvelope"];
1128
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1129
+ };
1130
+ };
1131
+ /** @description Bad Request */
1132
+ 400: {
1133
+ content: {
1134
+ "application/json": components["schemas"]["ErrorEnvelope"];
1135
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1136
+ };
1137
+ };
1138
+ /** @description Unauthorized */
1139
+ 401: {
1140
+ content: {
1141
+ "application/json": components["schemas"]["ErrorEnvelope"];
1142
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1143
+ };
1144
+ };
1145
+ /** @description Forbidden */
1146
+ 403: {
1147
+ content: {
1148
+ "application/json": components["schemas"]["ErrorEnvelope"];
1149
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1150
+ };
1151
+ };
1152
+ };
1153
+ };
1154
+ };
1155
+ "/api/v2/MarketingService/MarketingLists/Count": {
1156
+ get: {
1157
+ parameters: {
1158
+ query: {
1159
+ tenantId: string;
1160
+ "api-version"?: string;
1161
+ };
1162
+ header?: {
1163
+ "x-api-version"?: string;
1164
+ };
1165
+ };
1166
+ responses: {
1167
+ /** @description OK */
1168
+ 200: {
1169
+ content: {
1170
+ "application/json": components["schemas"]["Int32Envelope"];
1171
+ "application/xml": components["schemas"]["Int32Envelope"];
1172
+ };
1173
+ };
1174
+ /** @description Bad Request */
1175
+ 400: {
1176
+ content: {
1177
+ "application/json": components["schemas"]["ErrorEnvelope"];
1178
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1179
+ };
1180
+ };
1181
+ /** @description Unauthorized */
1182
+ 401: {
1183
+ content: {
1184
+ "application/json": components["schemas"]["ErrorEnvelope"];
1185
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1186
+ };
1187
+ };
1188
+ /** @description Forbidden */
1189
+ 403: {
1190
+ content: {
1191
+ "application/json": components["schemas"]["ErrorEnvelope"];
1192
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1193
+ };
1194
+ };
1195
+ };
1196
+ };
1197
+ };
1198
+ "/api/v2/MarketingService/MarketingLists/{marketinglistId}": {
1199
+ get: {
1200
+ parameters: {
1201
+ query: {
1202
+ tenantId: string;
1203
+ "api-version"?: string;
1204
+ };
1205
+ header?: {
1206
+ "x-api-version"?: string;
1207
+ };
1208
+ path: {
1209
+ marketinglistId: string;
1210
+ };
1211
+ };
1212
+ responses: {
1213
+ /** @description OK */
1214
+ 200: {
1215
+ content: {
1216
+ "application/json": components["schemas"]["MarketingListDtoEnvelope"];
1217
+ "application/xml": components["schemas"]["MarketingListDtoEnvelope"];
1218
+ };
1219
+ };
1220
+ /** @description Bad Request */
1221
+ 400: {
1222
+ content: {
1223
+ "application/json": components["schemas"]["ErrorEnvelope"];
1224
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1225
+ };
1226
+ };
1227
+ /** @description Unauthorized */
1228
+ 401: {
1229
+ content: {
1230
+ "application/json": components["schemas"]["ErrorEnvelope"];
1231
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1232
+ };
1233
+ };
1234
+ /** @description Forbidden */
1235
+ 403: {
1236
+ content: {
1237
+ "application/json": components["schemas"]["ErrorEnvelope"];
1238
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1239
+ };
1240
+ };
1241
+ };
1242
+ };
1243
+ put: {
1244
+ parameters: {
1245
+ query: {
1246
+ tenantId: string;
1247
+ "api-version"?: string;
1248
+ };
1249
+ header?: {
1250
+ "x-api-version"?: string;
1251
+ };
1252
+ path: {
1253
+ marketinglistId: string;
1254
+ };
1255
+ };
1256
+ requestBody: {
1257
+ content: {
1258
+ "application/json": components["schemas"]["MarketingListUpdateDto"];
1259
+ "application/xml": components["schemas"]["MarketingListUpdateDto"];
1260
+ };
1261
+ };
1262
+ responses: {
1263
+ /** @description OK */
1264
+ 200: {
1265
+ content: {
1266
+ "application/json": components["schemas"]["EmptyEnvelope"];
1267
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1268
+ };
1269
+ };
1270
+ /** @description Bad Request */
1271
+ 400: {
1272
+ content: {
1273
+ "application/json": components["schemas"]["ErrorEnvelope"];
1274
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1275
+ };
1276
+ };
1277
+ /** @description Unauthorized */
1278
+ 401: {
1279
+ content: {
1280
+ "application/json": components["schemas"]["ErrorEnvelope"];
1281
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1282
+ };
1283
+ };
1284
+ /** @description Forbidden */
1285
+ 403: {
1286
+ content: {
1287
+ "application/json": components["schemas"]["ErrorEnvelope"];
1288
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1289
+ };
1290
+ };
1291
+ };
1292
+ };
1293
+ delete: {
1294
+ parameters: {
1295
+ query: {
1296
+ tenantId: string;
1297
+ "api-version"?: string;
1298
+ };
1299
+ header?: {
1300
+ "x-api-version"?: string;
1301
+ };
1302
+ path: {
1303
+ marketinglistId: string;
1304
+ };
1305
+ };
1306
+ responses: {
1307
+ /** @description OK */
1308
+ 200: {
1309
+ content: {
1310
+ "application/json": components["schemas"]["EmptyEnvelope"];
1311
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1312
+ };
1313
+ };
1314
+ /** @description Bad Request */
1315
+ 400: {
1316
+ content: {
1317
+ "application/json": components["schemas"]["ErrorEnvelope"];
1318
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1319
+ };
1320
+ };
1321
+ /** @description Unauthorized */
1322
+ 401: {
1323
+ content: {
1324
+ "application/json": components["schemas"]["ErrorEnvelope"];
1325
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1326
+ };
1327
+ };
1328
+ /** @description Forbidden */
1329
+ 403: {
1330
+ content: {
1331
+ "application/json": components["schemas"]["ErrorEnvelope"];
1332
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1333
+ };
1334
+ };
1335
+ };
1336
+ };
1337
+ };
1338
+ "/api/v2/MarketingService/Newsletters": {
1339
+ get: {
1340
+ parameters: {
1341
+ query: {
1342
+ tenantId: string;
1343
+ "api-version"?: string;
1344
+ };
1345
+ header?: {
1346
+ "x-api-version"?: string;
1347
+ };
1348
+ };
1349
+ responses: {
1350
+ /** @description Bad Request */
1351
+ 400: {
1352
+ content: {
1353
+ "application/json": components["schemas"]["ErrorEnvelope"];
1354
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1355
+ };
1356
+ };
1357
+ /** @description Unauthorized */
1358
+ 401: {
1359
+ content: {
1360
+ "application/json": components["schemas"]["ErrorEnvelope"];
1361
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1362
+ };
1363
+ };
1364
+ /** @description Forbidden */
1365
+ 403: {
1366
+ content: {
1367
+ "application/json": components["schemas"]["ErrorEnvelope"];
1368
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1369
+ };
1370
+ };
1371
+ };
1372
+ };
1373
+ post: {
1374
+ parameters: {
1375
+ query: {
1376
+ tenantId: string;
1377
+ "api-version"?: string;
1378
+ };
1379
+ header?: {
1380
+ "x-api-version"?: string;
1381
+ };
1382
+ };
1383
+ requestBody: {
1384
+ content: {
1385
+ "application/json": components["schemas"]["NewsletterCreateDto"];
1386
+ "application/xml": components["schemas"]["NewsletterCreateDto"];
1387
+ };
1388
+ };
1389
+ responses: {
1390
+ /** @description Created */
1391
+ 201: {
1392
+ content: {
1393
+ "application/json": components["schemas"]["EmptyEnvelope"];
1394
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1395
+ };
1396
+ };
1397
+ /** @description Bad Request */
1398
+ 400: {
1399
+ content: {
1400
+ "application/json": components["schemas"]["ErrorEnvelope"];
1401
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1402
+ };
1403
+ };
1404
+ /** @description Unauthorized */
1405
+ 401: {
1406
+ content: {
1407
+ "application/json": components["schemas"]["ErrorEnvelope"];
1408
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1409
+ };
1410
+ };
1411
+ /** @description Forbidden */
1412
+ 403: {
1413
+ content: {
1414
+ "application/json": components["schemas"]["ErrorEnvelope"];
1415
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1416
+ };
1417
+ };
1418
+ };
1419
+ };
1420
+ };
1421
+ "/api/v2/MarketingService/Newsletters/Count": {
1422
+ get: {
1423
+ parameters: {
1424
+ query: {
1425
+ tenantId: string;
1426
+ "api-version"?: string;
1427
+ };
1428
+ header?: {
1429
+ "x-api-version"?: string;
1430
+ };
1431
+ };
1432
+ responses: {
1433
+ /** @description OK */
1434
+ 200: {
1435
+ content: {
1436
+ "application/json": components["schemas"]["Int32Envelope"];
1437
+ "application/xml": components["schemas"]["Int32Envelope"];
1438
+ };
1439
+ };
1440
+ /** @description Bad Request */
1441
+ 400: {
1442
+ content: {
1443
+ "application/json": components["schemas"]["ErrorEnvelope"];
1444
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1445
+ };
1446
+ };
1447
+ /** @description Unauthorized */
1448
+ 401: {
1449
+ content: {
1450
+ "application/json": components["schemas"]["ErrorEnvelope"];
1451
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1452
+ };
1453
+ };
1454
+ /** @description Forbidden */
1455
+ 403: {
1456
+ content: {
1457
+ "application/json": components["schemas"]["ErrorEnvelope"];
1458
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1459
+ };
1460
+ };
1461
+ };
1462
+ };
1463
+ };
1464
+ "/api/v2/MarketingService/Newsletters/{newsletterId}": {
1465
+ get: {
1466
+ parameters: {
1467
+ query: {
1468
+ tenantId: string;
1469
+ "api-version"?: string;
1470
+ };
1471
+ header?: {
1472
+ "x-api-version"?: string;
1473
+ };
1474
+ path: {
1475
+ newsletterId: string;
1476
+ };
1477
+ };
1478
+ responses: {
1479
+ /** @description OK */
1480
+ 200: {
1481
+ content: {
1482
+ "application/json": components["schemas"]["NewsletterDtoEnvelope"];
1483
+ "application/xml": components["schemas"]["NewsletterDtoEnvelope"];
1484
+ };
1485
+ };
1486
+ /** @description Bad Request */
1487
+ 400: {
1488
+ content: {
1489
+ "application/json": components["schemas"]["ErrorEnvelope"];
1490
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1491
+ };
1492
+ };
1493
+ /** @description Unauthorized */
1494
+ 401: {
1495
+ content: {
1496
+ "application/json": components["schemas"]["ErrorEnvelope"];
1497
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1498
+ };
1499
+ };
1500
+ /** @description Forbidden */
1501
+ 403: {
1502
+ content: {
1503
+ "application/json": components["schemas"]["ErrorEnvelope"];
1504
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1505
+ };
1506
+ };
1507
+ };
1508
+ };
1509
+ put: {
1510
+ parameters: {
1511
+ query: {
1512
+ tenantId: string;
1513
+ "api-version"?: string;
1514
+ };
1515
+ header?: {
1516
+ "x-api-version"?: string;
1517
+ };
1518
+ path: {
1519
+ newsletterId: string;
1520
+ };
1521
+ };
1522
+ requestBody: {
1523
+ content: {
1524
+ "application/json": components["schemas"]["NewsletterUpdateDto"];
1525
+ "application/xml": components["schemas"]["NewsletterUpdateDto"];
1526
+ };
1527
+ };
1528
+ responses: {
1529
+ /** @description OK */
1530
+ 200: {
1531
+ content: {
1532
+ "application/json": components["schemas"]["EmptyEnvelope"];
1533
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1534
+ };
1535
+ };
1536
+ /** @description Bad Request */
1537
+ 400: {
1538
+ content: {
1539
+ "application/json": components["schemas"]["ErrorEnvelope"];
1540
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1541
+ };
1542
+ };
1543
+ /** @description Unauthorized */
1544
+ 401: {
1545
+ content: {
1546
+ "application/json": components["schemas"]["ErrorEnvelope"];
1547
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1548
+ };
1549
+ };
1550
+ /** @description Forbidden */
1551
+ 403: {
1552
+ content: {
1553
+ "application/json": components["schemas"]["ErrorEnvelope"];
1554
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1555
+ };
1556
+ };
1557
+ };
1558
+ };
1559
+ delete: {
1560
+ parameters: {
1561
+ query: {
1562
+ tenantId: string;
1563
+ "api-version"?: string;
1564
+ };
1565
+ header?: {
1566
+ "x-api-version"?: string;
1567
+ };
1568
+ path: {
1569
+ newsletterId: string;
1570
+ };
1571
+ };
1572
+ responses: {
1573
+ /** @description OK */
1574
+ 200: {
1575
+ content: {
1576
+ "application/json": components["schemas"]["EmptyEnvelope"];
1577
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1578
+ };
1579
+ };
1580
+ /** @description Bad Request */
1581
+ 400: {
1582
+ content: {
1583
+ "application/json": components["schemas"]["ErrorEnvelope"];
1584
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1585
+ };
1586
+ };
1587
+ /** @description Unauthorized */
1588
+ 401: {
1589
+ content: {
1590
+ "application/json": components["schemas"]["ErrorEnvelope"];
1591
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1592
+ };
1593
+ };
1594
+ /** @description Forbidden */
1595
+ 403: {
1596
+ content: {
1597
+ "application/json": components["schemas"]["ErrorEnvelope"];
1598
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1599
+ };
1600
+ };
1601
+ };
1602
+ };
1603
+ };
1604
+ "/api/v2/MarketingService/SocialMediaPosts": {
1605
+ get: {
1606
+ parameters: {
1607
+ query: {
1608
+ tenantId: string;
1609
+ "api-version"?: string;
1610
+ };
1611
+ header?: {
1612
+ "x-api-version"?: string;
1613
+ };
1614
+ };
1615
+ responses: {
1616
+ /** @description OK */
1617
+ 200: {
1618
+ content: {
1619
+ "application/json": components["schemas"]["SocialMediaPostDtoListEnvelope"];
1620
+ "application/xml": components["schemas"]["SocialMediaPostDtoListEnvelope"];
1621
+ };
1622
+ };
1623
+ /** @description Unauthorized */
1624
+ 401: {
1625
+ content: {
1626
+ "application/json": components["schemas"]["ErrorEnvelope"];
1627
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1628
+ };
1629
+ };
1630
+ /** @description Forbidden */
1631
+ 403: {
1632
+ content: {
1633
+ "application/json": components["schemas"]["ErrorEnvelope"];
1634
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1635
+ };
1636
+ };
1637
+ };
1638
+ };
1639
+ post: {
1640
+ parameters: {
1641
+ query: {
1642
+ tenantId: string;
1643
+ "api-version"?: string;
1644
+ };
1645
+ header?: {
1646
+ "x-api-version"?: string;
1647
+ };
1648
+ };
1649
+ requestBody: {
1650
+ content: {
1651
+ "application/json": components["schemas"]["SocialMediaPostCreateDto"];
1652
+ "application/xml": components["schemas"]["SocialMediaPostCreateDto"];
1653
+ };
1654
+ };
1655
+ responses: {
1656
+ /** @description Created */
1657
+ 201: {
1658
+ content: {
1659
+ "application/json": components["schemas"]["EmptyEnvelope"];
1660
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1661
+ };
1662
+ };
1663
+ /** @description Bad Request */
1664
+ 400: {
1665
+ content: {
1666
+ "application/json": components["schemas"]["ErrorEnvelope"];
1667
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1668
+ };
1669
+ };
1670
+ /** @description Unauthorized */
1671
+ 401: {
1672
+ content: {
1673
+ "application/json": components["schemas"]["ErrorEnvelope"];
1674
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1675
+ };
1676
+ };
1677
+ /** @description Forbidden */
1678
+ 403: {
1679
+ content: {
1680
+ "application/json": components["schemas"]["ErrorEnvelope"];
1681
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1682
+ };
1683
+ };
1684
+ };
1685
+ };
1686
+ };
1687
+ "/api/v2/MarketingService/SocialMediaPosts/Count": {
1688
+ get: {
1689
+ parameters: {
1690
+ query: {
1691
+ tenantId: string;
1692
+ "api-version"?: string;
1693
+ };
1694
+ header?: {
1695
+ "x-api-version"?: string;
1696
+ };
1697
+ };
1698
+ responses: {
1699
+ /** @description OK */
1700
+ 200: {
1701
+ content: {
1702
+ "application/json": components["schemas"]["Int32Envelope"];
1703
+ "application/xml": components["schemas"]["Int32Envelope"];
1704
+ };
1705
+ };
1706
+ /** @description Bad Request */
1707
+ 400: {
1708
+ content: {
1709
+ "application/json": components["schemas"]["ErrorEnvelope"];
1710
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1711
+ };
1712
+ };
1713
+ /** @description Unauthorized */
1714
+ 401: {
1715
+ content: {
1716
+ "application/json": components["schemas"]["ErrorEnvelope"];
1717
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1718
+ };
1719
+ };
1720
+ /** @description Forbidden */
1721
+ 403: {
1722
+ content: {
1723
+ "application/json": components["schemas"]["ErrorEnvelope"];
1724
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1725
+ };
1726
+ };
1727
+ };
1728
+ };
1729
+ };
1730
+ "/api/v2/MarketingService/SocialMediaPosts/{socialmediapostId}": {
1731
+ get: {
1732
+ parameters: {
1733
+ query: {
1734
+ tenantId: string;
1735
+ "api-version"?: string;
1736
+ };
1737
+ header?: {
1738
+ "x-api-version"?: string;
1739
+ };
1740
+ path: {
1741
+ socialmediapostId: string;
1742
+ };
1743
+ };
1744
+ responses: {
1745
+ /** @description OK */
1746
+ 200: {
1747
+ content: {
1748
+ "application/json": components["schemas"]["SocialMediaPostDtoEnvelope"];
1749
+ "application/xml": components["schemas"]["SocialMediaPostDtoEnvelope"];
1750
+ };
1751
+ };
1752
+ /** @description Bad Request */
1753
+ 400: {
1754
+ content: {
1755
+ "application/json": components["schemas"]["ErrorEnvelope"];
1756
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1757
+ };
1758
+ };
1759
+ /** @description Unauthorized */
1760
+ 401: {
1761
+ content: {
1762
+ "application/json": components["schemas"]["ErrorEnvelope"];
1763
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1764
+ };
1765
+ };
1766
+ /** @description Forbidden */
1767
+ 403: {
1768
+ content: {
1769
+ "application/json": components["schemas"]["ErrorEnvelope"];
1770
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1771
+ };
1772
+ };
1773
+ };
1774
+ };
1775
+ put: {
1776
+ parameters: {
1777
+ query: {
1778
+ tenantId: string;
1779
+ "api-version"?: string;
1780
+ };
1781
+ header?: {
1782
+ "x-api-version"?: string;
1783
+ };
1784
+ path: {
1785
+ socialmediapostId: string;
1786
+ };
1787
+ };
1788
+ requestBody: {
1789
+ content: {
1790
+ "application/json": components["schemas"]["SocialMediaPostUpdateDto"];
1791
+ "application/xml": components["schemas"]["SocialMediaPostUpdateDto"];
1792
+ };
1793
+ };
1794
+ responses: {
1795
+ /** @description OK */
1796
+ 200: {
1797
+ content: {
1798
+ "application/json": components["schemas"]["EmptyEnvelope"];
1799
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1800
+ };
1801
+ };
1802
+ /** @description Bad Request */
1803
+ 400: {
1804
+ content: {
1805
+ "application/json": components["schemas"]["ErrorEnvelope"];
1806
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1807
+ };
1808
+ };
1809
+ /** @description Unauthorized */
1810
+ 401: {
1811
+ content: {
1812
+ "application/json": components["schemas"]["ErrorEnvelope"];
1813
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1814
+ };
1815
+ };
1816
+ /** @description Forbidden */
1817
+ 403: {
1818
+ content: {
1819
+ "application/json": components["schemas"]["ErrorEnvelope"];
1820
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1821
+ };
1822
+ };
1823
+ };
1824
+ };
1825
+ delete: {
1826
+ parameters: {
1827
+ query: {
1828
+ tenantId: string;
1829
+ "api-version"?: string;
1830
+ };
1831
+ header?: {
1832
+ "x-api-version"?: string;
1833
+ };
1834
+ path: {
1835
+ socialmediapostId: string;
1836
+ };
1837
+ };
1838
+ responses: {
1839
+ /** @description OK */
1840
+ 200: {
1841
+ content: {
1842
+ "application/json": components["schemas"]["EmptyEnvelope"];
1843
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1844
+ };
1845
+ };
1846
+ /** @description Bad Request */
1847
+ 400: {
1848
+ content: {
1849
+ "application/json": components["schemas"]["ErrorEnvelope"];
1850
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1851
+ };
1852
+ };
1853
+ /** @description Unauthorized */
1854
+ 401: {
1855
+ content: {
1856
+ "application/json": components["schemas"]["ErrorEnvelope"];
1857
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1858
+ };
1859
+ };
1860
+ /** @description Forbidden */
1861
+ 403: {
1862
+ content: {
1863
+ "application/json": components["schemas"]["ErrorEnvelope"];
1864
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1865
+ };
1866
+ };
1867
+ };
1868
+ };
1869
+ };
1870
+ "/api/v2/MarketingService/SocialPostBuckets": {
1871
+ get: {
1872
+ parameters: {
1873
+ query: {
1874
+ tenantId: string;
1875
+ "api-version"?: string;
1876
+ };
1877
+ header?: {
1878
+ "x-api-version"?: string;
1879
+ };
1880
+ };
1881
+ responses: {
1882
+ /** @description OK */
1883
+ 200: {
1884
+ content: {
1885
+ "application/json": components["schemas"]["SocialPostBucketDtoListEnvelope"];
1886
+ "application/xml": components["schemas"]["SocialPostBucketDtoListEnvelope"];
1887
+ };
1888
+ };
1889
+ /** @description Unauthorized */
1890
+ 401: {
1891
+ content: {
1892
+ "application/json": components["schemas"]["ErrorEnvelope"];
1893
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1894
+ };
1895
+ };
1896
+ /** @description Forbidden */
1897
+ 403: {
1898
+ content: {
1899
+ "application/json": components["schemas"]["ErrorEnvelope"];
1900
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1901
+ };
1902
+ };
1903
+ };
1904
+ };
1905
+ post: {
1906
+ parameters: {
1907
+ query: {
1908
+ tenantId: string;
1909
+ "api-version"?: string;
1910
+ };
1911
+ header?: {
1912
+ "x-api-version"?: string;
1913
+ };
1914
+ };
1915
+ requestBody: {
1916
+ content: {
1917
+ "application/json": components["schemas"]["SocialPostBucketCreateDto"];
1918
+ "application/xml": components["schemas"]["SocialPostBucketCreateDto"];
1919
+ };
1920
+ };
1921
+ responses: {
1922
+ /** @description Created */
1923
+ 201: {
1924
+ content: {
1925
+ "application/json": components["schemas"]["EmptyEnvelope"];
1926
+ "application/xml": components["schemas"]["EmptyEnvelope"];
1927
+ };
1928
+ };
1929
+ /** @description Bad Request */
1930
+ 400: {
1931
+ content: {
1932
+ "application/json": components["schemas"]["ErrorEnvelope"];
1933
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1934
+ };
1935
+ };
1936
+ /** @description Unauthorized */
1937
+ 401: {
1938
+ content: {
1939
+ "application/json": components["schemas"]["ErrorEnvelope"];
1940
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1941
+ };
1942
+ };
1943
+ /** @description Forbidden */
1944
+ 403: {
1945
+ content: {
1946
+ "application/json": components["schemas"]["ErrorEnvelope"];
1947
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1948
+ };
1949
+ };
1950
+ };
1951
+ };
1952
+ };
1953
+ "/api/v2/MarketingService/SocialPostBuckets/Count": {
1954
+ get: {
1955
+ parameters: {
1956
+ query: {
1957
+ tenantId: string;
1958
+ "api-version"?: string;
1959
+ };
1960
+ header?: {
1961
+ "x-api-version"?: string;
1962
+ };
1963
+ };
1964
+ responses: {
1965
+ /** @description OK */
1966
+ 200: {
1967
+ content: {
1968
+ "application/json": components["schemas"]["Int32Envelope"];
1969
+ "application/xml": components["schemas"]["Int32Envelope"];
1970
+ };
1971
+ };
1972
+ /** @description Bad Request */
1973
+ 400: {
1974
+ content: {
1975
+ "application/json": components["schemas"]["ErrorEnvelope"];
1976
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1977
+ };
1978
+ };
1979
+ /** @description Unauthorized */
1980
+ 401: {
1981
+ content: {
1982
+ "application/json": components["schemas"]["ErrorEnvelope"];
1983
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1984
+ };
1985
+ };
1986
+ /** @description Forbidden */
1987
+ 403: {
1988
+ content: {
1989
+ "application/json": components["schemas"]["ErrorEnvelope"];
1990
+ "application/xml": components["schemas"]["ErrorEnvelope"];
1991
+ };
1992
+ };
1993
+ };
1994
+ };
1995
+ };
1996
+ "/api/v2/MarketingService/SocialPostBuckets/{socialpostbucketId}": {
1997
+ get: {
1998
+ parameters: {
1999
+ query: {
2000
+ tenantId: string;
2001
+ "api-version"?: string;
2002
+ };
2003
+ header?: {
2004
+ "x-api-version"?: string;
2005
+ };
2006
+ path: {
2007
+ socialpostbucketId: string;
2008
+ };
2009
+ };
2010
+ responses: {
2011
+ /** @description OK */
2012
+ 200: {
2013
+ content: {
2014
+ "application/json": components["schemas"]["SocialPostBucketDtoEnvelope"];
2015
+ "application/xml": components["schemas"]["SocialPostBucketDtoEnvelope"];
2016
+ };
2017
+ };
2018
+ /** @description Bad Request */
2019
+ 400: {
2020
+ content: {
2021
+ "application/json": components["schemas"]["ErrorEnvelope"];
2022
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2023
+ };
2024
+ };
2025
+ /** @description Unauthorized */
2026
+ 401: {
2027
+ content: {
2028
+ "application/json": components["schemas"]["ErrorEnvelope"];
2029
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2030
+ };
2031
+ };
2032
+ /** @description Forbidden */
2033
+ 403: {
2034
+ content: {
2035
+ "application/json": components["schemas"]["ErrorEnvelope"];
2036
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2037
+ };
2038
+ };
2039
+ };
2040
+ };
2041
+ put: {
2042
+ parameters: {
2043
+ query: {
2044
+ tenantId: string;
2045
+ "api-version"?: string;
2046
+ };
2047
+ header?: {
2048
+ "x-api-version"?: string;
2049
+ };
2050
+ path: {
2051
+ socialpostbucketId: string;
2052
+ };
2053
+ };
2054
+ requestBody: {
2055
+ content: {
2056
+ "application/json": components["schemas"]["SocialPostBucketUpdateDto"];
2057
+ "application/xml": components["schemas"]["SocialPostBucketUpdateDto"];
2058
+ };
2059
+ };
2060
+ responses: {
2061
+ /** @description OK */
2062
+ 200: {
2063
+ content: {
2064
+ "application/json": components["schemas"]["EmptyEnvelope"];
2065
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2066
+ };
2067
+ };
2068
+ /** @description Bad Request */
2069
+ 400: {
2070
+ content: {
2071
+ "application/json": components["schemas"]["ErrorEnvelope"];
2072
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2073
+ };
2074
+ };
2075
+ /** @description Unauthorized */
2076
+ 401: {
2077
+ content: {
2078
+ "application/json": components["schemas"]["ErrorEnvelope"];
2079
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2080
+ };
2081
+ };
2082
+ /** @description Forbidden */
2083
+ 403: {
2084
+ content: {
2085
+ "application/json": components["schemas"]["ErrorEnvelope"];
2086
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2087
+ };
2088
+ };
2089
+ };
2090
+ };
2091
+ delete: {
2092
+ parameters: {
2093
+ query: {
2094
+ tenantId: string;
2095
+ "api-version"?: string;
2096
+ };
2097
+ header?: {
2098
+ "x-api-version"?: string;
2099
+ };
2100
+ path: {
2101
+ socialpostbucketId: string;
2102
+ };
2103
+ };
2104
+ responses: {
2105
+ /** @description OK */
2106
+ 200: {
2107
+ content: {
2108
+ "application/json": components["schemas"]["EmptyEnvelope"];
2109
+ "application/xml": components["schemas"]["EmptyEnvelope"];
2110
+ };
2111
+ };
2112
+ /** @description Bad Request */
2113
+ 400: {
2114
+ content: {
2115
+ "application/json": components["schemas"]["ErrorEnvelope"];
2116
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2117
+ };
2118
+ };
2119
+ /** @description Unauthorized */
2120
+ 401: {
2121
+ content: {
2122
+ "application/json": components["schemas"]["ErrorEnvelope"];
2123
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2124
+ };
2125
+ };
2126
+ /** @description Forbidden */
2127
+ 403: {
2128
+ content: {
2129
+ "application/json": components["schemas"]["ErrorEnvelope"];
2130
+ "application/xml": components["schemas"]["ErrorEnvelope"];
2131
+ };
2132
+ };
2133
+ };
2134
+ };
2135
+ };
2136
+ "/api/v2/MarketingService/TrackingPixels/{pixelId}": {
2137
+ get: {
2138
+ parameters: {
2139
+ query?: {
2140
+ "api-version"?: string;
2141
+ };
2142
+ header?: {
2143
+ "x-api-version"?: string;
2144
+ };
2145
+ path: {
2146
+ pixelId: string;
2147
+ };
2148
+ };
2149
+ responses: {
2150
+ /** @description OK */
2151
+ 200: {
2152
+ content: {
2153
+ "application/json": components["schemas"]["OrderDtoEnvelope"];
2154
+ "application/xml": components["schemas"]["OrderDtoEnvelope"];
2155
+ };
2156
+ };
2157
+ };
2158
+ };
2159
+ };
2160
+ }
2161
+
2162
+ export type webhooks = Record<string, never>;
2163
+
2164
+ export interface components {
2165
+ schemas: {
2166
+ Currency: {
2167
+ code?: string | null;
2168
+ country?: string | null;
2169
+ };
2170
+ EmailGroupCreateDto: {
2171
+ /** Format: uuid */
2172
+ id?: string;
2173
+ /** Format: date-time */
2174
+ timestamp?: string;
2175
+ name?: string | null;
2176
+ description?: string | null;
2177
+ enabled?: boolean;
2178
+ tenantId?: string | null;
2179
+ enrolmentId?: string | null;
2180
+ };
2181
+ EmailGroupDto: {
2182
+ id?: string | null;
2183
+ /** Format: date-time */
2184
+ timestamp?: string | null;
2185
+ tenantId?: string | null;
2186
+ enrolmentId?: string | null;
2187
+ name?: string | null;
2188
+ description?: string | null;
2189
+ enabled?: boolean;
2190
+ };
2191
+ EmailGroupDtoEnvelope: {
2192
+ isSuccess?: boolean;
2193
+ errorMessage?: string | null;
2194
+ correlationId?: string | null;
2195
+ /** Format: date-time */
2196
+ timestamp?: string;
2197
+ activityId?: string | null;
2198
+ result?: components["schemas"]["EmailGroupDto"];
2199
+ };
2200
+ EmailGroupDtoListEnvelope: {
2201
+ isSuccess?: boolean;
2202
+ errorMessage?: string | null;
2203
+ correlationId?: string | null;
2204
+ /** Format: date-time */
2205
+ timestamp?: string;
2206
+ activityId?: string | null;
2207
+ result?: components["schemas"]["EmailGroupDto"][] | null;
2208
+ };
2209
+ EmailGroupUpdateDto: {
2210
+ name?: string | null;
2211
+ description?: string | null;
2212
+ enabled?: boolean;
2213
+ tenantId?: string | null;
2214
+ enrolmentId?: string | null;
2215
+ };
2216
+ EmailSignatureCreateDto: {
2217
+ /** Format: uuid */
2218
+ id?: string;
2219
+ /** Format: date-time */
2220
+ timestamp?: string;
2221
+ tenantId?: string | null;
2222
+ enrolmentId?: string | null;
2223
+ title?: string | null;
2224
+ authorId?: string | null;
2225
+ description?: string | null;
2226
+ htmlContent?: string | null;
2227
+ featuredImageUrl?: string | null;
2228
+ };
2229
+ EmailSignatureDto: {
2230
+ id?: string | null;
2231
+ /** Format: date-time */
2232
+ timestamp?: string | null;
2233
+ /** Format: int32 */
2234
+ order?: number;
2235
+ slug?: string | null;
2236
+ name?: string | null;
2237
+ title?: string | null;
2238
+ excerpt?: string | null;
2239
+ password?: string | null;
2240
+ description?: string | null;
2241
+ highlightImage?: string | null;
2242
+ canonicalUrl?: string | null;
2243
+ seoTitle?: string | null;
2244
+ seoKeyWords?: string | null;
2245
+ seoKeyPhrases?: string | null;
2246
+ metaDescription?: string | null;
2247
+ twitterImage?: string | null;
2248
+ twitterTitle?: string | null;
2249
+ twitterDescription?: string | null;
2250
+ facebookImage?: string | null;
2251
+ facebookTitle?: string | null;
2252
+ facebookDescription?: string | null;
2253
+ featuredImageUrl?: string | null;
2254
+ content?: string | null;
2255
+ code?: string | null;
2256
+ namespace?: string | null;
2257
+ typeName?: string | null;
2258
+ generatedCode?: string | null;
2259
+ compilationPath?: string | null;
2260
+ htmlContent?: string | null;
2261
+ cSharpContent?: string | null;
2262
+ razorContent?: string | null;
2263
+ cssContent?: string | null;
2264
+ jsContent?: string | null;
2265
+ cssFiles?: string | null;
2266
+ jsFiles?: string | null;
2267
+ razorGeneratedCode?: string | null;
2268
+ cSharpGeneratedCode?: string | null;
2269
+ template?: boolean;
2270
+ default?: boolean;
2271
+ enable?: boolean;
2272
+ enableComments?: boolean;
2273
+ displaySocialBox?: boolean;
2274
+ published?: boolean;
2275
+ inTrashCan?: boolean;
2276
+ systemLocked?: boolean;
2277
+ allowPingBacks?: boolean;
2278
+ allowTrackbacks?: boolean;
2279
+ cornerstoneContent?: boolean;
2280
+ isEssentialContent?: boolean;
2281
+ allowSearchEngineIndexing?: boolean;
2282
+ tenantId?: string | null;
2283
+ webPortalId?: string | null;
2284
+ websiteThemeId?: string | null;
2285
+ enrollmentId?: string | null;
2286
+ socialProfileId?: string | null;
2287
+ parentWebContentId?: string | null;
2288
+ parentWebContentVersionId?: string | null;
2289
+ };
2290
+ EmailSignatureDtoEnvelope: {
2291
+ isSuccess?: boolean;
2292
+ errorMessage?: string | null;
2293
+ correlationId?: string | null;
2294
+ /** Format: date-time */
2295
+ timestamp?: string;
2296
+ activityId?: string | null;
2297
+ result?: components["schemas"]["EmailSignatureDto"];
2298
+ };
2299
+ EmailSignatureDtoListEnvelope: {
2300
+ isSuccess?: boolean;
2301
+ errorMessage?: string | null;
2302
+ correlationId?: string | null;
2303
+ /** Format: date-time */
2304
+ timestamp?: string;
2305
+ activityId?: string | null;
2306
+ result?: components["schemas"]["EmailSignatureDto"][] | null;
2307
+ };
2308
+ EmailSignatureUpdateDto: {
2309
+ /** Format: int32 */
2310
+ order?: number;
2311
+ slug?: string | null;
2312
+ name?: string | null;
2313
+ title?: string | null;
2314
+ excerpt?: string | null;
2315
+ password?: string | null;
2316
+ description?: string | null;
2317
+ highlightImage?: string | null;
2318
+ canonicalUrl?: string | null;
2319
+ seoTitle?: string | null;
2320
+ seoKeyWords?: string | null;
2321
+ seoKeyPhrases?: string | null;
2322
+ metaDescription?: string | null;
2323
+ twitterImage?: string | null;
2324
+ twitterTitle?: string | null;
2325
+ twitterDescription?: string | null;
2326
+ facebookImage?: string | null;
2327
+ facebookTitle?: string | null;
2328
+ facebookDescription?: string | null;
2329
+ featuredImageURL?: string | null;
2330
+ content?: string | null;
2331
+ code?: string | null;
2332
+ namespace?: string | null;
2333
+ typeName?: string | null;
2334
+ generatedCode?: string | null;
2335
+ compilationPath?: string | null;
2336
+ htmlContent?: string | null;
2337
+ cSharpContent?: string | null;
2338
+ razorContent?: string | null;
2339
+ cssContent?: string | null;
2340
+ jsContent?: string | null;
2341
+ cssFiles?: string | null;
2342
+ jsFiles?: string | null;
2343
+ razorGeneratedCode?: string | null;
2344
+ cSharpGeneratedCode?: string | null;
2345
+ /** Format: int32 */
2346
+ precompiledLogicSize?: number;
2347
+ /** Format: int64 */
2348
+ precompiledLogicSizeLong?: number;
2349
+ /** Format: int32 */
2350
+ precompiledViewSize?: number;
2351
+ /** Format: int64 */
2352
+ precompiledViewSizeLong?: number;
2353
+ /** Format: int32 */
2354
+ precompiledLogicViewSize?: number;
2355
+ template?: boolean;
2356
+ default?: boolean;
2357
+ enable?: boolean;
2358
+ enableComments?: boolean;
2359
+ displaySocialBox?: boolean;
2360
+ published?: boolean;
2361
+ inTrashCan?: boolean;
2362
+ systemLocked?: boolean;
2363
+ allowPingbacks?: boolean;
2364
+ allowTrackbacks?: boolean;
2365
+ cornerstoneContent?: boolean;
2366
+ isEssentialContent?: boolean;
2367
+ allowSearchEngineIndexing?: boolean;
2368
+ };
2369
+ EmailTemplateCreateDto: {
2370
+ /** Format: uuid */
2371
+ id?: string;
2372
+ /** Format: date-time */
2373
+ timestamp?: string;
2374
+ tenantId?: string | null;
2375
+ enrolmentId?: string | null;
2376
+ title?: string | null;
2377
+ authorId?: string | null;
2378
+ description?: string | null;
2379
+ htmlContent?: string | null;
2380
+ featuredImageUrl?: string | null;
2381
+ marketingCampaignId?: string | null;
2382
+ };
2383
+ EmailTemplateDto: {
2384
+ id?: string | null;
2385
+ /** Format: date-time */
2386
+ timestamp?: string | null;
2387
+ /** Format: int32 */
2388
+ order?: number;
2389
+ slug?: string | null;
2390
+ name?: string | null;
2391
+ title?: string | null;
2392
+ excerpt?: string | null;
2393
+ password?: string | null;
2394
+ description?: string | null;
2395
+ highlightImage?: string | null;
2396
+ canonicalUrl?: string | null;
2397
+ seoTitle?: string | null;
2398
+ seoKeyWords?: string | null;
2399
+ seoKeyPhrases?: string | null;
2400
+ metaDescription?: string | null;
2401
+ twitterImage?: string | null;
2402
+ twitterTitle?: string | null;
2403
+ twitterDescription?: string | null;
2404
+ facebookImage?: string | null;
2405
+ facebookTitle?: string | null;
2406
+ facebookDescription?: string | null;
2407
+ featuredImageUrl?: string | null;
2408
+ content?: string | null;
2409
+ code?: string | null;
2410
+ namespace?: string | null;
2411
+ typeName?: string | null;
2412
+ generatedCode?: string | null;
2413
+ compilationPath?: string | null;
2414
+ htmlContent?: string | null;
2415
+ cSharpContent?: string | null;
2416
+ razorContent?: string | null;
2417
+ cssContent?: string | null;
2418
+ jsContent?: string | null;
2419
+ cssFiles?: string | null;
2420
+ jsFiles?: string | null;
2421
+ razorGeneratedCode?: string | null;
2422
+ cSharpGeneratedCode?: string | null;
2423
+ template?: boolean;
2424
+ default?: boolean;
2425
+ enable?: boolean;
2426
+ enableComments?: boolean;
2427
+ displaySocialBox?: boolean;
2428
+ published?: boolean;
2429
+ inTrashCan?: boolean;
2430
+ systemLocked?: boolean;
2431
+ allowPingBacks?: boolean;
2432
+ allowTrackbacks?: boolean;
2433
+ cornerstoneContent?: boolean;
2434
+ isEssentialContent?: boolean;
2435
+ allowSearchEngineIndexing?: boolean;
2436
+ tenantId?: string | null;
2437
+ webPortalId?: string | null;
2438
+ websiteThemeId?: string | null;
2439
+ enrollmentId?: string | null;
2440
+ socialProfileId?: string | null;
2441
+ parentWebContentId?: string | null;
2442
+ parentWebContentVersionId?: string | null;
2443
+ marketingCampaignId?: string | null;
2444
+ marketingCampaignName?: string | null;
2445
+ };
2446
+ EmailTemplateDtoEnvelope: {
2447
+ isSuccess?: boolean;
2448
+ errorMessage?: string | null;
2449
+ correlationId?: string | null;
2450
+ /** Format: date-time */
2451
+ timestamp?: string;
2452
+ activityId?: string | null;
2453
+ result?: components["schemas"]["EmailTemplateDto"];
2454
+ };
2455
+ EmailTemplateDtoListEnvelope: {
2456
+ isSuccess?: boolean;
2457
+ errorMessage?: string | null;
2458
+ correlationId?: string | null;
2459
+ /** Format: date-time */
2460
+ timestamp?: string;
2461
+ activityId?: string | null;
2462
+ result?: components["schemas"]["EmailTemplateDto"][] | null;
2463
+ };
2464
+ EmailTemplateUpdateDto: {
2465
+ /** Format: int32 */
2466
+ order?: number;
2467
+ slug?: string | null;
2468
+ name?: string | null;
2469
+ title?: string | null;
2470
+ excerpt?: string | null;
2471
+ password?: string | null;
2472
+ description?: string | null;
2473
+ highlightImage?: string | null;
2474
+ canonicalUrl?: string | null;
2475
+ seoTitle?: string | null;
2476
+ seoKeyWords?: string | null;
2477
+ seoKeyPhrases?: string | null;
2478
+ metaDescription?: string | null;
2479
+ twitterImage?: string | null;
2480
+ twitterTitle?: string | null;
2481
+ twitterDescription?: string | null;
2482
+ facebookImage?: string | null;
2483
+ facebookTitle?: string | null;
2484
+ facebookDescription?: string | null;
2485
+ featuredImageURL?: string | null;
2486
+ content?: string | null;
2487
+ code?: string | null;
2488
+ namespace?: string | null;
2489
+ typeName?: string | null;
2490
+ generatedCode?: string | null;
2491
+ compilationPath?: string | null;
2492
+ htmlContent?: string | null;
2493
+ cSharpContent?: string | null;
2494
+ razorContent?: string | null;
2495
+ cssContent?: string | null;
2496
+ jsContent?: string | null;
2497
+ cssFiles?: string | null;
2498
+ jsFiles?: string | null;
2499
+ razorGeneratedCode?: string | null;
2500
+ cSharpGeneratedCode?: string | null;
2501
+ /** Format: int32 */
2502
+ precompiledLogicSize?: number;
2503
+ /** Format: int64 */
2504
+ precompiledLogicSizeLong?: number;
2505
+ /** Format: int32 */
2506
+ precompiledViewSize?: number;
2507
+ /** Format: int64 */
2508
+ precompiledViewSizeLong?: number;
2509
+ /** Format: int32 */
2510
+ precompiledLogicViewSize?: number;
2511
+ template?: boolean;
2512
+ default?: boolean;
2513
+ enable?: boolean;
2514
+ enableComments?: boolean;
2515
+ displaySocialBox?: boolean;
2516
+ published?: boolean;
2517
+ inTrashCan?: boolean;
2518
+ systemLocked?: boolean;
2519
+ allowPingbacks?: boolean;
2520
+ allowTrackbacks?: boolean;
2521
+ cornerstoneContent?: boolean;
2522
+ isEssentialContent?: boolean;
2523
+ allowSearchEngineIndexing?: boolean;
2524
+ marketingCampaignId?: string | null;
2525
+ };
2526
+ EmptyEnvelope: {
2527
+ isSuccess?: boolean;
2528
+ errorMessage?: string | null;
2529
+ correlationId?: string | null;
2530
+ /** Format: date-time */
2531
+ timestamp?: string;
2532
+ activityId?: string | null;
2533
+ };
2534
+ ErrorEnvelope: {
2535
+ isSuccess?: boolean;
2536
+ errorMessage?: string | null;
2537
+ correlationId?: string | null;
2538
+ /** Format: date-time */
2539
+ timestamp?: string;
2540
+ activityId?: string | null;
2541
+ };
2542
+ Int32Envelope: {
2543
+ isSuccess?: boolean;
2544
+ errorMessage?: string | null;
2545
+ correlationId?: string | null;
2546
+ /** Format: date-time */
2547
+ timestamp?: string;
2548
+ activityId?: string | null;
2549
+ /** Format: int32 */
2550
+ result?: number;
2551
+ };
2552
+ MarketingCampaignCreateDto: {
2553
+ /** Format: uuid */
2554
+ id?: string;
2555
+ /** Format: date-time */
2556
+ timestamp?: string;
2557
+ name?: string | null;
2558
+ offer?: string | null;
2559
+ active?: boolean;
2560
+ /** Format: date-time */
2561
+ proposedStart?: string;
2562
+ /** Format: date-time */
2563
+ proposedEnd?: string;
2564
+ /** Format: date-time */
2565
+ actualStart?: string;
2566
+ /** Format: date-time */
2567
+ actualEnd?: string;
2568
+ code?: string | null;
2569
+ /** Format: double */
2570
+ allocatedBudget?: number;
2571
+ /** Format: double */
2572
+ activityCost?: number;
2573
+ /** Format: double */
2574
+ miscCost?: number;
2575
+ /** Format: double */
2576
+ expectedResponsePercent?: number;
2577
+ marketingAreaId?: string | null;
2578
+ currencyId?: string | null;
2579
+ tenantId?: string | null;
2580
+ enrolmentId?: string | null;
2581
+ };
2582
+ MarketingCampaignDto: {
2583
+ id?: string | null;
2584
+ /** Format: date-time */
2585
+ timestamp?: string | null;
2586
+ name?: string | null;
2587
+ offer?: string | null;
2588
+ active?: boolean;
2589
+ /** Format: date-time */
2590
+ proposedStart?: string;
2591
+ /** Format: date-time */
2592
+ proposedEnd?: string;
2593
+ /** Format: date-time */
2594
+ actualStart?: string;
2595
+ /** Format: date-time */
2596
+ actualEnd?: string;
2597
+ code?: string | null;
2598
+ /** Format: double */
2599
+ allocatedBudget?: number;
2600
+ /** Format: double */
2601
+ activityCost?: number;
2602
+ /** Format: double */
2603
+ miscCost?: number;
2604
+ /** Format: double */
2605
+ expectedResponsePercent?: number;
2606
+ marketingAreaId?: string | null;
2607
+ currencyId?: string | null;
2608
+ tenantId?: string | null;
2609
+ enrolmentId?: string | null;
2610
+ };
2611
+ MarketingCampaignDtoEnvelope: {
2612
+ isSuccess?: boolean;
2613
+ errorMessage?: string | null;
2614
+ correlationId?: string | null;
2615
+ /** Format: date-time */
2616
+ timestamp?: string;
2617
+ activityId?: string | null;
2618
+ result?: components["schemas"]["MarketingCampaignDto"];
2619
+ };
2620
+ MarketingCampaignUpdateDto: {
2621
+ name?: string | null;
2622
+ offer?: string | null;
2623
+ active?: boolean;
2624
+ /** Format: date-time */
2625
+ proposedStart?: string;
2626
+ /** Format: date-time */
2627
+ proposedEnd?: string;
2628
+ /** Format: date-time */
2629
+ actualStart?: string;
2630
+ /** Format: date-time */
2631
+ actualEnd?: string;
2632
+ code?: string | null;
2633
+ /** Format: double */
2634
+ allocatedBudget?: number;
2635
+ /** Format: double */
2636
+ activityCost?: number;
2637
+ /** Format: double */
2638
+ miscCost?: number;
2639
+ /** Format: double */
2640
+ expectedResponsePercent?: number;
2641
+ marketingAreaId?: string | null;
2642
+ currencyId?: string | null;
2643
+ tenantId?: string | null;
2644
+ enrolmentId?: string | null;
2645
+ };
2646
+ MarketingListCreateDto: {
2647
+ /** Format: uuid */
2648
+ id?: string;
2649
+ /** Format: date-time */
2650
+ timestamp?: string;
2651
+ locked?: boolean;
2652
+ name?: string | null;
2653
+ purpose?: string | null;
2654
+ description?: string | null;
2655
+ source?: string | null;
2656
+ /** Format: double */
2657
+ cost?: number;
2658
+ /** Format: date-time */
2659
+ modifiedOn?: string;
2660
+ /** Format: date-time */
2661
+ lastUsedOn?: string;
2662
+ currencyId?: string | null;
2663
+ tenantId?: string | null;
2664
+ enrolmentId?: string | null;
2665
+ /**
2666
+ * Format: int32
2667
+ * @enum {integer}
2668
+ */
2669
+ marketingListType?: 0 | 1;
2670
+ /**
2671
+ * Format: int32
2672
+ * @enum {integer}
2673
+ */
2674
+ marketingListTarget?: 0 | 1 | 2;
2675
+ };
2676
+ MarketingListDto: {
2677
+ id?: string | null;
2678
+ /** Format: date-time */
2679
+ timestamp?: string | null;
2680
+ locked?: boolean;
2681
+ name?: string | null;
2682
+ purpose?: string | null;
2683
+ description?: string | null;
2684
+ source?: string | null;
2685
+ /** Format: double */
2686
+ cost?: number;
2687
+ /** Format: date-time */
2688
+ modifiedOn?: string;
2689
+ /** Format: date-time */
2690
+ lastUsedOn?: string;
2691
+ currencyId?: string | null;
2692
+ tenantId?: string | null;
2693
+ enrolmentId?: string | null;
2694
+ /**
2695
+ * Format: int32
2696
+ * @enum {integer}
2697
+ */
2698
+ marketingListType?: 0 | 1;
2699
+ /**
2700
+ * Format: int32
2701
+ * @enum {integer}
2702
+ */
2703
+ marketingListTarget?: 0 | 1 | 2;
2704
+ };
2705
+ MarketingListDtoEnvelope: {
2706
+ isSuccess?: boolean;
2707
+ errorMessage?: string | null;
2708
+ correlationId?: string | null;
2709
+ /** Format: date-time */
2710
+ timestamp?: string;
2711
+ activityId?: string | null;
2712
+ result?: components["schemas"]["MarketingListDto"];
2713
+ };
2714
+ MarketingListDtoListEnvelope: {
2715
+ isSuccess?: boolean;
2716
+ errorMessage?: string | null;
2717
+ correlationId?: string | null;
2718
+ /** Format: date-time */
2719
+ timestamp?: string;
2720
+ activityId?: string | null;
2721
+ result?: components["schemas"]["MarketingListDto"][] | null;
2722
+ };
2723
+ MarketingListUpdateDto: {
2724
+ locked?: boolean;
2725
+ name?: string | null;
2726
+ purpose?: string | null;
2727
+ description?: string | null;
2728
+ source?: string | null;
2729
+ /** Format: double */
2730
+ cost?: number;
2731
+ /** Format: date-time */
2732
+ modifiedOn?: string;
2733
+ /** Format: date-time */
2734
+ lastUsedOn?: string;
2735
+ currencyId?: string | null;
2736
+ tenantId?: string | null;
2737
+ enrolmentId?: string | null;
2738
+ /**
2739
+ * Format: int32
2740
+ * @enum {integer}
2741
+ */
2742
+ marketingListType?: 0 | 1;
2743
+ /**
2744
+ * Format: int32
2745
+ * @enum {integer}
2746
+ */
2747
+ marketingListTarget?: 0 | 1 | 2;
2748
+ };
2749
+ Money: {
2750
+ /** Format: double */
2751
+ amount?: number;
2752
+ currency?: components["schemas"]["Currency"];
2753
+ };
2754
+ NewsletterCreateDto: {
2755
+ /** Format: uuid */
2756
+ id?: string;
2757
+ /** Format: date-time */
2758
+ timestamp?: string;
2759
+ name?: string | null;
2760
+ code?: string | null;
2761
+ title?: string | null;
2762
+ tenantId?: string | null;
2763
+ enrolmentId?: string | null;
2764
+ };
2765
+ NewsletterDto: {
2766
+ /** Format: date-time */
2767
+ timestamp?: string | null;
2768
+ id?: string | null;
2769
+ name?: string | null;
2770
+ code?: string | null;
2771
+ title?: string | null;
2772
+ tenantId?: string | null;
2773
+ enrolmentId?: string | null;
2774
+ };
2775
+ NewsletterDtoEnvelope: {
2776
+ isSuccess?: boolean;
2777
+ errorMessage?: string | null;
2778
+ correlationId?: string | null;
2779
+ /** Format: date-time */
2780
+ timestamp?: string;
2781
+ activityId?: string | null;
2782
+ result?: components["schemas"]["NewsletterDto"];
2783
+ };
2784
+ NewsletterUpdateDto: {
2785
+ code?: string | null;
2786
+ title?: string | null;
2787
+ tenantId?: string | null;
2788
+ enrolmentId?: string | null;
2789
+ name?: string | null;
2790
+ };
2791
+ OrderDto: {
2792
+ id?: string | null;
2793
+ /** Format: date-time */
2794
+ timestamp?: string | null;
2795
+ closed?: boolean;
2796
+ type?: string | null;
2797
+ title?: string | null;
2798
+ userId?: string | null;
2799
+ tenantId?: string | null;
2800
+ currencyId?: string | null;
2801
+ description?: string | null;
2802
+ priceListId?: string | null;
2803
+ enrollmentId?: string | null;
2804
+ individualId?: string | null;
2805
+ organizationId?: string | null;
2806
+ receiverTenantId?: string | null;
2807
+ firstName?: string | null;
2808
+ lastName?: string | null;
2809
+ companyName?: string | null;
2810
+ billingEmail?: string | null;
2811
+ addressLine1?: string | null;
2812
+ addressLine2?: string | null;
2813
+ postalCode?: string | null;
2814
+ countryId?: string | null;
2815
+ stateId?: string | null;
2816
+ cityId?: string | null;
2817
+ customerNotes?: string | null;
2818
+ /** Format: double */
2819
+ forexRate?: number;
2820
+ /** Format: double */
2821
+ total?: number;
2822
+ /** Format: double */
2823
+ totalTaxes?: number;
2824
+ /** Format: double */
2825
+ totalTaxBase?: number;
2826
+ /** Format: double */
2827
+ totalDiscounts?: number;
2828
+ /** Format: double */
2829
+ totalSurcharges?: number;
2830
+ /** Format: double */
2831
+ totalGlobalDiscounts?: number;
2832
+ /** Format: double */
2833
+ totalGlobalSurcharges?: number;
2834
+ /** Format: double */
2835
+ totalTaxesInUsd?: number;
2836
+ /** Format: double */
2837
+ totalAmountInUsd?: number;
2838
+ /** Format: double */
2839
+ totalProfitInUsd?: number;
2840
+ /** Format: double */
2841
+ totalTaxBaseInUsd?: number;
2842
+ /** Format: double */
2843
+ totalDiscountsInUsd?: number;
2844
+ /** Format: double */
2845
+ totalSurchargesInUsd?: number;
2846
+ /** Format: double */
2847
+ totalDetailAmountInUsd?: number;
2848
+ /** Format: double */
2849
+ totalGlobalDiscountsInUsd?: number;
2850
+ /** Format: double */
2851
+ totalGlobalSurchargesInUsd?: number;
2852
+ /** Format: double */
2853
+ totalWithholdingTaxesInUsd?: number;
2854
+ /** Format: double */
2855
+ totalShippingCostInUsd?: number;
2856
+ /** Format: double */
2857
+ totalShippingTaxesInUsd?: number;
2858
+ currency?: components["schemas"]["Currency"];
2859
+ totalInUsd?: components["schemas"]["Money"];
2860
+ totalTaxAmountInUsd?: components["schemas"]["Money"];
2861
+ totalTaxBaseAmountInUsd?: components["schemas"]["Money"];
2862
+ totalDiscountsAmountInUsd?: components["schemas"]["Money"];
2863
+ totalSurchargesAmountInUsd?: components["schemas"]["Money"];
2864
+ totalGlobalDiscountsAmountInUsd?: components["schemas"]["Money"];
2865
+ totalGlobalSurchargesAmountInUsd?: components["schemas"]["Money"];
2866
+ totalAmount?: components["schemas"]["Money"];
2867
+ totalTaxAmount?: components["schemas"]["Money"];
2868
+ totalTaxBaseAmount?: components["schemas"]["Money"];
2869
+ totalDiscountsAmount?: components["schemas"]["Money"];
2870
+ totalSurchargesAmount?: components["schemas"]["Money"];
2871
+ totalGlobalDiscountsAmount?: components["schemas"]["Money"];
2872
+ totalGlobalSurchargesAmount?: components["schemas"]["Money"];
2873
+ /** Format: int32 */
2874
+ orderLinesCount?: number;
2875
+ quoteId?: string | null;
2876
+ walletId?: string | null;
2877
+ paymentTermId?: string | null;
2878
+ parentOrderId?: string | null;
2879
+ shippingMethodId?: string | null;
2880
+ billingLocationId?: string | null;
2881
+ shippingLocationId?: string | null;
2882
+ qualifiedIdentifier?: string | null;
2883
+ /**
2884
+ * Format: int32
2885
+ * @enum {integer}
2886
+ */
2887
+ costCalculationMethod?: 0 | 1;
2888
+ /**
2889
+ * Format: int32
2890
+ * @enum {integer}
2891
+ */
2892
+ freightTerms?: 0 | 1;
2893
+ /**
2894
+ * Format: int32
2895
+ * @enum {integer}
2896
+ */
2897
+ orderStatus?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10;
2898
+ /** Format: date-time */
2899
+ requestedDeliveryDate?: string;
2900
+ /** Format: double */
2901
+ customTaxAmount?: number;
2902
+ /** Format: double */
2903
+ customTotalAmount?: number;
2904
+ /** Format: double */
2905
+ customDetailAmount?: number;
2906
+ /** Format: double */
2907
+ customProfitAmount?: number;
2908
+ /** Format: double */
2909
+ customDiscountsAmount?: number;
2910
+ /** Format: double */
2911
+ customSurchargesAmount?: number;
2912
+ /** Format: double */
2913
+ customShippingTaxAmount?: number;
2914
+ /** Format: double */
2915
+ customShippingCostAmount?: number;
2916
+ /** Format: double */
2917
+ customWithholdingTaxAmount?: number;
2918
+ };
2919
+ OrderDtoEnvelope: {
2920
+ isSuccess?: boolean;
2921
+ errorMessage?: string | null;
2922
+ correlationId?: string | null;
2923
+ /** Format: date-time */
2924
+ timestamp?: string;
2925
+ activityId?: string | null;
2926
+ result?: components["schemas"]["OrderDto"];
2927
+ };
2928
+ SocialMediaPostCreateDto: {
2929
+ title?: string | null;
2930
+ content?: string | null;
2931
+ /** Format: uri */
2932
+ featuredImageUrl?: string | null;
2933
+ tenantId?: string | null;
2934
+ socialPostBucketId?: string | null;
2935
+ enrolmentId?: string | null;
2936
+ };
2937
+ SocialMediaPostDto: {
2938
+ id?: string | null;
2939
+ /** Format: date-time */
2940
+ timestamp?: string | null;
2941
+ title?: string | null;
2942
+ content?: string | null;
2943
+ featuredImageUrl?: string | null;
2944
+ tenantId?: string | null;
2945
+ socialPostBucketId?: string | null;
2946
+ enrolmentId?: string | null;
2947
+ };
2948
+ SocialMediaPostDtoEnvelope: {
2949
+ isSuccess?: boolean;
2950
+ errorMessage?: string | null;
2951
+ correlationId?: string | null;
2952
+ /** Format: date-time */
2953
+ timestamp?: string;
2954
+ activityId?: string | null;
2955
+ result?: components["schemas"]["SocialMediaPostDto"];
2956
+ };
2957
+ SocialMediaPostDtoListEnvelope: {
2958
+ isSuccess?: boolean;
2959
+ errorMessage?: string | null;
2960
+ correlationId?: string | null;
2961
+ /** Format: date-time */
2962
+ timestamp?: string;
2963
+ activityId?: string | null;
2964
+ result?: components["schemas"]["SocialMediaPostDto"][] | null;
2965
+ };
2966
+ SocialMediaPostUpdateDto: {
2967
+ title?: string | null;
2968
+ content?: string | null;
2969
+ /** Format: uri */
2970
+ featuredImageUrl?: string | null;
2971
+ tenantId?: string | null;
2972
+ socialPostBucketId?: string | null;
2973
+ enrolmentId?: string | null;
2974
+ };
2975
+ SocialPostBucketCreateDto: {
2976
+ /** Format: uuid */
2977
+ id?: string;
2978
+ /** Format: date-time */
2979
+ timestamp?: string;
2980
+ name?: string | null;
2981
+ tenantId?: string | null;
2982
+ enrolmentId?: string | null;
2983
+ };
2984
+ SocialPostBucketDto: {
2985
+ id?: string | null;
2986
+ /** Format: date-time */
2987
+ timestamp?: string | null;
2988
+ name?: string | null;
2989
+ tenantId?: string | null;
2990
+ enrolmentId?: string | null;
2991
+ };
2992
+ SocialPostBucketDtoEnvelope: {
2993
+ isSuccess?: boolean;
2994
+ errorMessage?: string | null;
2995
+ correlationId?: string | null;
2996
+ /** Format: date-time */
2997
+ timestamp?: string;
2998
+ activityId?: string | null;
2999
+ result?: components["schemas"]["SocialPostBucketDto"];
3000
+ };
3001
+ SocialPostBucketDtoListEnvelope: {
3002
+ isSuccess?: boolean;
3003
+ errorMessage?: string | null;
3004
+ correlationId?: string | null;
3005
+ /** Format: date-time */
3006
+ timestamp?: string;
3007
+ activityId?: string | null;
3008
+ result?: components["schemas"]["SocialPostBucketDto"][] | null;
3009
+ };
3010
+ SocialPostBucketUpdateDto: {
3011
+ name?: string | null;
3012
+ tenantId?: string | null;
3013
+ enrolmentId?: string | null;
3014
+ };
3015
+ };
3016
+ responses: never;
3017
+ parameters: never;
3018
+ requestBodies: never;
3019
+ headers: never;
3020
+ pathItems: never;
3021
+ }
3022
+
3023
+ export type $defs = Record<string, never>;
3024
+
3025
+ export type external = Record<string, never>;
3026
+
3027
+ export type operations = Record<string, never>;