@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
|
@@ -10,7 +10,7 @@ import type { EnrollmentId } from '../models/EnrollmentId';
|
|
|
10
10
|
import type { ExtendedTenantDtoListEnvelope } from '../models/ExtendedTenantDtoListEnvelope';
|
|
11
11
|
import type { ExtendedTenantEnrolmentDtoListEnvelope } from '../models/ExtendedTenantEnrolmentDtoListEnvelope';
|
|
12
12
|
import type { ExtendedUserDtoEnvelope } from '../models/ExtendedUserDtoEnvelope';
|
|
13
|
-
import type {
|
|
13
|
+
import type { FollowRecordDtoListEnvelope } from '../models/FollowRecordDtoListEnvelope';
|
|
14
14
|
import type { Int32Envelope } from '../models/Int32Envelope';
|
|
15
15
|
import type { NotificationDtoListEnvelope } from '../models/NotificationDtoListEnvelope';
|
|
16
16
|
import type { Operation } from '../models/Operation';
|
|
@@ -29,11 +29,12 @@ import { OpenAPI } from '../core/OpenAPI';
|
|
|
29
29
|
import { request as __request } from '../core/request';
|
|
30
30
|
export class HolderService {
|
|
31
31
|
/**
|
|
32
|
+
* Gets the current user
|
|
32
33
|
* @param xApiVersion
|
|
33
34
|
* @returns UserDtoEnvelope OK
|
|
34
35
|
* @throws ApiError
|
|
35
36
|
*/
|
|
36
|
-
public static
|
|
37
|
+
public static getCurrentUser(
|
|
37
38
|
xApiVersion?: string,
|
|
38
39
|
): CancelablePromise<UserDtoEnvelope> {
|
|
39
40
|
return __request(OpenAPI, {
|
|
@@ -48,12 +49,13 @@ export class HolderService {
|
|
|
48
49
|
});
|
|
49
50
|
}
|
|
50
51
|
/**
|
|
52
|
+
* Updates the current user
|
|
51
53
|
* @param xApiVersion
|
|
52
54
|
* @param requestBody
|
|
53
55
|
* @returns EmptyEnvelopeEnvelope OK
|
|
54
56
|
* @throws ApiError
|
|
55
57
|
*/
|
|
56
|
-
public static
|
|
58
|
+
public static updateCurrentUser(
|
|
57
59
|
xApiVersion?: string,
|
|
58
60
|
requestBody?: UserUpdateDto,
|
|
59
61
|
): CancelablePromise<EmptyEnvelopeEnvelope> {
|
|
@@ -71,12 +73,13 @@ export class HolderService {
|
|
|
71
73
|
});
|
|
72
74
|
}
|
|
73
75
|
/**
|
|
76
|
+
* Patches the current user
|
|
74
77
|
* @param xApiVersion
|
|
75
78
|
* @param requestBody
|
|
76
79
|
* @returns EmptyEnvelopeEnvelope OK
|
|
77
80
|
* @throws ApiError
|
|
78
81
|
*/
|
|
79
|
-
public static
|
|
82
|
+
public static patchCurrentUser(
|
|
80
83
|
xApiVersion?: string,
|
|
81
84
|
requestBody?: Array<Operation>,
|
|
82
85
|
): CancelablePromise<EmptyEnvelopeEnvelope> {
|
|
@@ -94,11 +97,12 @@ export class HolderService {
|
|
|
94
97
|
});
|
|
95
98
|
}
|
|
96
99
|
/**
|
|
100
|
+
* Gets the current user with extended information
|
|
97
101
|
* @param xApiVersion
|
|
98
102
|
* @returns ExtendedUserDtoEnvelope OK
|
|
99
103
|
* @throws ApiError
|
|
100
104
|
*/
|
|
101
|
-
public static
|
|
105
|
+
public static getExtendedCurrentUser(
|
|
102
106
|
xApiVersion?: string,
|
|
103
107
|
): CancelablePromise<ExtendedUserDtoEnvelope> {
|
|
104
108
|
return __request(OpenAPI, {
|
|
@@ -113,13 +117,14 @@ export class HolderService {
|
|
|
113
117
|
});
|
|
114
118
|
}
|
|
115
119
|
/**
|
|
120
|
+
* Gets the current user's avatar
|
|
116
121
|
* @param xApiVersion
|
|
117
|
-
* @returns
|
|
122
|
+
* @returns binary OK
|
|
118
123
|
* @throws ApiError
|
|
119
124
|
*/
|
|
120
|
-
public static
|
|
125
|
+
public static getMyAvatar(
|
|
121
126
|
xApiVersion?: string,
|
|
122
|
-
): CancelablePromise<
|
|
127
|
+
): CancelablePromise<Blob> {
|
|
123
128
|
return __request(OpenAPI, {
|
|
124
129
|
method: 'GET',
|
|
125
130
|
url: '/api/v2/Me/Avatar',
|
|
@@ -128,16 +133,18 @@ export class HolderService {
|
|
|
128
133
|
},
|
|
129
134
|
errors: {
|
|
130
135
|
401: `Unauthorized`,
|
|
136
|
+
403: `Forbidden`,
|
|
131
137
|
},
|
|
132
138
|
});
|
|
133
139
|
}
|
|
134
140
|
/**
|
|
141
|
+
* Updates the current user's avatar
|
|
135
142
|
* @param xApiVersion
|
|
136
143
|
* @param formData
|
|
137
144
|
* @returns EmptyEnvelope OK
|
|
138
145
|
* @throws ApiError
|
|
139
146
|
*/
|
|
140
|
-
public static
|
|
147
|
+
public static updateMyAvatar(
|
|
141
148
|
xApiVersion?: string,
|
|
142
149
|
formData?: {
|
|
143
150
|
avatar?: Blob;
|
|
@@ -158,13 +165,14 @@ export class HolderService {
|
|
|
158
165
|
});
|
|
159
166
|
}
|
|
160
167
|
/**
|
|
168
|
+
* Gets the social profiles that the current user follows
|
|
161
169
|
* @param xApiVersion
|
|
162
|
-
* @returns
|
|
170
|
+
* @returns FollowRecordDtoListEnvelope OK
|
|
163
171
|
* @throws ApiError
|
|
164
172
|
*/
|
|
165
|
-
public static
|
|
173
|
+
public static getMyFollows(
|
|
166
174
|
xApiVersion?: string,
|
|
167
|
-
): CancelablePromise<
|
|
175
|
+
): CancelablePromise<FollowRecordDtoListEnvelope> {
|
|
168
176
|
return __request(OpenAPI, {
|
|
169
177
|
method: 'GET',
|
|
170
178
|
url: '/api/v2/Me/Follows',
|
|
@@ -177,13 +185,14 @@ export class HolderService {
|
|
|
177
185
|
});
|
|
178
186
|
}
|
|
179
187
|
/**
|
|
188
|
+
* Counts the social profiles that the current user follows
|
|
180
189
|
* @param xApiVersion
|
|
181
|
-
* @returns
|
|
190
|
+
* @returns Int32Envelope OK
|
|
182
191
|
* @throws ApiError
|
|
183
192
|
*/
|
|
184
|
-
public static
|
|
193
|
+
public static countMyFollows(
|
|
185
194
|
xApiVersion?: string,
|
|
186
|
-
): CancelablePromise<
|
|
195
|
+
): CancelablePromise<Int32Envelope> {
|
|
187
196
|
return __request(OpenAPI, {
|
|
188
197
|
method: 'GET',
|
|
189
198
|
url: '/api/v2/Me/Follows/Count',
|
|
@@ -196,13 +205,14 @@ export class HolderService {
|
|
|
196
205
|
});
|
|
197
206
|
}
|
|
198
207
|
/**
|
|
208
|
+
* Gets the social profiles that follow the current user
|
|
199
209
|
* @param xApiVersion
|
|
200
|
-
* @returns
|
|
210
|
+
* @returns FollowRecordDtoListEnvelope OK
|
|
201
211
|
* @throws ApiError
|
|
202
212
|
*/
|
|
203
|
-
public static
|
|
213
|
+
public static getMyFollowers(
|
|
204
214
|
xApiVersion?: string,
|
|
205
|
-
): CancelablePromise<
|
|
215
|
+
): CancelablePromise<FollowRecordDtoListEnvelope> {
|
|
206
216
|
return __request(OpenAPI, {
|
|
207
217
|
method: 'GET',
|
|
208
218
|
url: '/api/v2/Me/Followers',
|
|
@@ -215,13 +225,14 @@ export class HolderService {
|
|
|
215
225
|
});
|
|
216
226
|
}
|
|
217
227
|
/**
|
|
228
|
+
* Counts the social profiles that follow the current user
|
|
218
229
|
* @param xApiVersion
|
|
219
|
-
* @returns
|
|
230
|
+
* @returns Int32Envelope OK
|
|
220
231
|
* @throws ApiError
|
|
221
232
|
*/
|
|
222
|
-
public static
|
|
233
|
+
public static countMyFollowers(
|
|
223
234
|
xApiVersion?: string,
|
|
224
|
-
): CancelablePromise<
|
|
235
|
+
): CancelablePromise<Int32Envelope> {
|
|
225
236
|
return __request(OpenAPI, {
|
|
226
237
|
method: 'GET',
|
|
227
238
|
url: '/api/v2/Me/Followers/Count',
|
|
@@ -234,11 +245,12 @@ export class HolderService {
|
|
|
234
245
|
});
|
|
235
246
|
}
|
|
236
247
|
/**
|
|
248
|
+
* Gets the tenants that the current user is enrolled in
|
|
237
249
|
* @param xApiVersion
|
|
238
250
|
* @returns TenantDtoListEnvelope OK
|
|
239
251
|
* @throws ApiError
|
|
240
252
|
*/
|
|
241
|
-
public static
|
|
253
|
+
public static getMyTenants(
|
|
242
254
|
xApiVersion?: string,
|
|
243
255
|
): CancelablePromise<TenantDtoListEnvelope> {
|
|
244
256
|
return __request(OpenAPI, {
|
|
@@ -254,11 +266,12 @@ export class HolderService {
|
|
|
254
266
|
});
|
|
255
267
|
}
|
|
256
268
|
/**
|
|
269
|
+
* Counts the tenants that the current user is enrolled in
|
|
257
270
|
* @param xApiVersion
|
|
258
271
|
* @returns Int32Envelope OK
|
|
259
272
|
* @throws ApiError
|
|
260
273
|
*/
|
|
261
|
-
public static
|
|
274
|
+
public static countMyTenants(
|
|
262
275
|
xApiVersion?: string,
|
|
263
276
|
): CancelablePromise<Int32Envelope> {
|
|
264
277
|
return __request(OpenAPI, {
|
|
@@ -274,11 +287,12 @@ export class HolderService {
|
|
|
274
287
|
});
|
|
275
288
|
}
|
|
276
289
|
/**
|
|
290
|
+
* Gets the tenants that the current user is enrolled in with extended information
|
|
277
291
|
* @param xApiVersion
|
|
278
292
|
* @returns ExtendedTenantDtoListEnvelope OK
|
|
279
293
|
* @throws ApiError
|
|
280
294
|
*/
|
|
281
|
-
public static
|
|
295
|
+
public static getMyTenantsExtended(
|
|
282
296
|
xApiVersion?: string,
|
|
283
297
|
): CancelablePromise<ExtendedTenantDtoListEnvelope> {
|
|
284
298
|
return __request(OpenAPI, {
|
|
@@ -294,11 +308,12 @@ export class HolderService {
|
|
|
294
308
|
});
|
|
295
309
|
}
|
|
296
310
|
/**
|
|
311
|
+
* Gets the list of enrollments for the current user
|
|
297
312
|
* @param xApiVersion
|
|
298
313
|
* @returns TenantEnrolmentDtoListEnvelope OK
|
|
299
314
|
* @throws ApiError
|
|
300
315
|
*/
|
|
301
|
-
public static
|
|
316
|
+
public static getMyEnrollments(
|
|
302
317
|
xApiVersion?: string,
|
|
303
318
|
): CancelablePromise<TenantEnrolmentDtoListEnvelope> {
|
|
304
319
|
return __request(OpenAPI, {
|
|
@@ -313,11 +328,12 @@ export class HolderService {
|
|
|
313
328
|
});
|
|
314
329
|
}
|
|
315
330
|
/**
|
|
331
|
+
* Gets the list of enrollments for the current user with extended information
|
|
316
332
|
* @param xApiVersion
|
|
317
333
|
* @returns ExtendedTenantEnrolmentDtoListEnvelope OK
|
|
318
334
|
* @throws ApiError
|
|
319
335
|
*/
|
|
320
|
-
public static
|
|
336
|
+
public static getMyEnrollmentsExtended(
|
|
321
337
|
xApiVersion?: string,
|
|
322
338
|
): CancelablePromise<ExtendedTenantEnrolmentDtoListEnvelope> {
|
|
323
339
|
return __request(OpenAPI, {
|
|
@@ -332,13 +348,14 @@ export class HolderService {
|
|
|
332
348
|
});
|
|
333
349
|
}
|
|
334
350
|
/**
|
|
351
|
+
* Gets a single TenantEnrollment by its ID
|
|
335
352
|
* @param enrollmentId
|
|
336
353
|
* @param xApiVersion
|
|
337
354
|
* @param requestBody
|
|
338
355
|
* @returns TenantEnrolmentDtoEnvelope OK
|
|
339
356
|
* @throws ApiError
|
|
340
357
|
*/
|
|
341
|
-
public static
|
|
358
|
+
public static getMyEnrollment(
|
|
342
359
|
enrollmentId: string,
|
|
343
360
|
xApiVersion?: string,
|
|
344
361
|
requestBody?: EnrollmentId,
|
|
@@ -360,11 +377,12 @@ export class HolderService {
|
|
|
360
377
|
});
|
|
361
378
|
}
|
|
362
379
|
/**
|
|
380
|
+
* Gets the current user's social profile
|
|
363
381
|
* @param xApiVersion
|
|
364
382
|
* @returns SocialProfileDtoEnvelope OK
|
|
365
383
|
* @throws ApiError
|
|
366
384
|
*/
|
|
367
|
-
public static
|
|
385
|
+
public static getMySocialProfile(
|
|
368
386
|
xApiVersion?: string,
|
|
369
387
|
): CancelablePromise<SocialProfileDtoEnvelope> {
|
|
370
388
|
return __request(OpenAPI, {
|
|
@@ -379,11 +397,12 @@ export class HolderService {
|
|
|
379
397
|
});
|
|
380
398
|
}
|
|
381
399
|
/**
|
|
400
|
+
* Gets the current user's cart
|
|
382
401
|
* @param xApiVersion
|
|
383
402
|
* @returns CartDtoEnvelope OK
|
|
384
403
|
* @throws ApiError
|
|
385
404
|
*/
|
|
386
|
-
public static
|
|
405
|
+
public static getMyCart(
|
|
387
406
|
xApiVersion?: string,
|
|
388
407
|
): CancelablePromise<CartDtoEnvelope> {
|
|
389
408
|
return __request(OpenAPI, {
|
|
@@ -398,11 +417,12 @@ export class HolderService {
|
|
|
398
417
|
});
|
|
399
418
|
}
|
|
400
419
|
/**
|
|
420
|
+
* Gets the current user's billing profile
|
|
401
421
|
* @param xApiVersion
|
|
402
422
|
* @returns WalletDtoEnvelope OK
|
|
403
423
|
* @throws ApiError
|
|
404
424
|
*/
|
|
405
|
-
public static
|
|
425
|
+
public static getMyWallet(
|
|
406
426
|
xApiVersion?: string,
|
|
407
427
|
): CancelablePromise<WalletDtoEnvelope> {
|
|
408
428
|
return __request(OpenAPI, {
|
|
@@ -417,11 +437,12 @@ export class HolderService {
|
|
|
417
437
|
});
|
|
418
438
|
}
|
|
419
439
|
/**
|
|
440
|
+
* Gets the list of notifications for the current user
|
|
420
441
|
* @param xApiVersion
|
|
421
442
|
* @returns NotificationDtoListEnvelope OK
|
|
422
443
|
* @throws ApiError
|
|
423
444
|
*/
|
|
424
|
-
public static
|
|
445
|
+
public static getMyNotifications(
|
|
425
446
|
xApiVersion?: string,
|
|
426
447
|
): CancelablePromise<NotificationDtoListEnvelope> {
|
|
427
448
|
return __request(OpenAPI, {
|
|
@@ -436,11 +457,12 @@ export class HolderService {
|
|
|
436
457
|
});
|
|
437
458
|
}
|
|
438
459
|
/**
|
|
460
|
+
* Counts the list of notifications for the current user
|
|
439
461
|
* @param xApiVersion
|
|
440
462
|
* @returns Int32Envelope OK
|
|
441
463
|
* @throws ApiError
|
|
442
464
|
*/
|
|
443
|
-
public static
|
|
465
|
+
public static countMyNotifications(
|
|
444
466
|
xApiVersion?: string,
|
|
445
467
|
): CancelablePromise<Int32Envelope> {
|
|
446
468
|
return __request(OpenAPI, {
|
|
@@ -455,11 +477,12 @@ export class HolderService {
|
|
|
455
477
|
});
|
|
456
478
|
}
|
|
457
479
|
/**
|
|
480
|
+
* Gets the settings for the current user
|
|
458
481
|
* @param xApiVersion
|
|
459
482
|
* @returns UserSettingsDtoEnvelope OK
|
|
460
483
|
* @throws ApiError
|
|
461
484
|
*/
|
|
462
|
-
public static
|
|
485
|
+
public static getMySettings(
|
|
463
486
|
xApiVersion?: string,
|
|
464
487
|
): CancelablePromise<UserSettingsDtoEnvelope> {
|
|
465
488
|
return __request(OpenAPI, {
|
|
@@ -474,12 +497,13 @@ export class HolderService {
|
|
|
474
497
|
});
|
|
475
498
|
}
|
|
476
499
|
/**
|
|
500
|
+
* Updates the settings for the current user
|
|
477
501
|
* @param xApiVersion
|
|
478
502
|
* @param requestBody
|
|
479
503
|
* @returns UserSettingsDtoEnvelope OK
|
|
480
504
|
* @throws ApiError
|
|
481
505
|
*/
|
|
482
|
-
public static
|
|
506
|
+
public static updateMySettings(
|
|
483
507
|
xApiVersion?: string,
|
|
484
508
|
requestBody?: UserSettingsUpdateDto,
|
|
485
509
|
): CancelablePromise<UserSettingsDtoEnvelope> {
|
|
@@ -497,11 +521,12 @@ export class HolderService {
|
|
|
497
521
|
});
|
|
498
522
|
}
|
|
499
523
|
/**
|
|
524
|
+
* Gets the list of addresses for the current user
|
|
500
525
|
* @param xApiVersion
|
|
501
526
|
* @returns AddressDtoListEnvelope OK
|
|
502
527
|
* @throws ApiError
|
|
503
528
|
*/
|
|
504
|
-
public static
|
|
529
|
+
public static getMyAddresses(
|
|
505
530
|
xApiVersion?: string,
|
|
506
531
|
): CancelablePromise<AddressDtoListEnvelope> {
|
|
507
532
|
return __request(OpenAPI, {
|
|
@@ -516,11 +541,12 @@ export class HolderService {
|
|
|
516
541
|
});
|
|
517
542
|
}
|
|
518
543
|
/**
|
|
544
|
+
* Gets the list of tenant enrollment invitations for the current user
|
|
519
545
|
* @param xApiVersion
|
|
520
546
|
* @returns TenantInvitationDtoListEnvelope OK
|
|
521
547
|
* @throws ApiError
|
|
522
548
|
*/
|
|
523
|
-
public static
|
|
549
|
+
public static getMyInvitations(
|
|
524
550
|
xApiVersion?: string,
|
|
525
551
|
): CancelablePromise<TenantInvitationDtoListEnvelope> {
|
|
526
552
|
return __request(OpenAPI, {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.JobOffersService = exports.GigsService = exports.
|
|
3
|
+
exports.JobOffersService = exports.GigsService = exports.EmployersService = exports.EmployeesService = 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 */
|
|
@@ -16,8 +16,6 @@ var EmployeesService_1 = require("./services/EmployeesService");
|
|
|
16
16
|
Object.defineProperty(exports, "EmployeesService", { enumerable: true, get: function () { return EmployeesService_1.EmployeesService; } });
|
|
17
17
|
var EmployersService_1 = require("./services/EmployersService");
|
|
18
18
|
Object.defineProperty(exports, "EmployersService", { enumerable: true, get: function () { return EmployersService_1.EmployersService; } });
|
|
19
|
-
var FenixAllianceAbsModulesWebService_1 = require("./services/FenixAllianceAbsModulesWebService");
|
|
20
|
-
Object.defineProperty(exports, "FenixAllianceAbsModulesWebService", { enumerable: true, get: function () { return FenixAllianceAbsModulesWebService_1.FenixAllianceAbsModulesWebService; } });
|
|
21
19
|
var GigsService_1 = require("./services/GigsService");
|
|
22
20
|
Object.defineProperty(exports, "GigsService", { enumerable: true, get: function () { return GigsService_1.GigsService; } });
|
|
23
21
|
var JobOffersService_1 = require("./services/JobOffersService");
|
|
@@ -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 { EmployeeProfileCreateDto } from './models/EmployeeProfileCreateDto';
|
|
12
11
|
export type { EmployeeProfileDto } from './models/EmployeeProfileDto';
|
|
13
12
|
export type { EmployeeProfileDtoEnvelope } from './models/EmployeeProfileDtoEnvelope';
|
|
@@ -20,31 +19,19 @@ export type { EmployerProfileDtoListEnvelope } from './models/EmployerProfileDto
|
|
|
20
19
|
export type { EmployerProfileUpdateDto } from './models/EmployerProfileUpdateDto';
|
|
21
20
|
export type { EmptyEnvelope } from './models/EmptyEnvelope';
|
|
22
21
|
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
23
|
-
export type { ForgotPasswordRequest } from './models/ForgotPasswordRequest';
|
|
24
22
|
export type { GigCreateDto } from './models/GigCreateDto';
|
|
25
23
|
export type { GigDto } from './models/GigDto';
|
|
26
24
|
export type { GigDtoEnvelope } from './models/GigDtoEnvelope';
|
|
27
25
|
export type { GigDtoListEnvelope } from './models/GigDtoListEnvelope';
|
|
28
26
|
export type { GigUpdateDto } from './models/GigUpdateDto';
|
|
29
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
30
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
31
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
32
27
|
export type { Int32Envelope } from './models/Int32Envelope';
|
|
33
28
|
export type { JobOfferCreateDto } from './models/JobOfferCreateDto';
|
|
34
29
|
export type { JobOfferDto } from './models/JobOfferDto';
|
|
35
30
|
export type { JobOfferDtoEnvelope } from './models/JobOfferDtoEnvelope';
|
|
36
31
|
export type { JobOfferDtoListEnvelope } from './models/JobOfferDtoListEnvelope';
|
|
37
32
|
export type { JobOfferUpdateDto } from './models/JobOfferUpdateDto';
|
|
38
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
39
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
40
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
41
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
42
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
43
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
44
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
45
33
|
|
|
46
34
|
export { EmployeesService } from './services/EmployeesService';
|
|
47
35
|
export { EmployersService } from './services/EmployersService';
|
|
48
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
49
36
|
export { GigsService } from './services/GigsService';
|
|
50
37
|
export { JobOffersService } from './services/JobOffersService';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserInfoService = exports.ResourceService = exports.OAuthService = exports.
|
|
3
|
+
exports.UserInfoService = exports.ResourceService = exports.OAuthService = exports.CheckerService = exports.ApplicationsService = exports.AccountHolderCreateDto = 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 */
|
|
@@ -18,8 +18,6 @@ var ApplicationsService_1 = require("./services/ApplicationsService");
|
|
|
18
18
|
Object.defineProperty(exports, "ApplicationsService", { enumerable: true, get: function () { return ApplicationsService_1.ApplicationsService; } });
|
|
19
19
|
var CheckerService_1 = require("./services/CheckerService");
|
|
20
20
|
Object.defineProperty(exports, "CheckerService", { enumerable: true, get: function () { return CheckerService_1.CheckerService; } });
|
|
21
|
-
var FenixAllianceAbsModulesWebService_1 = require("./services/FenixAllianceAbsModulesWebService");
|
|
22
|
-
Object.defineProperty(exports, "FenixAllianceAbsModulesWebService", { enumerable: true, get: function () { return FenixAllianceAbsModulesWebService_1.FenixAllianceAbsModulesWebService; } });
|
|
23
21
|
var OAuthService_1 = require("./services/OAuthService");
|
|
24
22
|
Object.defineProperty(exports, "OAuthService", { enumerable: true, get: function () { return OAuthService_1.OAuthService; } });
|
|
25
23
|
var ResourceService_1 = require("./services/ResourceService");
|
|
@@ -7,17 +7,12 @@ 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 { AccountHolderCreateDto } from './models/AccountHolderCreateDto';
|
|
12
11
|
export type { AccountHolderCreateDtoEnvelope } from './models/AccountHolderCreateDtoEnvelope';
|
|
13
12
|
export type { ApiAuthorizationResult } from './models/ApiAuthorizationResult';
|
|
14
13
|
export type { ApiAuthorizationResultEnvelope } from './models/ApiAuthorizationResultEnvelope';
|
|
15
14
|
export type { EnrollmentId } from './models/EnrollmentId';
|
|
16
15
|
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
17
|
-
export type { ForgotPasswordRequest } from './models/ForgotPasswordRequest';
|
|
18
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
19
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
20
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
21
16
|
export type { JsonWebKey } from './models/JsonWebKey';
|
|
22
17
|
export type { JsonWebKeySet } from './models/JsonWebKeySet';
|
|
23
18
|
export type { JsonWebKeySetEnvelope } from './models/JsonWebKeySetEnvelope';
|
|
@@ -25,24 +20,16 @@ export type { JsonWebToken } from './models/JsonWebToken';
|
|
|
25
20
|
export type { JsonWebTokenEnvelope } from './models/JsonWebTokenEnvelope';
|
|
26
21
|
export type { JsonWebTokenHeader } from './models/JsonWebTokenHeader';
|
|
27
22
|
export type { JsonWebTokenPayload } from './models/JsonWebTokenPayload';
|
|
28
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
29
23
|
export type { OAuthTokenRequest } from './models/OAuthTokenRequest';
|
|
30
24
|
export type { OpenIdConfiguration } from './models/OpenIdConfiguration';
|
|
31
25
|
export type { OpenIdConfigurationEnvelope } from './models/OpenIdConfigurationEnvelope';
|
|
32
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
33
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
34
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
35
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
36
26
|
export type { SigninModel } from './models/SigninModel';
|
|
37
27
|
export type { StringListEnvelope } from './models/StringListEnvelope';
|
|
38
28
|
export type { TenantId } from './models/TenantId';
|
|
39
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
40
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
41
29
|
export type { UserId } from './models/UserId';
|
|
42
30
|
|
|
43
31
|
export { ApplicationsService } from './services/ApplicationsService';
|
|
44
32
|
export { CheckerService } from './services/CheckerService';
|
|
45
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
46
33
|
export { OAuthService } from './services/OAuthService';
|
|
47
34
|
export { ResourceService } from './services/ResourceService';
|
|
48
35
|
export { UserInfoService } from './services/UserInfoService';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.InventoryService = exports.
|
|
3
|
+
exports.InventoryService = 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 */
|
|
@@ -12,7 +12,5 @@ Object.defineProperty(exports, "CancelablePromise", { enumerable: true, get: fun
|
|
|
12
12
|
Object.defineProperty(exports, "CancelError", { enumerable: true, get: function () { return CancelablePromise_1.CancelError; } });
|
|
13
13
|
var OpenAPI_1 = require("./core/OpenAPI");
|
|
14
14
|
Object.defineProperty(exports, "OpenAPI", { enumerable: true, get: function () { return OpenAPI_1.OpenAPI; } });
|
|
15
|
-
var FenixAllianceAbsModulesWebService_1 = require("./services/FenixAllianceAbsModulesWebService");
|
|
16
|
-
Object.defineProperty(exports, "FenixAllianceAbsModulesWebService", { enumerable: true, get: function () { return FenixAllianceAbsModulesWebService_1.FenixAllianceAbsModulesWebService; } });
|
|
17
15
|
var InventoryService_1 = require("./services/InventoryService");
|
|
18
16
|
Object.defineProperty(exports, "InventoryService", { enumerable: true, get: function () { return InventoryService_1.InventoryService; } });
|
|
@@ -7,18 +7,4 @@ 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
|
-
export type { ForgotPasswordRequest } from './models/ForgotPasswordRequest';
|
|
12
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
13
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
14
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
15
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
16
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
17
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
18
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
19
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
20
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
21
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
22
|
-
|
|
23
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
24
10
|
export { InventoryService } from './services/InventoryService';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.InvoicesService = exports.
|
|
3
|
+
exports.InvoicesService = exports.SimpleContactDto = exports.InvoiceLineDto = exports.InvoiceItemRecordDto = exports.InvoiceDto = exports.InvoiceCreateDto = exports.InvoiceAdjustmentUpdateDto = exports.InvoiceAdjustmentDto = exports.InvoiceAdjustmentCreateDto = exports.ExtendedInvoiceDto = 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 */
|
|
@@ -30,7 +30,5 @@ var InvoiceLineDto_1 = require("./models/InvoiceLineDto");
|
|
|
30
30
|
Object.defineProperty(exports, "InvoiceLineDto", { enumerable: true, get: function () { return InvoiceLineDto_1.InvoiceLineDto; } });
|
|
31
31
|
var SimpleContactDto_1 = require("./models/SimpleContactDto");
|
|
32
32
|
Object.defineProperty(exports, "SimpleContactDto", { enumerable: true, get: function () { return SimpleContactDto_1.SimpleContactDto; } });
|
|
33
|
-
var FenixAllianceAbsModulesWebService_1 = require("./services/FenixAllianceAbsModulesWebService");
|
|
34
|
-
Object.defineProperty(exports, "FenixAllianceAbsModulesWebService", { enumerable: true, get: function () { return FenixAllianceAbsModulesWebService_1.FenixAllianceAbsModulesWebService; } });
|
|
35
33
|
var InvoicesService_1 = require("./services/InvoicesService");
|
|
36
34
|
Object.defineProperty(exports, "InvoicesService", { enumerable: true, get: function () { return InvoicesService_1.InvoicesService; } });
|
|
@@ -7,16 +7,11 @@ 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 { Currency } from './models/Currency';
|
|
12
11
|
export type { EmptyEnvelope } from './models/EmptyEnvelope';
|
|
13
12
|
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
14
13
|
export { ExtendedInvoiceDto } from './models/ExtendedInvoiceDto';
|
|
15
14
|
export type { ExtendedInvoiceDtoListEnvelope } from './models/ExtendedInvoiceDtoListEnvelope';
|
|
16
|
-
export type { ForgotPasswordRequest } from './models/ForgotPasswordRequest';
|
|
17
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
18
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
19
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
20
15
|
export type { Int32Envelope } from './models/Int32Envelope';
|
|
21
16
|
export { InvoiceAdjustmentCreateDto } from './models/InvoiceAdjustmentCreateDto';
|
|
22
17
|
export { InvoiceAdjustmentDto } from './models/InvoiceAdjustmentDto';
|
|
@@ -43,19 +38,11 @@ export type { InvoiceReferenceDtoEnvelope } from './models/InvoiceReferenceDtoEn
|
|
|
43
38
|
export type { InvoiceReferenceDtoListEnvelope } from './models/InvoiceReferenceDtoListEnvelope';
|
|
44
39
|
export type { InvoiceReferenceUpdateDto } from './models/InvoiceReferenceUpdateDto';
|
|
45
40
|
export type { InvoiceUpdateDto } from './models/InvoiceUpdateDto';
|
|
46
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
47
41
|
export type { Money } from './models/Money';
|
|
48
42
|
export type { MoneyEnvelope } from './models/MoneyEnvelope';
|
|
49
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
50
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
51
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
52
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
53
43
|
export { SimpleContactDto } from './models/SimpleContactDto';
|
|
54
44
|
export type { SimpleTenantEnrolmentDto } from './models/SimpleTenantEnrolmentDto';
|
|
55
45
|
export type { SimpleUserDto } from './models/SimpleUserDto';
|
|
56
46
|
export type { TenantDto } from './models/TenantDto';
|
|
57
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
58
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
59
47
|
|
|
60
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
61
48
|
export { InvoicesService } from './services/InvoicesService';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StudentProfilesService = exports.InstructorProfilesService = exports.
|
|
3
|
+
exports.StudentProfilesService = exports.InstructorProfilesService = exports.CoursesService = exports.CourseEnrollmentsService = exports.CourseCertificatesService = 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 */
|
|
@@ -18,8 +18,6 @@ var CourseEnrollmentsService_1 = require("./services/CourseEnrollmentsService");
|
|
|
18
18
|
Object.defineProperty(exports, "CourseEnrollmentsService", { enumerable: true, get: function () { return CourseEnrollmentsService_1.CourseEnrollmentsService; } });
|
|
19
19
|
var CoursesService_1 = require("./services/CoursesService");
|
|
20
20
|
Object.defineProperty(exports, "CoursesService", { enumerable: true, get: function () { return CoursesService_1.CoursesService; } });
|
|
21
|
-
var FenixAllianceAbsModulesWebService_1 = require("./services/FenixAllianceAbsModulesWebService");
|
|
22
|
-
Object.defineProperty(exports, "FenixAllianceAbsModulesWebService", { enumerable: true, get: function () { return FenixAllianceAbsModulesWebService_1.FenixAllianceAbsModulesWebService; } });
|
|
23
21
|
var InstructorProfilesService_1 = require("./services/InstructorProfilesService");
|
|
24
22
|
Object.defineProperty(exports, "InstructorProfilesService", { enumerable: true, get: function () { return InstructorProfilesService_1.InstructorProfilesService; } });
|
|
25
23
|
var StudentProfilesService_1 = require("./services/StudentProfilesService");
|
|
@@ -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 { AverageDto } from './models/AverageDto';
|
|
12
11
|
export type { AverageDtoEnvelope } from './models/AverageDtoEnvelope';
|
|
13
12
|
export type { CountDto } from './models/CountDto';
|
|
@@ -32,32 +31,20 @@ export type { CourseEnrollmentUpdateDto } from './models/CourseEnrollmentUpdateD
|
|
|
32
31
|
export type { CourseUpdateDto } from './models/CourseUpdateDto';
|
|
33
32
|
export type { EmptyEnvelope } from './models/EmptyEnvelope';
|
|
34
33
|
export type { ErrorEnvelope } from './models/ErrorEnvelope';
|
|
35
|
-
export type { ForgotPasswordRequest } from './models/ForgotPasswordRequest';
|
|
36
|
-
export type { HttpValidationProblemDetails } from './models/HttpValidationProblemDetails';
|
|
37
|
-
export type { InfoRequest } from './models/InfoRequest';
|
|
38
|
-
export type { InfoResponse } from './models/InfoResponse';
|
|
39
34
|
export type { InstructorProfileCreateDto } from './models/InstructorProfileCreateDto';
|
|
40
35
|
export type { InstructorProfileDto } from './models/InstructorProfileDto';
|
|
41
36
|
export type { InstructorProfileDtoEnvelope } from './models/InstructorProfileDtoEnvelope';
|
|
42
37
|
export type { InstructorProfileDtoListEnvelope } from './models/InstructorProfileDtoListEnvelope';
|
|
43
38
|
export type { InstructorProfileUpdateDto } from './models/InstructorProfileUpdateDto';
|
|
44
39
|
export type { Int32Envelope } from './models/Int32Envelope';
|
|
45
|
-
export type { LoginRequest } from './models/LoginRequest';
|
|
46
|
-
export type { RefreshRequest } from './models/RefreshRequest';
|
|
47
|
-
export type { RegisterRequest } from './models/RegisterRequest';
|
|
48
|
-
export type { ResendConfirmationEmailRequest } from './models/ResendConfirmationEmailRequest';
|
|
49
|
-
export type { ResetPasswordRequest } from './models/ResetPasswordRequest';
|
|
50
40
|
export type { StudentProfileCreateDto } from './models/StudentProfileCreateDto';
|
|
51
41
|
export type { StudentProfileDto } from './models/StudentProfileDto';
|
|
52
42
|
export type { StudentProfileDtoEnvelope } from './models/StudentProfileDtoEnvelope';
|
|
53
43
|
export type { StudentProfileDtoListEnvelope } from './models/StudentProfileDtoListEnvelope';
|
|
54
44
|
export type { StudentProfileUpdateDto } from './models/StudentProfileUpdateDto';
|
|
55
|
-
export type { TwoFactorRequest } from './models/TwoFactorRequest';
|
|
56
|
-
export type { TwoFactorResponse } from './models/TwoFactorResponse';
|
|
57
45
|
|
|
58
46
|
export { CourseCertificatesService } from './services/CourseCertificatesService';
|
|
59
47
|
export { CourseEnrollmentsService } from './services/CourseEnrollmentsService';
|
|
60
48
|
export { CoursesService } from './services/CoursesService';
|
|
61
|
-
export { FenixAllianceAbsModulesWebService } from './services/FenixAllianceAbsModulesWebService';
|
|
62
49
|
export { InstructorProfilesService } from './services/InstructorProfilesService';
|
|
63
50
|
export { StudentProfilesService } from './services/StudentProfilesService';
|