@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
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import { ApiError } from './ApiError';
|
|
6
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
7
|
+
import type { ApiResult } from './ApiResult';
|
|
8
|
+
import { CancelablePromise } from './CancelablePromise';
|
|
9
|
+
import type { OnCancel } from './CancelablePromise';
|
|
10
|
+
import type { OpenAPIConfig } from './OpenAPI';
|
|
11
|
+
|
|
12
|
+
export const isDefined = <T>(value: T | null | undefined): value is Exclude<T, null | undefined> => {
|
|
13
|
+
return value !== undefined && value !== null;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const isString = (value: any): value is string => {
|
|
17
|
+
return typeof value === 'string';
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export const isStringWithValue = (value: any): value is string => {
|
|
21
|
+
return isString(value) && value !== '';
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const isBlob = (value: any): value is Blob => {
|
|
25
|
+
return (
|
|
26
|
+
typeof value === 'object' &&
|
|
27
|
+
typeof value.type === 'string' &&
|
|
28
|
+
typeof value.stream === 'function' &&
|
|
29
|
+
typeof value.arrayBuffer === 'function' &&
|
|
30
|
+
typeof value.constructor === 'function' &&
|
|
31
|
+
typeof value.constructor.name === 'string' &&
|
|
32
|
+
/^(Blob|File)$/.test(value.constructor.name) &&
|
|
33
|
+
/^(Blob|File)$/.test(value[Symbol.toStringTag])
|
|
34
|
+
);
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export const isFormData = (value: any): value is FormData => {
|
|
38
|
+
return value instanceof FormData;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export const base64 = (str: string): string => {
|
|
42
|
+
try {
|
|
43
|
+
return btoa(str);
|
|
44
|
+
} catch (err) {
|
|
45
|
+
// @ts-ignore
|
|
46
|
+
return Buffer.from(str).toString('base64');
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export const getQueryString = (params: Record<string, any>): string => {
|
|
51
|
+
const qs: string[] = [];
|
|
52
|
+
|
|
53
|
+
const append = (key: string, value: any) => {
|
|
54
|
+
qs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const process = (key: string, value: any) => {
|
|
58
|
+
if (isDefined(value)) {
|
|
59
|
+
if (Array.isArray(value)) {
|
|
60
|
+
value.forEach(v => {
|
|
61
|
+
process(key, v);
|
|
62
|
+
});
|
|
63
|
+
} else if (typeof value === 'object') {
|
|
64
|
+
Object.entries(value).forEach(([k, v]) => {
|
|
65
|
+
process(`${key}[${k}]`, v);
|
|
66
|
+
});
|
|
67
|
+
} else {
|
|
68
|
+
append(key, value);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
Object.entries(params).forEach(([key, value]) => {
|
|
74
|
+
process(key, value);
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
if (qs.length > 0) {
|
|
78
|
+
return `?${qs.join('&')}`;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
return '';
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
const getUrl = (config: OpenAPIConfig, options: ApiRequestOptions): string => {
|
|
85
|
+
const encoder = config.ENCODE_PATH || encodeURI;
|
|
86
|
+
|
|
87
|
+
const path = options.url
|
|
88
|
+
.replace('{api-version}', config.VERSION)
|
|
89
|
+
.replace(/{(.*?)}/g, (substring: string, group: string) => {
|
|
90
|
+
if (options.path?.hasOwnProperty(group)) {
|
|
91
|
+
return encoder(String(options.path[group]));
|
|
92
|
+
}
|
|
93
|
+
return substring;
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
const url = `${config.BASE}${path}`;
|
|
97
|
+
if (options.query) {
|
|
98
|
+
return `${url}${getQueryString(options.query)}`;
|
|
99
|
+
}
|
|
100
|
+
return url;
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export const getFormData = (options: ApiRequestOptions): FormData | undefined => {
|
|
104
|
+
if (options.formData) {
|
|
105
|
+
const formData = new FormData();
|
|
106
|
+
|
|
107
|
+
const process = (key: string, value: any) => {
|
|
108
|
+
if (isString(value) || isBlob(value)) {
|
|
109
|
+
formData.append(key, value);
|
|
110
|
+
} else {
|
|
111
|
+
formData.append(key, JSON.stringify(value));
|
|
112
|
+
}
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
Object.entries(options.formData)
|
|
116
|
+
.filter(([_, value]) => isDefined(value))
|
|
117
|
+
.forEach(([key, value]) => {
|
|
118
|
+
if (Array.isArray(value)) {
|
|
119
|
+
value.forEach(v => process(key, v));
|
|
120
|
+
} else {
|
|
121
|
+
process(key, value);
|
|
122
|
+
}
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
return formData;
|
|
126
|
+
}
|
|
127
|
+
return undefined;
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
|
|
131
|
+
|
|
132
|
+
export const resolve = async <T>(options: ApiRequestOptions, resolver?: T | Resolver<T>): Promise<T | undefined> => {
|
|
133
|
+
if (typeof resolver === 'function') {
|
|
134
|
+
return (resolver as Resolver<T>)(options);
|
|
135
|
+
}
|
|
136
|
+
return resolver;
|
|
137
|
+
};
|
|
138
|
+
|
|
139
|
+
export const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions): Promise<Headers> => {
|
|
140
|
+
const [token, username, password, additionalHeaders] = await Promise.all([
|
|
141
|
+
resolve(options, config.TOKEN),
|
|
142
|
+
resolve(options, config.USERNAME),
|
|
143
|
+
resolve(options, config.PASSWORD),
|
|
144
|
+
resolve(options, config.HEADERS),
|
|
145
|
+
]);
|
|
146
|
+
|
|
147
|
+
const headers = Object.entries({
|
|
148
|
+
Accept: 'application/json',
|
|
149
|
+
...additionalHeaders,
|
|
150
|
+
...options.headers,
|
|
151
|
+
})
|
|
152
|
+
.filter(([_, value]) => isDefined(value))
|
|
153
|
+
.reduce((headers, [key, value]) => ({
|
|
154
|
+
...headers,
|
|
155
|
+
[key]: String(value),
|
|
156
|
+
}), {} as Record<string, string>);
|
|
157
|
+
|
|
158
|
+
if (isStringWithValue(token)) {
|
|
159
|
+
headers['Authorization'] = `Bearer ${token}`;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
if (isStringWithValue(username) && isStringWithValue(password)) {
|
|
163
|
+
const credentials = base64(`${username}:${password}`);
|
|
164
|
+
headers['Authorization'] = `Basic ${credentials}`;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
if (options.body) {
|
|
168
|
+
if (options.mediaType) {
|
|
169
|
+
headers['Content-Type'] = options.mediaType;
|
|
170
|
+
} else if (isBlob(options.body)) {
|
|
171
|
+
headers['Content-Type'] = options.body.type || 'application/octet-stream';
|
|
172
|
+
} else if (isString(options.body)) {
|
|
173
|
+
headers['Content-Type'] = 'text/plain';
|
|
174
|
+
} else if (!isFormData(options.body)) {
|
|
175
|
+
headers['Content-Type'] = 'application/json';
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
return new Headers(headers);
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
export const getRequestBody = (options: ApiRequestOptions): any => {
|
|
183
|
+
if (options.body !== undefined) {
|
|
184
|
+
if (options.mediaType?.includes('/json')) {
|
|
185
|
+
return JSON.stringify(options.body)
|
|
186
|
+
} else if (isString(options.body) || isBlob(options.body) || isFormData(options.body)) {
|
|
187
|
+
return options.body;
|
|
188
|
+
} else {
|
|
189
|
+
return JSON.stringify(options.body);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
return undefined;
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
export const sendRequest = async (
|
|
196
|
+
config: OpenAPIConfig,
|
|
197
|
+
options: ApiRequestOptions,
|
|
198
|
+
url: string,
|
|
199
|
+
body: any,
|
|
200
|
+
formData: FormData | undefined,
|
|
201
|
+
headers: Headers,
|
|
202
|
+
onCancel: OnCancel
|
|
203
|
+
): Promise<Response> => {
|
|
204
|
+
const controller = new AbortController();
|
|
205
|
+
|
|
206
|
+
const request: RequestInit = {
|
|
207
|
+
headers,
|
|
208
|
+
body: body ?? formData,
|
|
209
|
+
method: options.method,
|
|
210
|
+
signal: controller.signal,
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
if (config.WITH_CREDENTIALS) {
|
|
214
|
+
request.credentials = config.CREDENTIALS;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
onCancel(() => controller.abort());
|
|
218
|
+
|
|
219
|
+
return await fetch(url, request);
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
export const getResponseHeader = (response: Response, responseHeader?: string): string | undefined => {
|
|
223
|
+
if (responseHeader) {
|
|
224
|
+
const content = response.headers.get(responseHeader);
|
|
225
|
+
if (isString(content)) {
|
|
226
|
+
return content;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
return undefined;
|
|
230
|
+
};
|
|
231
|
+
|
|
232
|
+
export const getResponseBody = async (response: Response): Promise<any> => {
|
|
233
|
+
if (response.status !== 204) {
|
|
234
|
+
try {
|
|
235
|
+
const contentType = response.headers.get('Content-Type');
|
|
236
|
+
if (contentType) {
|
|
237
|
+
const jsonTypes = ['application/json', 'application/problem+json']
|
|
238
|
+
const isJSON = jsonTypes.some(type => contentType.toLowerCase().startsWith(type));
|
|
239
|
+
if (isJSON) {
|
|
240
|
+
return await response.json();
|
|
241
|
+
} else {
|
|
242
|
+
return await response.text();
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
} catch (error) {
|
|
246
|
+
console.error(error);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
return undefined;
|
|
250
|
+
};
|
|
251
|
+
|
|
252
|
+
export const catchErrorCodes = (options: ApiRequestOptions, result: ApiResult): void => {
|
|
253
|
+
const errors: Record<number, string> = {
|
|
254
|
+
400: 'Bad Request',
|
|
255
|
+
401: 'Unauthorized',
|
|
256
|
+
403: 'Forbidden',
|
|
257
|
+
404: 'Not Found',
|
|
258
|
+
500: 'Internal Server Error',
|
|
259
|
+
502: 'Bad Gateway',
|
|
260
|
+
503: 'Service Unavailable',
|
|
261
|
+
...options.errors,
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
const error = errors[result.status];
|
|
265
|
+
if (error) {
|
|
266
|
+
throw new ApiError(options, result, error);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
if (!result.ok) {
|
|
270
|
+
const errorStatus = result.status ?? 'unknown';
|
|
271
|
+
const errorStatusText = result.statusText ?? 'unknown';
|
|
272
|
+
const errorBody = (() => {
|
|
273
|
+
try {
|
|
274
|
+
return JSON.stringify(result.body, null, 2);
|
|
275
|
+
} catch (e) {
|
|
276
|
+
return undefined;
|
|
277
|
+
}
|
|
278
|
+
})();
|
|
279
|
+
|
|
280
|
+
throw new ApiError(options, result,
|
|
281
|
+
`Generic Error: status: ${errorStatus}; status text: ${errorStatusText}; body: ${errorBody}`
|
|
282
|
+
);
|
|
283
|
+
}
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Request method
|
|
288
|
+
* @param config The OpenAPI configuration object
|
|
289
|
+
* @param options The request options from the service
|
|
290
|
+
* @returns CancelablePromise<T>
|
|
291
|
+
* @throws ApiError
|
|
292
|
+
*/
|
|
293
|
+
export const request = <T>(config: OpenAPIConfig, options: ApiRequestOptions): CancelablePromise<T> => {
|
|
294
|
+
return new CancelablePromise(async (resolve, reject, onCancel) => {
|
|
295
|
+
try {
|
|
296
|
+
const url = getUrl(config, options);
|
|
297
|
+
const formData = getFormData(options);
|
|
298
|
+
const body = getRequestBody(options);
|
|
299
|
+
const headers = await getHeaders(config, options);
|
|
300
|
+
|
|
301
|
+
if (!onCancel.isCancelled) {
|
|
302
|
+
const response = await sendRequest(config, options, url, body, formData, headers, onCancel);
|
|
303
|
+
const responseBody = await getResponseBody(response);
|
|
304
|
+
const responseHeader = getResponseHeader(response, options.responseHeader);
|
|
305
|
+
|
|
306
|
+
const result: ApiResult = {
|
|
307
|
+
url,
|
|
308
|
+
ok: response.ok,
|
|
309
|
+
status: response.status,
|
|
310
|
+
statusText: response.statusText,
|
|
311
|
+
body: responseHeader ?? responseBody,
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
catchErrorCodes(options, result);
|
|
315
|
+
|
|
316
|
+
resolve(result.body);
|
|
317
|
+
}
|
|
318
|
+
} catch (error) {
|
|
319
|
+
reject(error);
|
|
320
|
+
}
|
|
321
|
+
});
|
|
322
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShipmentsService = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
|
|
4
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
5
|
+
/* istanbul ignore file */
|
|
6
|
+
/* tslint:disable */
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
var ApiError_1 = require("./core/ApiError");
|
|
9
|
+
Object.defineProperty(exports, "ApiError", { enumerable: true, get: function () { return ApiError_1.ApiError; } });
|
|
10
|
+
var CancelablePromise_1 = require("./core/CancelablePromise");
|
|
11
|
+
Object.defineProperty(exports, "CancelablePromise", { enumerable: true, get: function () { return CancelablePromise_1.CancelablePromise; } });
|
|
12
|
+
Object.defineProperty(exports, "CancelError", { enumerable: true, get: function () { return CancelablePromise_1.CancelError; } });
|
|
13
|
+
var OpenAPI_1 = require("./core/OpenAPI");
|
|
14
|
+
Object.defineProperty(exports, "OpenAPI", { enumerable: true, get: function () { return OpenAPI_1.OpenAPI; } });
|
|
15
|
+
var ShipmentsService_1 = require("./services/ShipmentsService");
|
|
16
|
+
Object.defineProperty(exports, "ShipmentsService", { enumerable: true, get: function () { return ShipmentsService_1.ShipmentsService; } });
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export { ApiError } from './core/ApiError';
|
|
6
|
+
export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
7
|
+
export { OpenAPI } from './core/OpenAPI';
|
|
8
|
+
export type { OpenAPIConfig } from './core/OpenAPI';
|
|
9
|
+
|
|
10
|
+
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
11
|
+
export type { ShipmentDto } from './models/ShipmentDto';
|
|
12
|
+
export type { ShipmentDtoListEnvelope } from './models/ShipmentDtoListEnvelope';
|
|
13
|
+
|
|
14
|
+
export { ShipmentsService } from './services/ShipmentsService';
|
package/clients/{contentService/models/PortalEnvelope.ts → shipmentsService/models/ErrorEnvelope.ts}
RENAMED
|
@@ -2,13 +2,11 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
|
|
6
|
-
export type PortalEnvelope = {
|
|
5
|
+
export type ErrorEnvelope = {
|
|
7
6
|
readonly isSuccess?: boolean;
|
|
8
7
|
errorMessage?: string | null;
|
|
9
8
|
correlationId?: string | null;
|
|
10
9
|
readonly timestamp?: string;
|
|
11
10
|
readonly activityId?: string | null;
|
|
12
|
-
result?: Portal;
|
|
13
11
|
};
|
|
14
12
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ShipmentDto = {
|
|
6
|
+
id?: string | null;
|
|
7
|
+
trackingCode?: string | null;
|
|
8
|
+
isInternational?: boolean;
|
|
9
|
+
shipmentTimestamp?: string;
|
|
10
|
+
deliveryTimestamp?: string;
|
|
11
|
+
expectedShippingDate?: string;
|
|
12
|
+
expectedDeliveryDate?: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -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 { ShipmentDto } from './ShipmentDto';
|
|
6
|
+
export type ShipmentDtoListEnvelope = {
|
|
7
|
+
readonly isSuccess?: boolean;
|
|
8
|
+
errorMessage?: string | null;
|
|
9
|
+
correlationId?: string | null;
|
|
10
|
+
readonly timestamp?: string;
|
|
11
|
+
readonly activityId?: string | null;
|
|
12
|
+
result?: Array<ShipmentDto> | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ShipmentsService = void 0;
|
|
4
|
+
const OpenAPI_1 = require("../core/OpenAPI");
|
|
5
|
+
const request_1 = require("../core/request");
|
|
6
|
+
class ShipmentsService {
|
|
7
|
+
/**
|
|
8
|
+
* @param tenantId
|
|
9
|
+
* @param xApiVersion
|
|
10
|
+
* @returns ShipmentDtoListEnvelope OK
|
|
11
|
+
* @throws ApiError
|
|
12
|
+
*/
|
|
13
|
+
static getApiV2ShipmentsServiceShipments(tenantId, xApiVersion) {
|
|
14
|
+
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
15
|
+
method: 'GET',
|
|
16
|
+
url: '/api/v2/ShipmentsService/Shipments',
|
|
17
|
+
headers: {
|
|
18
|
+
'x-api-version': xApiVersion,
|
|
19
|
+
},
|
|
20
|
+
query: {
|
|
21
|
+
'tenantId': tenantId,
|
|
22
|
+
},
|
|
23
|
+
errors: {
|
|
24
|
+
401: `Unauthorized`,
|
|
25
|
+
403: `Forbidden`,
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ShipmentsService = ShipmentsService;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ShipmentDtoListEnvelope } from '../models/ShipmentDtoListEnvelope';
|
|
6
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
7
|
+
import { OpenAPI } from '../core/OpenAPI';
|
|
8
|
+
import { request as __request } from '../core/request';
|
|
9
|
+
export class ShipmentsService {
|
|
10
|
+
/**
|
|
11
|
+
* @param tenantId
|
|
12
|
+
* @param xApiVersion
|
|
13
|
+
* @returns ShipmentDtoListEnvelope OK
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public static getApiV2ShipmentsServiceShipments(
|
|
17
|
+
tenantId: string,
|
|
18
|
+
xApiVersion?: string,
|
|
19
|
+
): CancelablePromise<ShipmentDtoListEnvelope> {
|
|
20
|
+
return __request(OpenAPI, {
|
|
21
|
+
method: 'GET',
|
|
22
|
+
url: '/api/v2/ShipmentsService/Shipments',
|
|
23
|
+
headers: {
|
|
24
|
+
'x-api-version': xApiVersion,
|
|
25
|
+
},
|
|
26
|
+
query: {
|
|
27
|
+
'tenantId': tenantId,
|
|
28
|
+
},
|
|
29
|
+
errors: {
|
|
30
|
+
401: `Unauthorized`,
|
|
31
|
+
403: `Forbidden`,
|
|
32
|
+
},
|
|
33
|
+
});
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SocialProfilesService = exports.SocialPostsService = exports.SocialFeedsService = exports.
|
|
3
|
+
exports.SocialProfilesService = exports.SocialPostsService = exports.SocialFeedsService = exports.SocialReactionUpdateDto = exports.SocialReactionDto = exports.SocialReactionCreateDto = exports.SocialProfileDto = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
|
|
4
4
|
/* generated using openapi-typescript-codegen -- do no edit */
|
|
5
5
|
/* istanbul ignore file */
|
|
6
6
|
/* tslint:disable */
|
|
@@ -20,8 +20,6 @@ var SocialReactionDto_1 = require("./models/SocialReactionDto");
|
|
|
20
20
|
Object.defineProperty(exports, "SocialReactionDto", { enumerable: true, get: function () { return SocialReactionDto_1.SocialReactionDto; } });
|
|
21
21
|
var SocialReactionUpdateDto_1 = require("./models/SocialReactionUpdateDto");
|
|
22
22
|
Object.defineProperty(exports, "SocialReactionUpdateDto", { enumerable: true, get: function () { return SocialReactionUpdateDto_1.SocialReactionUpdateDto; } });
|
|
23
|
-
var FenixAllianceAbsModulesWebService_1 = require("./services/FenixAllianceAbsModulesWebService");
|
|
24
|
-
Object.defineProperty(exports, "FenixAllianceAbsModulesWebService", { enumerable: true, get: function () { return FenixAllianceAbsModulesWebService_1.FenixAllianceAbsModulesWebService; } });
|
|
25
23
|
var SocialFeedsService_1 = require("./services/SocialFeedsService");
|
|
26
24
|
Object.defineProperty(exports, "SocialFeedsService", { enumerable: true, get: function () { return SocialFeedsService_1.SocialFeedsService; } });
|
|
27
25
|
var SocialPostsService_1 = require("./services/SocialPostsService");
|
|
@@ -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 { BooleanEnvelope } from './models/BooleanEnvelope';
|
|
12
11
|
export type { ConversationCreateDto } from './models/ConversationCreateDto';
|
|
13
12
|
export type { ConversationDto } from './models/ConversationDto';
|
|
@@ -16,22 +15,13 @@ export type { EmptyEnvelope } from './models/EmptyEnvelope';
|
|
|
16
15
|
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
17
16
|
export type { FollowRecordDto } from './models/FollowRecordDto';
|
|
18
17
|
export type { FollowRecordDtoListEnvelope } from './models/FollowRecordDtoListEnvelope';
|
|
19
|
-
export type { ForgotPasswordRequest } from './models/ForgotPasswordRequest';
|
|
20
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
21
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
22
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
23
18
|
export type { Int32Envelope } from './models/Int32Envelope';
|
|
24
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
25
19
|
export type { NotificationDto } from './models/NotificationDto';
|
|
26
20
|
export type { NotificationDtoListEnvelope } from './models/NotificationDtoListEnvelope';
|
|
27
21
|
export type { PrivateMessageCreateDto } from './models/PrivateMessageCreateDto';
|
|
28
22
|
export type { PrivateMessageDto } from './models/PrivateMessageDto';
|
|
29
23
|
export type { PrivateMessageDtoListEnvelope } from './models/PrivateMessageDtoListEnvelope';
|
|
30
24
|
export type { PrivateMessageUpdateDto } from './models/PrivateMessageUpdateDto';
|
|
31
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
32
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
33
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
34
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
35
25
|
export type { SocialFeedDto } from './models/SocialFeedDto';
|
|
36
26
|
export type { SocialFeedDtoEnvelope } from './models/SocialFeedDtoEnvelope';
|
|
37
27
|
export type { SocialFeedDtoListEnvelope } from './models/SocialFeedDtoListEnvelope';
|
|
@@ -63,10 +53,7 @@ export { SocialReactionDto } from './models/SocialReactionDto';
|
|
|
63
53
|
export type { SocialReactionDtoEnvelope } from './models/SocialReactionDtoEnvelope';
|
|
64
54
|
export type { SocialReactionDtoListEnvelope } from './models/SocialReactionDtoListEnvelope';
|
|
65
55
|
export { SocialReactionUpdateDto } from './models/SocialReactionUpdateDto';
|
|
66
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
67
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
68
56
|
|
|
69
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
70
57
|
export { SocialFeedsService } from './services/SocialFeedsService';
|
|
71
58
|
export { SocialPostsService } from './services/SocialPostsService';
|
|
72
59
|
export { SocialProfilesService } from './services/SocialProfilesService';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApiError = void 0;
|
|
4
|
+
class ApiError extends Error {
|
|
5
|
+
url;
|
|
6
|
+
status;
|
|
7
|
+
statusText;
|
|
8
|
+
body;
|
|
9
|
+
request;
|
|
10
|
+
constructor(request, response, message) {
|
|
11
|
+
super(message);
|
|
12
|
+
this.name = 'ApiError';
|
|
13
|
+
this.url = response.url;
|
|
14
|
+
this.status = response.status;
|
|
15
|
+
this.statusText = response.statusText;
|
|
16
|
+
this.body = response.body;
|
|
17
|
+
this.request = request;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
exports.ApiError = ApiError;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { ApiRequestOptions } from './ApiRequestOptions';
|
|
6
|
+
import type { ApiResult } from './ApiResult';
|
|
7
|
+
|
|
8
|
+
export class ApiError extends Error {
|
|
9
|
+
public readonly url: string;
|
|
10
|
+
public readonly status: number;
|
|
11
|
+
public readonly statusText: string;
|
|
12
|
+
public readonly body: any;
|
|
13
|
+
public readonly request: ApiRequestOptions;
|
|
14
|
+
|
|
15
|
+
constructor(request: ApiRequestOptions, response: ApiResult, message: string) {
|
|
16
|
+
super(message);
|
|
17
|
+
|
|
18
|
+
this.name = 'ApiError';
|
|
19
|
+
this.url = response.url;
|
|
20
|
+
this.status = response.status;
|
|
21
|
+
this.statusText = response.statusText;
|
|
22
|
+
this.body = response.body;
|
|
23
|
+
this.request = request;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ApiRequestOptions = {
|
|
6
|
+
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
|
|
7
|
+
readonly url: string;
|
|
8
|
+
readonly path?: Record<string, any>;
|
|
9
|
+
readonly cookies?: Record<string, any>;
|
|
10
|
+
readonly headers?: Record<string, any>;
|
|
11
|
+
readonly query?: Record<string, any>;
|
|
12
|
+
readonly formData?: Record<string, any>;
|
|
13
|
+
readonly body?: any;
|
|
14
|
+
readonly mediaType?: string;
|
|
15
|
+
readonly responseHeader?: string;
|
|
16
|
+
readonly errors?: Record<number, string>;
|
|
17
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type ApiResult = {
|
|
6
|
+
readonly url: string;
|
|
7
|
+
readonly ok: boolean;
|
|
8
|
+
readonly status: number;
|
|
9
|
+
readonly statusText: string;
|
|
10
|
+
readonly body: any;
|
|
11
|
+
};
|