@fenixalliance/abs-api-client 1.0.7 → 1.0.9
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.
- package/clients/accountingService/index.js +1 -4
- package/clients/accountingService/index.ts +0 -13
- package/clients/cartService/index.js +1 -3
- package/clients/cartService/index.ts +0 -13
- package/clients/catalogService/index.js +1 -3
- package/clients/catalogService/index.ts +0 -13
- package/clients/contentService/index.js +1 -3
- package/clients/contentService/index.ts +2 -15
- package/clients/contentService/models/{Portal.ts → PortalSettings.ts} +1 -1
- package/clients/contentService/models/PortalSettingsEnvelope.ts +14 -0
- package/clients/contentService/services/PortalsService.js +1 -1
- package/clients/contentService/services/PortalsService.ts +3 -3
- package/clients/crmService/index.js +1 -3
- package/clients/crmService/index.ts +0 -13
- package/clients/dealsService/index.js +1 -3
- package/clients/dealsService/index.ts +0 -13
- package/clients/forexService/index.js +1 -3
- package/clients/forexService/index.ts +0 -13
- package/clients/globeService/index.js +1 -3
- package/clients/globeService/index.ts +0 -13
- package/clients/holderService/index.js +1 -3
- package/clients/holderService/index.ts +1 -13
- package/clients/holderService/models/FollowRecordDtoListEnvelope.ts +14 -0
- package/clients/holderService/services/HolderService.js +56 -30
- package/clients/holderService/services/HolderService.ts +62 -36
- package/clients/hrmsService/index.js +1 -3
- package/clients/hrmsService/index.ts +0 -13
- package/clients/identityService/index.js +1 -3
- package/clients/identityService/index.ts +0 -13
- package/clients/inventoryService/index.js +1 -3
- package/clients/inventoryService/index.ts +0 -14
- package/clients/invoicingService/index.js +1 -3
- package/clients/invoicingService/index.ts +0 -13
- package/clients/learningService/index.js +1 -3
- package/clients/learningService/index.ts +0 -13
- package/clients/marketingService/index.js +1 -3
- package/clients/marketingService/index.ts +0 -13
- package/clients/ordersService/index.js +1 -3
- package/clients/ordersService/index.ts +0 -13
- package/clients/paymentsService/index.js +1 -3
- package/clients/paymentsService/index.ts +0 -13
- package/clients/pricingService/index.js +1 -3
- package/clients/pricingService/index.ts +0 -13
- package/clients/projectsService/index.js +1 -3
- package/clients/projectsService/index.ts +0 -13
- package/clients/quotesService/index.js +1 -3
- package/clients/quotesService/index.ts +0 -13
- package/clients/salesService/index.js +1 -3
- package/clients/salesService/index.ts +0 -14
- package/clients/securityService/index.js +1 -3
- package/clients/securityService/index.ts +0 -13
- package/clients/shipmentsService/core/ApiError.js +20 -0
- package/clients/shipmentsService/core/ApiError.ts +25 -0
- package/clients/shipmentsService/core/ApiRequestOptions.ts +17 -0
- package/clients/shipmentsService/core/ApiResult.ts +11 -0
- package/clients/shipmentsService/core/CancelablePromise.js +104 -0
- package/clients/shipmentsService/core/CancelablePromise.ts +131 -0
- package/clients/shipmentsService/core/OpenAPI.js +14 -0
- package/clients/shipmentsService/core/OpenAPI.ts +32 -0
- package/clients/shipmentsService/core/request.js +294 -0
- package/clients/shipmentsService/core/request.ts +322 -0
- package/clients/shipmentsService/index.js +16 -0
- package/clients/shipmentsService/index.ts +14 -0
- package/clients/{contentService/models/PortalEnvelope.ts → shipmentsService/models/ErrorEnvelope.ts} +1 -3
- package/clients/shipmentsService/models/ShipmentDto.ts +14 -0
- package/clients/shipmentsService/models/ShipmentDtoListEnvelope.ts +14 -0
- package/clients/shipmentsService/services/ShipmentsService.js +30 -0
- package/clients/shipmentsService/services/ShipmentsService.ts +35 -0
- package/clients/socialService/index.js +1 -3
- package/clients/socialService/index.ts +0 -13
- package/clients/storageService/core/ApiError.js +20 -0
- package/clients/storageService/core/ApiError.ts +25 -0
- package/clients/storageService/core/ApiRequestOptions.ts +17 -0
- package/clients/storageService/core/ApiResult.ts +11 -0
- package/clients/storageService/core/CancelablePromise.js +104 -0
- package/clients/storageService/core/CancelablePromise.ts +131 -0
- package/clients/storageService/core/OpenAPI.js +14 -0
- package/clients/storageService/core/OpenAPI.ts +32 -0
- package/clients/storageService/core/request.js +294 -0
- package/clients/storageService/core/request.ts +322 -0
- package/clients/storageService/index.js +26 -0
- package/clients/storageService/index.ts +23 -0
- package/clients/storageService/models/Blob.js +11 -0
- package/clients/storageService/models/Blob.ts +26 -0
- package/clients/storageService/models/BlobEnvelope.ts +14 -0
- package/clients/storageService/models/EmptyEnvelope.ts +12 -0
- package/clients/storageService/models/ErrorEnvelope.ts +12 -0
- package/clients/storageService/models/FileUploadCreateDto.ts +20 -0
- package/clients/storageService/models/FileUploadDto.ts +29 -0
- package/clients/storageService/models/FileUploadDtoEnvelope.ts +14 -0
- package/clients/storageService/models/FileUploadUpdateDto.ts +19 -0
- package/clients/storageService/services/AvatarsService.js +189 -0
- package/clients/storageService/services/AvatarsService.ts +223 -0
- package/clients/storageService/services/BlobsService.js +66 -0
- package/clients/storageService/services/BlobsService.ts +81 -0
- package/clients/storageService/services/FilesService.js +171 -0
- package/clients/storageService/services/FilesService.ts +200 -0
- package/clients/storageService/services/RadzenEditorService.js +117 -0
- package/clients/storageService/services/RadzenEditorService.ts +149 -0
- package/clients/storageService/services/UploadsService.js +33 -0
- package/clients/storageService/services/UploadsService.ts +53 -0
- package/clients/supportService/index.js +1 -3
- package/clients/supportService/index.ts +0 -13
- package/clients/systemService/index.js +1 -3
- package/clients/systemService/index.ts +0 -13
- package/clients/tenantService/index.js +1 -3
- package/clients/tenantService/index.ts +0 -13
- package/clients/timeTrackerService/index.js +1 -3
- package/clients/timeTrackerService/index.ts +0 -13
- package/clients/walletsService/index.js +1 -3
- package/clients/walletsService/index.ts +0 -13
- package/package.json +1 -1
- package/schemas/accountingService/schema.s.ts +0 -379
- package/schemas/cartService/schema.s.ts +0 -379
- package/schemas/catalogService/schema.s.ts +0 -379
- package/schemas/contentService/schema.s.ts +29 -408
- package/schemas/crmService/schema.s.ts +0 -379
- package/schemas/dealsService/schema.s.ts +0 -379
- package/schemas/forexService/schema.s.ts +1 -382
- package/schemas/globeService/schema.s.ts +1 -382
- package/schemas/holderService/schema.s.ts +860 -1147
- package/schemas/hrmsService/schema.s.ts +0 -379
- package/schemas/identityService/schema.s.ts +1 -382
- package/schemas/inventoryService/schema.s.ts +2 -384
- package/schemas/invoicingService/schema.s.ts +0 -379
- package/schemas/learningService/schema.s.ts +1 -382
- package/schemas/marketingService/schema.s.ts +1 -382
- package/schemas/ordersService/schema.s.ts +0 -379
- package/schemas/paymentsService/schema.s.ts +1 -382
- package/schemas/pricingService/schema.s.ts +0 -379
- package/schemas/projectsService/schema.s.ts +1 -382
- package/schemas/quotesService/schema.s.ts +0 -379
- package/schemas/salesService/schema.s.ts +2 -384
- package/schemas/securityService/schema.s.ts +1 -382
- package/schemas/shipmentsService/schema.s.js +6 -0
- package/schemas/shipmentsService/schema.s.ts +92 -0
- package/schemas/socialService/schema.s.ts +0 -379
- package/schemas/storageService/schema.s.js +6 -0
- package/schemas/storageService/schema.s.ts +1042 -0
- package/schemas/supportService/schema.s.ts +1 -382
- package/schemas/systemService/schema.s.ts +0 -379
- package/schemas/tenantService/schema.s.ts +0 -379
- package/schemas/timeTrackerService/schema.s.ts +1 -382
- package/schemas/walletsService/schema.s.ts +0 -379
- package/clients/accountingService/models/AccessTokenResponse.ts +0 -11
- package/clients/accountingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/accountingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/accountingService/models/InfoRequest.ts +0 -10
- package/clients/accountingService/models/InfoResponse.ts +0 -9
- package/clients/accountingService/models/LoginRequest.ts +0 -11
- package/clients/accountingService/models/RefreshRequest.ts +0 -8
- package/clients/accountingService/models/RegisterRequest.ts +0 -9
- package/clients/accountingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/accountingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/accountingService/models/TwoFactorRequest.ts +0 -12
- package/clients/accountingService/models/TwoFactorResponse.ts +0 -12
- package/clients/accountingService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/accountingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/cartService/models/AccessTokenResponse.ts +0 -11
- package/clients/cartService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/cartService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/cartService/models/InfoRequest.ts +0 -10
- package/clients/cartService/models/InfoResponse.ts +0 -9
- package/clients/cartService/models/LoginRequest.js +0 -2
- package/clients/cartService/models/LoginRequest.ts +0 -11
- package/clients/cartService/models/RefreshRequest.js +0 -2
- package/clients/cartService/models/RefreshRequest.ts +0 -8
- package/clients/cartService/models/RegisterRequest.js +0 -2
- package/clients/cartService/models/RegisterRequest.ts +0 -9
- package/clients/cartService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/cartService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/cartService/models/ResetPasswordRequest.js +0 -2
- package/clients/cartService/models/ResetPasswordRequest.ts +0 -10
- package/clients/cartService/models/TwoFactorRequest.js +0 -2
- package/clients/cartService/models/TwoFactorRequest.ts +0 -12
- package/clients/cartService/models/TwoFactorResponse.js +0 -2
- package/clients/cartService/models/TwoFactorResponse.ts +0 -12
- package/clients/cartService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/cartService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/catalogService/models/AccessTokenResponse.js +0 -2
- package/clients/catalogService/models/AccessTokenResponse.ts +0 -11
- package/clients/catalogService/models/ForgotPasswordRequest.js +0 -2
- package/clients/catalogService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/catalogService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/catalogService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/catalogService/models/InfoRequest.js +0 -2
- package/clients/catalogService/models/InfoRequest.ts +0 -10
- package/clients/catalogService/models/InfoResponse.js +0 -2
- package/clients/catalogService/models/InfoResponse.ts +0 -9
- package/clients/catalogService/models/LoginRequest.js +0 -2
- package/clients/catalogService/models/LoginRequest.ts +0 -11
- package/clients/catalogService/models/RefreshRequest.js +0 -2
- package/clients/catalogService/models/RefreshRequest.ts +0 -8
- package/clients/catalogService/models/RegisterRequest.js +0 -2
- package/clients/catalogService/models/RegisterRequest.ts +0 -9
- package/clients/catalogService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/catalogService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/catalogService/models/ResetPasswordRequest.js +0 -2
- package/clients/catalogService/models/ResetPasswordRequest.ts +0 -10
- package/clients/catalogService/models/TwoFactorRequest.js +0 -2
- package/clients/catalogService/models/TwoFactorRequest.ts +0 -12
- package/clients/catalogService/models/TwoFactorResponse.js +0 -2
- package/clients/catalogService/models/TwoFactorResponse.ts +0 -12
- package/clients/catalogService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/catalogService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/contentService/models/AccessTokenResponse.js +0 -2
- package/clients/contentService/models/AccessTokenResponse.ts +0 -11
- package/clients/contentService/models/ForgotPasswordRequest.js +0 -2
- package/clients/contentService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/contentService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/contentService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/contentService/models/InfoRequest.js +0 -2
- package/clients/contentService/models/InfoRequest.ts +0 -10
- package/clients/contentService/models/InfoResponse.js +0 -2
- package/clients/contentService/models/InfoResponse.ts +0 -9
- package/clients/contentService/models/LoginRequest.js +0 -2
- package/clients/contentService/models/LoginRequest.ts +0 -11
- package/clients/contentService/models/Portal.js +0 -2
- package/clients/contentService/models/PortalEnvelope.js +0 -2
- package/clients/contentService/models/RefreshRequest.js +0 -2
- package/clients/contentService/models/RefreshRequest.ts +0 -8
- package/clients/contentService/models/RegisterRequest.js +0 -2
- package/clients/contentService/models/RegisterRequest.ts +0 -9
- package/clients/contentService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/contentService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/contentService/models/ResetPasswordRequest.js +0 -2
- package/clients/contentService/models/ResetPasswordRequest.ts +0 -10
- package/clients/contentService/models/TwoFactorRequest.js +0 -2
- package/clients/contentService/models/TwoFactorRequest.ts +0 -12
- package/clients/contentService/models/TwoFactorResponse.js +0 -2
- package/clients/contentService/models/TwoFactorResponse.ts +0 -12
- package/clients/contentService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/contentService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/crmService/models/AccessTokenResponse.js +0 -2
- package/clients/crmService/models/AccessTokenResponse.ts +0 -11
- package/clients/crmService/models/ForgotPasswordRequest.js +0 -2
- package/clients/crmService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/crmService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/crmService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/crmService/models/InfoRequest.js +0 -2
- package/clients/crmService/models/InfoRequest.ts +0 -10
- package/clients/crmService/models/InfoResponse.js +0 -2
- package/clients/crmService/models/InfoResponse.ts +0 -9
- package/clients/crmService/models/LoginRequest.js +0 -2
- package/clients/crmService/models/LoginRequest.ts +0 -11
- package/clients/crmService/models/RefreshRequest.js +0 -2
- package/clients/crmService/models/RefreshRequest.ts +0 -8
- package/clients/crmService/models/RegisterRequest.js +0 -2
- package/clients/crmService/models/RegisterRequest.ts +0 -9
- package/clients/crmService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/crmService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/crmService/models/ResetPasswordRequest.js +0 -2
- package/clients/crmService/models/ResetPasswordRequest.ts +0 -10
- package/clients/crmService/models/TwoFactorRequest.js +0 -2
- package/clients/crmService/models/TwoFactorRequest.ts +0 -12
- package/clients/crmService/models/TwoFactorResponse.js +0 -2
- package/clients/crmService/models/TwoFactorResponse.ts +0 -12
- package/clients/crmService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/crmService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/dealsService/models/AccessTokenResponse.js +0 -2
- package/clients/dealsService/models/AccessTokenResponse.ts +0 -11
- package/clients/dealsService/models/ForgotPasswordRequest.js +0 -2
- package/clients/dealsService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/dealsService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/dealsService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/dealsService/models/InfoRequest.js +0 -2
- package/clients/dealsService/models/InfoRequest.ts +0 -10
- package/clients/dealsService/models/InfoResponse.js +0 -2
- package/clients/dealsService/models/InfoResponse.ts +0 -9
- package/clients/dealsService/models/LoginRequest.js +0 -2
- package/clients/dealsService/models/LoginRequest.ts +0 -11
- package/clients/dealsService/models/RefreshRequest.js +0 -2
- package/clients/dealsService/models/RefreshRequest.ts +0 -8
- package/clients/dealsService/models/RegisterRequest.js +0 -2
- package/clients/dealsService/models/RegisterRequest.ts +0 -9
- package/clients/dealsService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/dealsService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/dealsService/models/ResetPasswordRequest.js +0 -2
- package/clients/dealsService/models/ResetPasswordRequest.ts +0 -10
- package/clients/dealsService/models/TwoFactorRequest.js +0 -2
- package/clients/dealsService/models/TwoFactorRequest.ts +0 -12
- package/clients/dealsService/models/TwoFactorResponse.js +0 -2
- package/clients/dealsService/models/TwoFactorResponse.ts +0 -12
- package/clients/dealsService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/dealsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/forexService/models/AccessTokenResponse.js +0 -2
- package/clients/forexService/models/AccessTokenResponse.ts +0 -11
- package/clients/forexService/models/ForgotPasswordRequest.js +0 -2
- package/clients/forexService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/forexService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/forexService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/forexService/models/InfoRequest.js +0 -2
- package/clients/forexService/models/InfoRequest.ts +0 -10
- package/clients/forexService/models/InfoResponse.js +0 -2
- package/clients/forexService/models/InfoResponse.ts +0 -9
- package/clients/forexService/models/LoginRequest.js +0 -2
- package/clients/forexService/models/LoginRequest.ts +0 -11
- package/clients/forexService/models/RefreshRequest.js +0 -2
- package/clients/forexService/models/RefreshRequest.ts +0 -8
- package/clients/forexService/models/RegisterRequest.js +0 -2
- package/clients/forexService/models/RegisterRequest.ts +0 -9
- package/clients/forexService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/forexService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/forexService/models/ResetPasswordRequest.js +0 -2
- package/clients/forexService/models/ResetPasswordRequest.ts +0 -10
- package/clients/forexService/models/TwoFactorRequest.js +0 -2
- package/clients/forexService/models/TwoFactorRequest.ts +0 -12
- package/clients/forexService/models/TwoFactorResponse.js +0 -2
- package/clients/forexService/models/TwoFactorResponse.ts +0 -12
- package/clients/forexService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/forexService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/globeService/models/AccessTokenResponse.js +0 -2
- package/clients/globeService/models/AccessTokenResponse.ts +0 -11
- package/clients/globeService/models/ForgotPasswordRequest.js +0 -2
- package/clients/globeService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/globeService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/globeService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/globeService/models/InfoRequest.js +0 -2
- package/clients/globeService/models/InfoRequest.ts +0 -10
- package/clients/globeService/models/InfoResponse.js +0 -2
- package/clients/globeService/models/InfoResponse.ts +0 -9
- package/clients/globeService/models/LoginRequest.js +0 -2
- package/clients/globeService/models/LoginRequest.ts +0 -11
- package/clients/globeService/models/RefreshRequest.js +0 -2
- package/clients/globeService/models/RefreshRequest.ts +0 -8
- package/clients/globeService/models/RegisterRequest.js +0 -2
- package/clients/globeService/models/RegisterRequest.ts +0 -9
- package/clients/globeService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/globeService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/globeService/models/ResetPasswordRequest.js +0 -2
- package/clients/globeService/models/ResetPasswordRequest.ts +0 -10
- package/clients/globeService/models/TwoFactorRequest.js +0 -2
- package/clients/globeService/models/TwoFactorRequest.ts +0 -12
- package/clients/globeService/models/TwoFactorResponse.js +0 -2
- package/clients/globeService/models/TwoFactorResponse.ts +0 -12
- package/clients/globeService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/globeService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/holderService/models/AccessTokenResponse.js +0 -2
- package/clients/holderService/models/AccessTokenResponse.ts +0 -11
- package/clients/holderService/models/ForgotPasswordRequest.js +0 -2
- package/clients/holderService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/holderService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/holderService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/holderService/models/InfoRequest.js +0 -2
- package/clients/holderService/models/InfoRequest.ts +0 -10
- package/clients/holderService/models/InfoResponse.js +0 -2
- package/clients/holderService/models/InfoResponse.ts +0 -9
- package/clients/holderService/models/LoginRequest.js +0 -2
- package/clients/holderService/models/LoginRequest.ts +0 -11
- package/clients/holderService/models/RefreshRequest.js +0 -2
- package/clients/holderService/models/RefreshRequest.ts +0 -8
- package/clients/holderService/models/RegisterRequest.js +0 -2
- package/clients/holderService/models/RegisterRequest.ts +0 -9
- package/clients/holderService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/holderService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/holderService/models/ResetPasswordRequest.js +0 -2
- package/clients/holderService/models/ResetPasswordRequest.ts +0 -10
- package/clients/holderService/models/TwoFactorRequest.js +0 -2
- package/clients/holderService/models/TwoFactorRequest.ts +0 -12
- package/clients/holderService/models/TwoFactorResponse.js +0 -2
- package/clients/holderService/models/TwoFactorResponse.ts +0 -12
- package/clients/holderService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/holderService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/hrmsService/models/AccessTokenResponse.js +0 -2
- package/clients/hrmsService/models/AccessTokenResponse.ts +0 -11
- package/clients/hrmsService/models/ForgotPasswordRequest.js +0 -2
- package/clients/hrmsService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/hrmsService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/hrmsService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/hrmsService/models/InfoRequest.js +0 -2
- package/clients/hrmsService/models/InfoRequest.ts +0 -10
- package/clients/hrmsService/models/InfoResponse.js +0 -2
- package/clients/hrmsService/models/InfoResponse.ts +0 -9
- package/clients/hrmsService/models/LoginRequest.js +0 -2
- package/clients/hrmsService/models/LoginRequest.ts +0 -11
- package/clients/hrmsService/models/RefreshRequest.js +0 -2
- package/clients/hrmsService/models/RefreshRequest.ts +0 -8
- package/clients/hrmsService/models/RegisterRequest.js +0 -2
- package/clients/hrmsService/models/RegisterRequest.ts +0 -9
- package/clients/hrmsService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/hrmsService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/hrmsService/models/ResetPasswordRequest.js +0 -2
- package/clients/hrmsService/models/ResetPasswordRequest.ts +0 -10
- package/clients/hrmsService/models/TwoFactorRequest.js +0 -2
- package/clients/hrmsService/models/TwoFactorRequest.ts +0 -12
- package/clients/hrmsService/models/TwoFactorResponse.js +0 -2
- package/clients/hrmsService/models/TwoFactorResponse.ts +0 -12
- package/clients/hrmsService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/hrmsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/identityService/models/AccessTokenResponse.js +0 -2
- package/clients/identityService/models/AccessTokenResponse.ts +0 -11
- package/clients/identityService/models/ForgotPasswordRequest.js +0 -2
- package/clients/identityService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/identityService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/identityService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/identityService/models/InfoRequest.js +0 -2
- package/clients/identityService/models/InfoRequest.ts +0 -10
- package/clients/identityService/models/InfoResponse.js +0 -2
- package/clients/identityService/models/InfoResponse.ts +0 -9
- package/clients/identityService/models/LoginRequest.js +0 -2
- package/clients/identityService/models/LoginRequest.ts +0 -11
- package/clients/identityService/models/RefreshRequest.js +0 -2
- package/clients/identityService/models/RefreshRequest.ts +0 -8
- package/clients/identityService/models/RegisterRequest.js +0 -2
- package/clients/identityService/models/RegisterRequest.ts +0 -9
- package/clients/identityService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/identityService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/identityService/models/ResetPasswordRequest.js +0 -2
- package/clients/identityService/models/ResetPasswordRequest.ts +0 -10
- package/clients/identityService/models/TwoFactorRequest.js +0 -2
- package/clients/identityService/models/TwoFactorRequest.ts +0 -12
- package/clients/identityService/models/TwoFactorResponse.js +0 -2
- package/clients/identityService/models/TwoFactorResponse.ts +0 -12
- package/clients/identityService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/identityService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/inventoryService/models/AccessTokenResponse.js +0 -2
- package/clients/inventoryService/models/AccessTokenResponse.ts +0 -11
- package/clients/inventoryService/models/ForgotPasswordRequest.js +0 -2
- package/clients/inventoryService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/inventoryService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/inventoryService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/inventoryService/models/InfoRequest.js +0 -2
- package/clients/inventoryService/models/InfoRequest.ts +0 -10
- package/clients/inventoryService/models/InfoResponse.js +0 -2
- package/clients/inventoryService/models/InfoResponse.ts +0 -9
- package/clients/inventoryService/models/LoginRequest.js +0 -2
- package/clients/inventoryService/models/LoginRequest.ts +0 -11
- package/clients/inventoryService/models/RefreshRequest.js +0 -2
- package/clients/inventoryService/models/RefreshRequest.ts +0 -8
- package/clients/inventoryService/models/RegisterRequest.js +0 -2
- package/clients/inventoryService/models/RegisterRequest.ts +0 -9
- package/clients/inventoryService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/inventoryService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/inventoryService/models/ResetPasswordRequest.js +0 -2
- package/clients/inventoryService/models/ResetPasswordRequest.ts +0 -10
- package/clients/inventoryService/models/TwoFactorRequest.js +0 -2
- package/clients/inventoryService/models/TwoFactorRequest.ts +0 -12
- package/clients/inventoryService/models/TwoFactorResponse.js +0 -2
- package/clients/inventoryService/models/TwoFactorResponse.ts +0 -12
- package/clients/inventoryService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/inventoryService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/invoicingService/models/AccessTokenResponse.js +0 -2
- package/clients/invoicingService/models/AccessTokenResponse.ts +0 -11
- package/clients/invoicingService/models/ForgotPasswordRequest.js +0 -2
- package/clients/invoicingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/invoicingService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/invoicingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/invoicingService/models/InfoRequest.js +0 -2
- package/clients/invoicingService/models/InfoRequest.ts +0 -10
- package/clients/invoicingService/models/InfoResponse.js +0 -2
- package/clients/invoicingService/models/InfoResponse.ts +0 -9
- package/clients/invoicingService/models/LoginRequest.js +0 -2
- package/clients/invoicingService/models/LoginRequest.ts +0 -11
- package/clients/invoicingService/models/RefreshRequest.js +0 -2
- package/clients/invoicingService/models/RefreshRequest.ts +0 -8
- package/clients/invoicingService/models/RegisterRequest.js +0 -2
- package/clients/invoicingService/models/RegisterRequest.ts +0 -9
- package/clients/invoicingService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/invoicingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/invoicingService/models/ResetPasswordRequest.js +0 -2
- package/clients/invoicingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/invoicingService/models/TwoFactorRequest.js +0 -2
- package/clients/invoicingService/models/TwoFactorRequest.ts +0 -12
- package/clients/invoicingService/models/TwoFactorResponse.js +0 -2
- package/clients/invoicingService/models/TwoFactorResponse.ts +0 -12
- package/clients/invoicingService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/invoicingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/learningService/models/AccessTokenResponse.js +0 -2
- package/clients/learningService/models/AccessTokenResponse.ts +0 -11
- package/clients/learningService/models/ForgotPasswordRequest.js +0 -2
- package/clients/learningService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/learningService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/learningService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/learningService/models/InfoRequest.js +0 -2
- package/clients/learningService/models/InfoRequest.ts +0 -10
- package/clients/learningService/models/InfoResponse.js +0 -2
- package/clients/learningService/models/InfoResponse.ts +0 -9
- package/clients/learningService/models/LoginRequest.js +0 -2
- package/clients/learningService/models/LoginRequest.ts +0 -11
- package/clients/learningService/models/RefreshRequest.js +0 -2
- package/clients/learningService/models/RefreshRequest.ts +0 -8
- package/clients/learningService/models/RegisterRequest.js +0 -2
- package/clients/learningService/models/RegisterRequest.ts +0 -9
- package/clients/learningService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/learningService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/learningService/models/ResetPasswordRequest.js +0 -2
- package/clients/learningService/models/ResetPasswordRequest.ts +0 -10
- package/clients/learningService/models/TwoFactorRequest.js +0 -2
- package/clients/learningService/models/TwoFactorRequest.ts +0 -12
- package/clients/learningService/models/TwoFactorResponse.js +0 -2
- package/clients/learningService/models/TwoFactorResponse.ts +0 -12
- package/clients/learningService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/learningService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/marketingService/models/AccessTokenResponse.js +0 -2
- package/clients/marketingService/models/AccessTokenResponse.ts +0 -11
- package/clients/marketingService/models/ForgotPasswordRequest.js +0 -2
- package/clients/marketingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/marketingService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/marketingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/marketingService/models/InfoRequest.js +0 -2
- package/clients/marketingService/models/InfoRequest.ts +0 -10
- package/clients/marketingService/models/InfoResponse.js +0 -2
- package/clients/marketingService/models/InfoResponse.ts +0 -9
- package/clients/marketingService/models/LoginRequest.js +0 -2
- package/clients/marketingService/models/LoginRequest.ts +0 -11
- package/clients/marketingService/models/RefreshRequest.js +0 -2
- package/clients/marketingService/models/RefreshRequest.ts +0 -8
- package/clients/marketingService/models/RegisterRequest.js +0 -2
- package/clients/marketingService/models/RegisterRequest.ts +0 -9
- package/clients/marketingService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/marketingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/marketingService/models/ResetPasswordRequest.js +0 -2
- package/clients/marketingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/marketingService/models/TwoFactorRequest.js +0 -2
- package/clients/marketingService/models/TwoFactorRequest.ts +0 -12
- package/clients/marketingService/models/TwoFactorResponse.js +0 -2
- package/clients/marketingService/models/TwoFactorResponse.ts +0 -12
- package/clients/marketingService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/marketingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/ordersService/models/AccessTokenResponse.js +0 -2
- package/clients/ordersService/models/AccessTokenResponse.ts +0 -11
- package/clients/ordersService/models/ForgotPasswordRequest.js +0 -2
- package/clients/ordersService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/ordersService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/ordersService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/ordersService/models/InfoRequest.js +0 -2
- package/clients/ordersService/models/InfoRequest.ts +0 -10
- package/clients/ordersService/models/InfoResponse.js +0 -2
- package/clients/ordersService/models/InfoResponse.ts +0 -9
- package/clients/ordersService/models/LoginRequest.js +0 -2
- package/clients/ordersService/models/LoginRequest.ts +0 -11
- package/clients/ordersService/models/RefreshRequest.js +0 -2
- package/clients/ordersService/models/RefreshRequest.ts +0 -8
- package/clients/ordersService/models/RegisterRequest.js +0 -2
- package/clients/ordersService/models/RegisterRequest.ts +0 -9
- package/clients/ordersService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/ordersService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/ordersService/models/ResetPasswordRequest.js +0 -2
- package/clients/ordersService/models/ResetPasswordRequest.ts +0 -10
- package/clients/ordersService/models/TwoFactorRequest.js +0 -2
- package/clients/ordersService/models/TwoFactorRequest.ts +0 -12
- package/clients/ordersService/models/TwoFactorResponse.js +0 -2
- package/clients/ordersService/models/TwoFactorResponse.ts +0 -12
- package/clients/ordersService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/ordersService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/paymentsService/models/AccessTokenResponse.js +0 -2
- package/clients/paymentsService/models/AccessTokenResponse.ts +0 -11
- package/clients/paymentsService/models/ForgotPasswordRequest.js +0 -2
- package/clients/paymentsService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/paymentsService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/paymentsService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/paymentsService/models/InfoRequest.js +0 -2
- package/clients/paymentsService/models/InfoRequest.ts +0 -10
- package/clients/paymentsService/models/InfoResponse.js +0 -2
- package/clients/paymentsService/models/InfoResponse.ts +0 -9
- package/clients/paymentsService/models/LoginRequest.js +0 -2
- package/clients/paymentsService/models/LoginRequest.ts +0 -11
- package/clients/paymentsService/models/RefreshRequest.js +0 -2
- package/clients/paymentsService/models/RefreshRequest.ts +0 -8
- package/clients/paymentsService/models/RegisterRequest.js +0 -2
- package/clients/paymentsService/models/RegisterRequest.ts +0 -9
- package/clients/paymentsService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/paymentsService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/paymentsService/models/ResetPasswordRequest.js +0 -2
- package/clients/paymentsService/models/ResetPasswordRequest.ts +0 -10
- package/clients/paymentsService/models/TwoFactorRequest.js +0 -2
- package/clients/paymentsService/models/TwoFactorRequest.ts +0 -12
- package/clients/paymentsService/models/TwoFactorResponse.js +0 -2
- package/clients/paymentsService/models/TwoFactorResponse.ts +0 -12
- package/clients/paymentsService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/paymentsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/pricingService/models/AccessTokenResponse.js +0 -2
- package/clients/pricingService/models/AccessTokenResponse.ts +0 -11
- package/clients/pricingService/models/ForgotPasswordRequest.js +0 -2
- package/clients/pricingService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/pricingService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/pricingService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/pricingService/models/InfoRequest.js +0 -2
- package/clients/pricingService/models/InfoRequest.ts +0 -10
- package/clients/pricingService/models/InfoResponse.js +0 -2
- package/clients/pricingService/models/InfoResponse.ts +0 -9
- package/clients/pricingService/models/LoginRequest.js +0 -2
- package/clients/pricingService/models/LoginRequest.ts +0 -11
- package/clients/pricingService/models/RefreshRequest.js +0 -2
- package/clients/pricingService/models/RefreshRequest.ts +0 -8
- package/clients/pricingService/models/RegisterRequest.js +0 -2
- package/clients/pricingService/models/RegisterRequest.ts +0 -9
- package/clients/pricingService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/pricingService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/pricingService/models/ResetPasswordRequest.js +0 -2
- package/clients/pricingService/models/ResetPasswordRequest.ts +0 -10
- package/clients/pricingService/models/TwoFactorRequest.js +0 -2
- package/clients/pricingService/models/TwoFactorRequest.ts +0 -12
- package/clients/pricingService/models/TwoFactorResponse.js +0 -2
- package/clients/pricingService/models/TwoFactorResponse.ts +0 -12
- package/clients/pricingService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/pricingService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/projectsService/models/AccessTokenResponse.js +0 -2
- package/clients/projectsService/models/AccessTokenResponse.ts +0 -11
- package/clients/projectsService/models/ForgotPasswordRequest.js +0 -2
- package/clients/projectsService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/projectsService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/projectsService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/projectsService/models/InfoRequest.js +0 -2
- package/clients/projectsService/models/InfoRequest.ts +0 -10
- package/clients/projectsService/models/InfoResponse.js +0 -2
- package/clients/projectsService/models/InfoResponse.ts +0 -9
- package/clients/projectsService/models/LoginRequest.js +0 -2
- package/clients/projectsService/models/LoginRequest.ts +0 -11
- package/clients/projectsService/models/RefreshRequest.js +0 -2
- package/clients/projectsService/models/RefreshRequest.ts +0 -8
- package/clients/projectsService/models/RegisterRequest.js +0 -2
- package/clients/projectsService/models/RegisterRequest.ts +0 -9
- package/clients/projectsService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/projectsService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/projectsService/models/ResetPasswordRequest.js +0 -2
- package/clients/projectsService/models/ResetPasswordRequest.ts +0 -10
- package/clients/projectsService/models/TwoFactorRequest.js +0 -2
- package/clients/projectsService/models/TwoFactorRequest.ts +0 -12
- package/clients/projectsService/models/TwoFactorResponse.js +0 -2
- package/clients/projectsService/models/TwoFactorResponse.ts +0 -12
- package/clients/projectsService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/projectsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/quotesService/models/AccessTokenResponse.js +0 -2
- package/clients/quotesService/models/AccessTokenResponse.ts +0 -11
- package/clients/quotesService/models/ForgotPasswordRequest.js +0 -2
- package/clients/quotesService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/quotesService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/quotesService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/quotesService/models/InfoRequest.js +0 -2
- package/clients/quotesService/models/InfoRequest.ts +0 -10
- package/clients/quotesService/models/InfoResponse.js +0 -2
- package/clients/quotesService/models/InfoResponse.ts +0 -9
- package/clients/quotesService/models/LoginRequest.js +0 -2
- package/clients/quotesService/models/LoginRequest.ts +0 -11
- package/clients/quotesService/models/RefreshRequest.js +0 -2
- package/clients/quotesService/models/RefreshRequest.ts +0 -8
- package/clients/quotesService/models/RegisterRequest.js +0 -2
- package/clients/quotesService/models/RegisterRequest.ts +0 -9
- package/clients/quotesService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/quotesService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/quotesService/models/ResetPasswordRequest.js +0 -2
- package/clients/quotesService/models/ResetPasswordRequest.ts +0 -10
- package/clients/quotesService/models/TwoFactorRequest.js +0 -2
- package/clients/quotesService/models/TwoFactorRequest.ts +0 -12
- package/clients/quotesService/models/TwoFactorResponse.js +0 -2
- package/clients/quotesService/models/TwoFactorResponse.ts +0 -12
- package/clients/quotesService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/quotesService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/salesService/models/AccessTokenResponse.js +0 -2
- package/clients/salesService/models/AccessTokenResponse.ts +0 -11
- package/clients/salesService/models/ForgotPasswordRequest.js +0 -2
- package/clients/salesService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/salesService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/salesService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/salesService/models/InfoRequest.js +0 -2
- package/clients/salesService/models/InfoRequest.ts +0 -10
- package/clients/salesService/models/InfoResponse.js +0 -2
- package/clients/salesService/models/InfoResponse.ts +0 -9
- package/clients/salesService/models/LoginRequest.js +0 -2
- package/clients/salesService/models/LoginRequest.ts +0 -11
- package/clients/salesService/models/RefreshRequest.js +0 -2
- package/clients/salesService/models/RefreshRequest.ts +0 -8
- package/clients/salesService/models/RegisterRequest.js +0 -2
- package/clients/salesService/models/RegisterRequest.ts +0 -9
- package/clients/salesService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/salesService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/salesService/models/ResetPasswordRequest.js +0 -2
- package/clients/salesService/models/ResetPasswordRequest.ts +0 -10
- package/clients/salesService/models/TwoFactorRequest.js +0 -2
- package/clients/salesService/models/TwoFactorRequest.ts +0 -12
- package/clients/salesService/models/TwoFactorResponse.js +0 -2
- package/clients/salesService/models/TwoFactorResponse.ts +0 -12
- package/clients/salesService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/salesService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/securityService/models/AccessTokenResponse.js +0 -2
- package/clients/securityService/models/AccessTokenResponse.ts +0 -11
- package/clients/securityService/models/ForgotPasswordRequest.js +0 -2
- package/clients/securityService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/securityService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/securityService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/securityService/models/InfoRequest.js +0 -2
- package/clients/securityService/models/InfoRequest.ts +0 -10
- package/clients/securityService/models/InfoResponse.js +0 -2
- package/clients/securityService/models/InfoResponse.ts +0 -9
- package/clients/securityService/models/LoginRequest.js +0 -2
- package/clients/securityService/models/LoginRequest.ts +0 -11
- package/clients/securityService/models/RefreshRequest.js +0 -2
- package/clients/securityService/models/RefreshRequest.ts +0 -8
- package/clients/securityService/models/RegisterRequest.js +0 -2
- package/clients/securityService/models/RegisterRequest.ts +0 -9
- package/clients/securityService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/securityService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/securityService/models/ResetPasswordRequest.js +0 -2
- package/clients/securityService/models/ResetPasswordRequest.ts +0 -10
- package/clients/securityService/models/TwoFactorRequest.js +0 -2
- package/clients/securityService/models/TwoFactorRequest.ts +0 -12
- package/clients/securityService/models/TwoFactorResponse.js +0 -2
- package/clients/securityService/models/TwoFactorResponse.ts +0 -12
- package/clients/securityService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/securityService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/socialService/models/AccessTokenResponse.js +0 -2
- package/clients/socialService/models/AccessTokenResponse.ts +0 -11
- package/clients/socialService/models/ForgotPasswordRequest.js +0 -2
- package/clients/socialService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/socialService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/socialService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/socialService/models/InfoRequest.js +0 -2
- package/clients/socialService/models/InfoRequest.ts +0 -10
- package/clients/socialService/models/InfoResponse.js +0 -2
- package/clients/socialService/models/InfoResponse.ts +0 -9
- package/clients/socialService/models/LoginRequest.js +0 -2
- package/clients/socialService/models/LoginRequest.ts +0 -11
- package/clients/socialService/models/RefreshRequest.js +0 -2
- package/clients/socialService/models/RefreshRequest.ts +0 -8
- package/clients/socialService/models/RegisterRequest.js +0 -2
- package/clients/socialService/models/RegisterRequest.ts +0 -9
- package/clients/socialService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/socialService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/socialService/models/ResetPasswordRequest.js +0 -2
- package/clients/socialService/models/ResetPasswordRequest.ts +0 -10
- package/clients/socialService/models/TwoFactorRequest.js +0 -2
- package/clients/socialService/models/TwoFactorRequest.ts +0 -12
- package/clients/socialService/models/TwoFactorResponse.js +0 -2
- package/clients/socialService/models/TwoFactorResponse.ts +0 -12
- package/clients/socialService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/socialService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/supportService/models/AccessTokenResponse.js +0 -2
- package/clients/supportService/models/AccessTokenResponse.ts +0 -11
- package/clients/supportService/models/ForgotPasswordRequest.js +0 -2
- package/clients/supportService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/supportService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/supportService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/supportService/models/InfoRequest.js +0 -2
- package/clients/supportService/models/InfoRequest.ts +0 -10
- package/clients/supportService/models/InfoResponse.js +0 -2
- package/clients/supportService/models/InfoResponse.ts +0 -9
- package/clients/supportService/models/LoginRequest.js +0 -2
- package/clients/supportService/models/LoginRequest.ts +0 -11
- package/clients/supportService/models/RefreshRequest.js +0 -2
- package/clients/supportService/models/RefreshRequest.ts +0 -8
- package/clients/supportService/models/RegisterRequest.js +0 -2
- package/clients/supportService/models/RegisterRequest.ts +0 -9
- package/clients/supportService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/supportService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/supportService/models/ResetPasswordRequest.js +0 -2
- package/clients/supportService/models/ResetPasswordRequest.ts +0 -10
- package/clients/supportService/models/TwoFactorRequest.js +0 -2
- package/clients/supportService/models/TwoFactorRequest.ts +0 -12
- package/clients/supportService/models/TwoFactorResponse.js +0 -2
- package/clients/supportService/models/TwoFactorResponse.ts +0 -12
- package/clients/supportService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/supportService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/systemService/models/AccessTokenResponse.js +0 -2
- package/clients/systemService/models/AccessTokenResponse.ts +0 -11
- package/clients/systemService/models/ForgotPasswordRequest.js +0 -2
- package/clients/systemService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/systemService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/systemService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/systemService/models/InfoRequest.js +0 -2
- package/clients/systemService/models/InfoRequest.ts +0 -10
- package/clients/systemService/models/InfoResponse.js +0 -2
- package/clients/systemService/models/InfoResponse.ts +0 -9
- package/clients/systemService/models/LoginRequest.js +0 -2
- package/clients/systemService/models/LoginRequest.ts +0 -11
- package/clients/systemService/models/RefreshRequest.js +0 -2
- package/clients/systemService/models/RefreshRequest.ts +0 -8
- package/clients/systemService/models/RegisterRequest.js +0 -2
- package/clients/systemService/models/RegisterRequest.ts +0 -9
- package/clients/systemService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/systemService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/systemService/models/ResetPasswordRequest.js +0 -2
- package/clients/systemService/models/ResetPasswordRequest.ts +0 -10
- package/clients/systemService/models/TwoFactorRequest.js +0 -2
- package/clients/systemService/models/TwoFactorRequest.ts +0 -12
- package/clients/systemService/models/TwoFactorResponse.js +0 -2
- package/clients/systemService/models/TwoFactorResponse.ts +0 -12
- package/clients/systemService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/systemService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/tenantService/models/AccessTokenResponse.js +0 -2
- package/clients/tenantService/models/AccessTokenResponse.ts +0 -11
- package/clients/tenantService/models/ForgotPasswordRequest.js +0 -2
- package/clients/tenantService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/tenantService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/tenantService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/tenantService/models/InfoRequest.js +0 -2
- package/clients/tenantService/models/InfoRequest.ts +0 -10
- package/clients/tenantService/models/InfoResponse.js +0 -2
- package/clients/tenantService/models/InfoResponse.ts +0 -9
- package/clients/tenantService/models/LoginRequest.js +0 -2
- package/clients/tenantService/models/LoginRequest.ts +0 -11
- package/clients/tenantService/models/RefreshRequest.js +0 -2
- package/clients/tenantService/models/RefreshRequest.ts +0 -8
- package/clients/tenantService/models/RegisterRequest.js +0 -2
- package/clients/tenantService/models/RegisterRequest.ts +0 -9
- package/clients/tenantService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/tenantService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/tenantService/models/ResetPasswordRequest.js +0 -2
- package/clients/tenantService/models/ResetPasswordRequest.ts +0 -10
- package/clients/tenantService/models/TwoFactorRequest.js +0 -2
- package/clients/tenantService/models/TwoFactorRequest.ts +0 -12
- package/clients/tenantService/models/TwoFactorResponse.js +0 -2
- package/clients/tenantService/models/TwoFactorResponse.ts +0 -12
- package/clients/tenantService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/tenantService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/timeTrackerService/models/AccessTokenResponse.js +0 -2
- package/clients/timeTrackerService/models/AccessTokenResponse.ts +0 -11
- package/clients/timeTrackerService/models/ForgotPasswordRequest.js +0 -2
- package/clients/timeTrackerService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/timeTrackerService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/timeTrackerService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/timeTrackerService/models/InfoRequest.js +0 -2
- package/clients/timeTrackerService/models/InfoRequest.ts +0 -10
- package/clients/timeTrackerService/models/InfoResponse.js +0 -2
- package/clients/timeTrackerService/models/InfoResponse.ts +0 -9
- package/clients/timeTrackerService/models/LoginRequest.js +0 -2
- package/clients/timeTrackerService/models/LoginRequest.ts +0 -11
- package/clients/timeTrackerService/models/RefreshRequest.js +0 -2
- package/clients/timeTrackerService/models/RefreshRequest.ts +0 -8
- package/clients/timeTrackerService/models/RegisterRequest.js +0 -2
- package/clients/timeTrackerService/models/RegisterRequest.ts +0 -9
- package/clients/timeTrackerService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/timeTrackerService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/timeTrackerService/models/ResetPasswordRequest.js +0 -2
- package/clients/timeTrackerService/models/ResetPasswordRequest.ts +0 -10
- package/clients/timeTrackerService/models/TwoFactorRequest.js +0 -2
- package/clients/timeTrackerService/models/TwoFactorRequest.ts +0 -12
- package/clients/timeTrackerService/models/TwoFactorResponse.js +0 -2
- package/clients/timeTrackerService/models/TwoFactorResponse.ts +0 -12
- package/clients/timeTrackerService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/timeTrackerService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- package/clients/walletsService/models/AccessTokenResponse.js +0 -2
- package/clients/walletsService/models/AccessTokenResponse.ts +0 -11
- package/clients/walletsService/models/ForgotPasswordRequest.js +0 -2
- package/clients/walletsService/models/ForgotPasswordRequest.ts +0 -8
- package/clients/walletsService/models/HttpValidationProblemDetails.js +0 -2
- package/clients/walletsService/models/HttpValidationProblemDetails.ts +0 -5
- package/clients/walletsService/models/InfoRequest.js +0 -2
- package/clients/walletsService/models/InfoRequest.ts +0 -10
- package/clients/walletsService/models/InfoResponse.js +0 -2
- package/clients/walletsService/models/InfoResponse.ts +0 -9
- package/clients/walletsService/models/LoginRequest.js +0 -2
- package/clients/walletsService/models/LoginRequest.ts +0 -11
- package/clients/walletsService/models/RefreshRequest.js +0 -2
- package/clients/walletsService/models/RefreshRequest.ts +0 -8
- package/clients/walletsService/models/RegisterRequest.js +0 -2
- package/clients/walletsService/models/RegisterRequest.ts +0 -9
- package/clients/walletsService/models/ResendConfirmationEmailRequest.js +0 -2
- package/clients/walletsService/models/ResendConfirmationEmailRequest.ts +0 -8
- package/clients/walletsService/models/ResetPasswordRequest.js +0 -2
- package/clients/walletsService/models/ResetPasswordRequest.ts +0 -10
- package/clients/walletsService/models/TwoFactorRequest.js +0 -2
- package/clients/walletsService/models/TwoFactorRequest.ts +0 -12
- package/clients/walletsService/models/TwoFactorResponse.js +0 -2
- package/clients/walletsService/models/TwoFactorResponse.ts +0 -12
- package/clients/walletsService/services/FenixAllianceAbsModulesWebService.js +0 -246
- package/clients/walletsService/services/FenixAllianceAbsModulesWebService.ts +0 -293
- /package/clients/{accountingService/models/AccessTokenResponse.js → contentService/models/PortalSettings.js} +0 -0
- /package/clients/{accountingService/models/ForgotPasswordRequest.js → contentService/models/PortalSettingsEnvelope.js} +0 -0
- /package/clients/{accountingService/models/HttpValidationProblemDetails.js → holderService/models/FollowRecordDtoListEnvelope.js} +0 -0
- /package/clients/{accountingService/models/InfoRequest.js → shipmentsService/core/ApiRequestOptions.js} +0 -0
- /package/clients/{accountingService/models/InfoResponse.js → shipmentsService/core/ApiResult.js} +0 -0
- /package/clients/{accountingService/models/LoginRequest.js → shipmentsService/models/ErrorEnvelope.js} +0 -0
- /package/clients/{accountingService/models/RefreshRequest.js → shipmentsService/models/ShipmentDto.js} +0 -0
- /package/clients/{accountingService/models/RegisterRequest.js → shipmentsService/models/ShipmentDtoListEnvelope.js} +0 -0
- /package/clients/{accountingService/models/ResendConfirmationEmailRequest.js → storageService/core/ApiRequestOptions.js} +0 -0
- /package/clients/{accountingService/models/ResetPasswordRequest.js → storageService/core/ApiResult.js} +0 -0
- /package/clients/{accountingService/models/TwoFactorRequest.js → storageService/models/BlobEnvelope.js} +0 -0
- /package/clients/{accountingService/models/TwoFactorResponse.js → storageService/models/EmptyEnvelope.js} +0 -0
- /package/clients/{cartService/models/AccessTokenResponse.js → storageService/models/ErrorEnvelope.js} +0 -0
- /package/clients/{cartService/models/ForgotPasswordRequest.js → storageService/models/FileUploadCreateDto.js} +0 -0
- /package/clients/{cartService/models/HttpValidationProblemDetails.js → storageService/models/FileUploadDto.js} +0 -0
- /package/clients/{cartService/models/InfoRequest.js → storageService/models/FileUploadDtoEnvelope.js} +0 -0
- /package/clients/{cartService/models/InfoResponse.js → storageService/models/FileUploadUpdateDto.js} +0 -0
|
@@ -7,7 +7,6 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
|
7
7
|
export { OpenAPI } from './core/OpenAPI';
|
|
8
8
|
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
9
9
|
|
|
10
|
-
export type { AccessTokenResponse } from './models/AccessTokenResponse';
|
|
11
10
|
export type { AddressDto } from './models/AddressDto';
|
|
12
11
|
export type { AddressDtoListEnvelope } from './models/AddressDtoListEnvelope';
|
|
13
12
|
export type { CartDto } from './models/CartDto';
|
|
@@ -23,19 +22,11 @@ export type { ExtendedTenantEnrolmentDtoListEnvelope } from './models/ExtendedTe
|
|
|
23
22
|
export { ExtendedUserDto } from './models/ExtendedUserDto';
|
|
24
23
|
export type { ExtendedUserDtoEnvelope } from './models/ExtendedUserDtoEnvelope';
|
|
25
24
|
export type { FollowRecordDto } from './models/FollowRecordDto';
|
|
26
|
-
export type {
|
|
27
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
28
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
29
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
25
|
+
export type { FollowRecordDtoListEnvelope } from './models/FollowRecordDtoListEnvelope';
|
|
30
26
|
export type { Int32Envelope } from './models/Int32Envelope';
|
|
31
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
32
27
|
export type { NotificationDto } from './models/NotificationDto';
|
|
33
28
|
export type { NotificationDtoListEnvelope } from './models/NotificationDtoListEnvelope';
|
|
34
29
|
export { Operation } from './models/Operation';
|
|
35
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
36
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
37
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
38
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
39
30
|
export { SocialProfileDto } from './models/SocialProfileDto';
|
|
40
31
|
export type { SocialProfileDtoEnvelope } from './models/SocialProfileDtoEnvelope';
|
|
41
32
|
export type { TenantDto } from './models/TenantDto';
|
|
@@ -45,8 +36,6 @@ export type { TenantEnrolmentDtoEnvelope } from './models/TenantEnrolmentDtoEnve
|
|
|
45
36
|
export type { TenantEnrolmentDtoListEnvelope } from './models/TenantEnrolmentDtoListEnvelope';
|
|
46
37
|
export type { TenantInvitationDto } from './models/TenantInvitationDto';
|
|
47
38
|
export type { TenantInvitationDtoListEnvelope } from './models/TenantInvitationDtoListEnvelope';
|
|
48
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
49
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
50
39
|
export { UserDto } from './models/UserDto';
|
|
51
40
|
export type { UserDtoEnvelope } from './models/UserDtoEnvelope';
|
|
52
41
|
export { UserSettingsDto } from './models/UserSettingsDto';
|
|
@@ -56,5 +45,4 @@ export { UserUpdateDto } from './models/UserUpdateDto';
|
|
|
56
45
|
export type { WalletDto } from './models/WalletDto';
|
|
57
46
|
export type { WalletDtoEnvelope } from './models/WalletDtoEnvelope';
|
|
58
47
|
|
|
59
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
60
48
|
export { HolderService } from './services/HolderService';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { FollowRecordDto } from './FollowRecordDto';
|
|
6
|
+
export type FollowRecordDtoListEnvelope = {
|
|
7
|
+
readonly isSuccess?: boolean;
|
|
8
|
+
errorMessage?: string | null;
|
|
9
|
+
correlationId?: string | null;
|
|
10
|
+
readonly timestamp?: string;
|
|
11
|
+
readonly activityId?: string | null;
|
|
12
|
+
result?: Array<FollowRecordDto> | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -5,11 +5,12 @@ const OpenAPI_1 = require("../core/OpenAPI");
|
|
|
5
5
|
const request_1 = require("../core/request");
|
|
6
6
|
class HolderService {
|
|
7
7
|
/**
|
|
8
|
+
* Gets the current user
|
|
8
9
|
* @param xApiVersion
|
|
9
10
|
* @returns UserDtoEnvelope OK
|
|
10
11
|
* @throws ApiError
|
|
11
12
|
*/
|
|
12
|
-
static
|
|
13
|
+
static getCurrentUser(xApiVersion) {
|
|
13
14
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
14
15
|
method: 'GET',
|
|
15
16
|
url: '/api/v2/Me',
|
|
@@ -22,12 +23,13 @@ class HolderService {
|
|
|
22
23
|
});
|
|
23
24
|
}
|
|
24
25
|
/**
|
|
26
|
+
* Updates the current user
|
|
25
27
|
* @param xApiVersion
|
|
26
28
|
* @param requestBody
|
|
27
29
|
* @returns EmptyEnvelopeEnvelope OK
|
|
28
30
|
* @throws ApiError
|
|
29
31
|
*/
|
|
30
|
-
static
|
|
32
|
+
static updateCurrentUser(xApiVersion, requestBody) {
|
|
31
33
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
32
34
|
method: 'PUT',
|
|
33
35
|
url: '/api/v2/Me',
|
|
@@ -42,12 +44,13 @@ class HolderService {
|
|
|
42
44
|
});
|
|
43
45
|
}
|
|
44
46
|
/**
|
|
47
|
+
* Patches the current user
|
|
45
48
|
* @param xApiVersion
|
|
46
49
|
* @param requestBody
|
|
47
50
|
* @returns EmptyEnvelopeEnvelope OK
|
|
48
51
|
* @throws ApiError
|
|
49
52
|
*/
|
|
50
|
-
static
|
|
53
|
+
static patchCurrentUser(xApiVersion, requestBody) {
|
|
51
54
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
52
55
|
method: 'PATCH',
|
|
53
56
|
url: '/api/v2/Me',
|
|
@@ -62,11 +65,12 @@ class HolderService {
|
|
|
62
65
|
});
|
|
63
66
|
}
|
|
64
67
|
/**
|
|
68
|
+
* Gets the current user with extended information
|
|
65
69
|
* @param xApiVersion
|
|
66
70
|
* @returns ExtendedUserDtoEnvelope OK
|
|
67
71
|
* @throws ApiError
|
|
68
72
|
*/
|
|
69
|
-
static
|
|
73
|
+
static getExtendedCurrentUser(xApiVersion) {
|
|
70
74
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
71
75
|
method: 'GET',
|
|
72
76
|
url: '/api/v2/Me/Extended',
|
|
@@ -79,11 +83,12 @@ class HolderService {
|
|
|
79
83
|
});
|
|
80
84
|
}
|
|
81
85
|
/**
|
|
86
|
+
* Gets the current user's avatar
|
|
82
87
|
* @param xApiVersion
|
|
83
|
-
* @returns
|
|
88
|
+
* @returns binary OK
|
|
84
89
|
* @throws ApiError
|
|
85
90
|
*/
|
|
86
|
-
static
|
|
91
|
+
static getMyAvatar(xApiVersion) {
|
|
87
92
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
88
93
|
method: 'GET',
|
|
89
94
|
url: '/api/v2/Me/Avatar',
|
|
@@ -92,16 +97,18 @@ class HolderService {
|
|
|
92
97
|
},
|
|
93
98
|
errors: {
|
|
94
99
|
401: `Unauthorized`,
|
|
100
|
+
403: `Forbidden`,
|
|
95
101
|
},
|
|
96
102
|
});
|
|
97
103
|
}
|
|
98
104
|
/**
|
|
105
|
+
* Updates the current user's avatar
|
|
99
106
|
* @param xApiVersion
|
|
100
107
|
* @param formData
|
|
101
108
|
* @returns EmptyEnvelope OK
|
|
102
109
|
* @throws ApiError
|
|
103
110
|
*/
|
|
104
|
-
static
|
|
111
|
+
static updateMyAvatar(xApiVersion, formData) {
|
|
105
112
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
106
113
|
method: 'POST',
|
|
107
114
|
url: '/api/v2/Me/Avatar',
|
|
@@ -117,11 +124,12 @@ class HolderService {
|
|
|
117
124
|
});
|
|
118
125
|
}
|
|
119
126
|
/**
|
|
127
|
+
* Gets the social profiles that the current user follows
|
|
120
128
|
* @param xApiVersion
|
|
121
|
-
* @returns
|
|
129
|
+
* @returns FollowRecordDtoListEnvelope OK
|
|
122
130
|
* @throws ApiError
|
|
123
131
|
*/
|
|
124
|
-
static
|
|
132
|
+
static getMyFollows(xApiVersion) {
|
|
125
133
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
126
134
|
method: 'GET',
|
|
127
135
|
url: '/api/v2/Me/Follows',
|
|
@@ -134,11 +142,12 @@ class HolderService {
|
|
|
134
142
|
});
|
|
135
143
|
}
|
|
136
144
|
/**
|
|
145
|
+
* Counts the social profiles that the current user follows
|
|
137
146
|
* @param xApiVersion
|
|
138
|
-
* @returns
|
|
147
|
+
* @returns Int32Envelope OK
|
|
139
148
|
* @throws ApiError
|
|
140
149
|
*/
|
|
141
|
-
static
|
|
150
|
+
static countMyFollows(xApiVersion) {
|
|
142
151
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
143
152
|
method: 'GET',
|
|
144
153
|
url: '/api/v2/Me/Follows/Count',
|
|
@@ -151,11 +160,12 @@ class HolderService {
|
|
|
151
160
|
});
|
|
152
161
|
}
|
|
153
162
|
/**
|
|
163
|
+
* Gets the social profiles that follow the current user
|
|
154
164
|
* @param xApiVersion
|
|
155
|
-
* @returns
|
|
165
|
+
* @returns FollowRecordDtoListEnvelope OK
|
|
156
166
|
* @throws ApiError
|
|
157
167
|
*/
|
|
158
|
-
static
|
|
168
|
+
static getMyFollowers(xApiVersion) {
|
|
159
169
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
160
170
|
method: 'GET',
|
|
161
171
|
url: '/api/v2/Me/Followers',
|
|
@@ -168,11 +178,12 @@ class HolderService {
|
|
|
168
178
|
});
|
|
169
179
|
}
|
|
170
180
|
/**
|
|
181
|
+
* Counts the social profiles that follow the current user
|
|
171
182
|
* @param xApiVersion
|
|
172
|
-
* @returns
|
|
183
|
+
* @returns Int32Envelope OK
|
|
173
184
|
* @throws ApiError
|
|
174
185
|
*/
|
|
175
|
-
static
|
|
186
|
+
static countMyFollowers(xApiVersion) {
|
|
176
187
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
177
188
|
method: 'GET',
|
|
178
189
|
url: '/api/v2/Me/Followers/Count',
|
|
@@ -185,11 +196,12 @@ class HolderService {
|
|
|
185
196
|
});
|
|
186
197
|
}
|
|
187
198
|
/**
|
|
199
|
+
* Gets the tenants that the current user is enrolled in
|
|
188
200
|
* @param xApiVersion
|
|
189
201
|
* @returns TenantDtoListEnvelope OK
|
|
190
202
|
* @throws ApiError
|
|
191
203
|
*/
|
|
192
|
-
static
|
|
204
|
+
static getMyTenants(xApiVersion) {
|
|
193
205
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
194
206
|
method: 'GET',
|
|
195
207
|
url: '/api/v2/Me/Businesses',
|
|
@@ -203,11 +215,12 @@ class HolderService {
|
|
|
203
215
|
});
|
|
204
216
|
}
|
|
205
217
|
/**
|
|
218
|
+
* Counts the tenants that the current user is enrolled in
|
|
206
219
|
* @param xApiVersion
|
|
207
220
|
* @returns Int32Envelope OK
|
|
208
221
|
* @throws ApiError
|
|
209
222
|
*/
|
|
210
|
-
static
|
|
223
|
+
static countMyTenants(xApiVersion) {
|
|
211
224
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
212
225
|
method: 'GET',
|
|
213
226
|
url: '/api/v2/Me/Businesses/Count',
|
|
@@ -221,11 +234,12 @@ class HolderService {
|
|
|
221
234
|
});
|
|
222
235
|
}
|
|
223
236
|
/**
|
|
237
|
+
* Gets the tenants that the current user is enrolled in with extended information
|
|
224
238
|
* @param xApiVersion
|
|
225
239
|
* @returns ExtendedTenantDtoListEnvelope OK
|
|
226
240
|
* @throws ApiError
|
|
227
241
|
*/
|
|
228
|
-
static
|
|
242
|
+
static getMyTenantsExtended(xApiVersion) {
|
|
229
243
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
230
244
|
method: 'GET',
|
|
231
245
|
url: '/api/v2/Me/Businesses/Extended',
|
|
@@ -239,11 +253,12 @@ class HolderService {
|
|
|
239
253
|
});
|
|
240
254
|
}
|
|
241
255
|
/**
|
|
256
|
+
* Gets the list of enrollments for the current user
|
|
242
257
|
* @param xApiVersion
|
|
243
258
|
* @returns TenantEnrolmentDtoListEnvelope OK
|
|
244
259
|
* @throws ApiError
|
|
245
260
|
*/
|
|
246
|
-
static
|
|
261
|
+
static getMyEnrollments(xApiVersion) {
|
|
247
262
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
248
263
|
method: 'GET',
|
|
249
264
|
url: '/api/v2/Me/Enrollments',
|
|
@@ -256,11 +271,12 @@ class HolderService {
|
|
|
256
271
|
});
|
|
257
272
|
}
|
|
258
273
|
/**
|
|
274
|
+
* Gets the list of enrollments for the current user with extended information
|
|
259
275
|
* @param xApiVersion
|
|
260
276
|
* @returns ExtendedTenantEnrolmentDtoListEnvelope OK
|
|
261
277
|
* @throws ApiError
|
|
262
278
|
*/
|
|
263
|
-
static
|
|
279
|
+
static getMyEnrollmentsExtended(xApiVersion) {
|
|
264
280
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
265
281
|
method: 'GET',
|
|
266
282
|
url: '/api/v2/Me/Enrollments/Extended',
|
|
@@ -273,13 +289,14 @@ class HolderService {
|
|
|
273
289
|
});
|
|
274
290
|
}
|
|
275
291
|
/**
|
|
292
|
+
* Gets a single TenantEnrollment by its ID
|
|
276
293
|
* @param enrollmentId
|
|
277
294
|
* @param xApiVersion
|
|
278
295
|
* @param requestBody
|
|
279
296
|
* @returns TenantEnrolmentDtoEnvelope OK
|
|
280
297
|
* @throws ApiError
|
|
281
298
|
*/
|
|
282
|
-
static
|
|
299
|
+
static getMyEnrollment(enrollmentId, xApiVersion, requestBody) {
|
|
283
300
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
284
301
|
method: 'GET',
|
|
285
302
|
url: '/api/v2/Me/Enrollments/{enrollmentId}',
|
|
@@ -297,11 +314,12 @@ class HolderService {
|
|
|
297
314
|
});
|
|
298
315
|
}
|
|
299
316
|
/**
|
|
317
|
+
* Gets the current user's social profile
|
|
300
318
|
* @param xApiVersion
|
|
301
319
|
* @returns SocialProfileDtoEnvelope OK
|
|
302
320
|
* @throws ApiError
|
|
303
321
|
*/
|
|
304
|
-
static
|
|
322
|
+
static getMySocialProfile(xApiVersion) {
|
|
305
323
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
306
324
|
method: 'GET',
|
|
307
325
|
url: '/api/v2/Me/SocialProfile',
|
|
@@ -314,11 +332,12 @@ class HolderService {
|
|
|
314
332
|
});
|
|
315
333
|
}
|
|
316
334
|
/**
|
|
335
|
+
* Gets the current user's cart
|
|
317
336
|
* @param xApiVersion
|
|
318
337
|
* @returns CartDtoEnvelope OK
|
|
319
338
|
* @throws ApiError
|
|
320
339
|
*/
|
|
321
|
-
static
|
|
340
|
+
static getMyCart(xApiVersion) {
|
|
322
341
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
323
342
|
method: 'GET',
|
|
324
343
|
url: '/api/v2/Me/Cart',
|
|
@@ -331,11 +350,12 @@ class HolderService {
|
|
|
331
350
|
});
|
|
332
351
|
}
|
|
333
352
|
/**
|
|
353
|
+
* Gets the current user's billing profile
|
|
334
354
|
* @param xApiVersion
|
|
335
355
|
* @returns WalletDtoEnvelope OK
|
|
336
356
|
* @throws ApiError
|
|
337
357
|
*/
|
|
338
|
-
static
|
|
358
|
+
static getMyWallet(xApiVersion) {
|
|
339
359
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
340
360
|
method: 'GET',
|
|
341
361
|
url: '/api/v2/Me/Wallet',
|
|
@@ -348,11 +368,12 @@ class HolderService {
|
|
|
348
368
|
});
|
|
349
369
|
}
|
|
350
370
|
/**
|
|
371
|
+
* Gets the list of notifications for the current user
|
|
351
372
|
* @param xApiVersion
|
|
352
373
|
* @returns NotificationDtoListEnvelope OK
|
|
353
374
|
* @throws ApiError
|
|
354
375
|
*/
|
|
355
|
-
static
|
|
376
|
+
static getMyNotifications(xApiVersion) {
|
|
356
377
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
357
378
|
method: 'GET',
|
|
358
379
|
url: '/api/v2/Me/Notifications',
|
|
@@ -365,11 +386,12 @@ class HolderService {
|
|
|
365
386
|
});
|
|
366
387
|
}
|
|
367
388
|
/**
|
|
389
|
+
* Counts the list of notifications for the current user
|
|
368
390
|
* @param xApiVersion
|
|
369
391
|
* @returns Int32Envelope OK
|
|
370
392
|
* @throws ApiError
|
|
371
393
|
*/
|
|
372
|
-
static
|
|
394
|
+
static countMyNotifications(xApiVersion) {
|
|
373
395
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
374
396
|
method: 'GET',
|
|
375
397
|
url: '/api/v2/Me/Notifications/Count',
|
|
@@ -382,11 +404,12 @@ class HolderService {
|
|
|
382
404
|
});
|
|
383
405
|
}
|
|
384
406
|
/**
|
|
407
|
+
* Gets the settings for the current user
|
|
385
408
|
* @param xApiVersion
|
|
386
409
|
* @returns UserSettingsDtoEnvelope OK
|
|
387
410
|
* @throws ApiError
|
|
388
411
|
*/
|
|
389
|
-
static
|
|
412
|
+
static getMySettings(xApiVersion) {
|
|
390
413
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
391
414
|
method: 'GET',
|
|
392
415
|
url: '/api/v2/Me/Settings',
|
|
@@ -399,12 +422,13 @@ class HolderService {
|
|
|
399
422
|
});
|
|
400
423
|
}
|
|
401
424
|
/**
|
|
425
|
+
* Updates the settings for the current user
|
|
402
426
|
* @param xApiVersion
|
|
403
427
|
* @param requestBody
|
|
404
428
|
* @returns UserSettingsDtoEnvelope OK
|
|
405
429
|
* @throws ApiError
|
|
406
430
|
*/
|
|
407
|
-
static
|
|
431
|
+
static updateMySettings(xApiVersion, requestBody) {
|
|
408
432
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
409
433
|
method: 'PUT',
|
|
410
434
|
url: '/api/v2/Me/Settings',
|
|
@@ -419,11 +443,12 @@ class HolderService {
|
|
|
419
443
|
});
|
|
420
444
|
}
|
|
421
445
|
/**
|
|
446
|
+
* Gets the list of addresses for the current user
|
|
422
447
|
* @param xApiVersion
|
|
423
448
|
* @returns AddressDtoListEnvelope OK
|
|
424
449
|
* @throws ApiError
|
|
425
450
|
*/
|
|
426
|
-
static
|
|
451
|
+
static getMyAddresses(xApiVersion) {
|
|
427
452
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
428
453
|
method: 'GET',
|
|
429
454
|
url: '/api/v2/Me/Addresses',
|
|
@@ -436,11 +461,12 @@ class HolderService {
|
|
|
436
461
|
});
|
|
437
462
|
}
|
|
438
463
|
/**
|
|
464
|
+
* Gets the list of tenant enrollment invitations for the current user
|
|
439
465
|
* @param xApiVersion
|
|
440
466
|
* @returns TenantInvitationDtoListEnvelope OK
|
|
441
467
|
* @throws ApiError
|
|
442
468
|
*/
|
|
443
|
-
static
|
|
469
|
+
static getMyInvitations(xApiVersion) {
|
|
444
470
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
445
471
|
method: 'GET',
|
|
446
472
|
url: '/api/v2/Me/Invitations',
|