yellowgrid-api-ts 3.2.188 → 3.2.189-dev.0
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/.openapi-generator/FILES +299 -295
- package/.openapi-generator/VERSION +1 -1
- package/README.md +10 -2
- package/api.ts +399 -60
- package/base.ts +2 -2
- package/common.ts +1 -1
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +242 -54
- package/dist/api.js +351 -21
- package/dist/base.d.ts +1 -1
- package/dist/base.js +2 -2
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/HostingPriceListEnum.d.ts +5 -0
- package/dist/models/HostingPriceListEnum.js +5 -0
- package/dist/models/StatusEnum.d.ts +18 -0
- package/dist/models/StatusEnum.js +20 -0
- package/dist/src/apis/AccountsApi.d.ts +258 -0
- package/dist/src/apis/AccountsApi.js +975 -0
- package/dist/src/apis/CRMApi.d.ts +26 -0
- package/dist/src/apis/CRMApi.js +122 -0
- package/dist/src/apis/Class3CXApi.d.ts +44 -0
- package/dist/src/apis/Class3CXApi.js +177 -0
- package/dist/src/apis/Class3CXInstallationWizardApi.d.ts +446 -0
- package/dist/src/apis/Class3CXInstallationWizardApi.js +1740 -0
- package/dist/src/apis/Class3CXInstallationsApi.d.ts +253 -0
- package/dist/src/apis/Class3CXInstallationsApi.js +806 -0
- package/dist/src/apis/Class3CXIntegrationsApi.d.ts +102 -0
- package/dist/src/apis/Class3CXIntegrationsApi.js +386 -0
- package/dist/src/apis/Class3CXMultiTenantApi.d.ts +122 -0
- package/dist/src/apis/Class3CXMultiTenantApi.js +431 -0
- package/dist/src/apis/MyPBXToolsApi.d.ts +32 -0
- package/dist/src/apis/MyPBXToolsApi.js +136 -0
- package/dist/src/apis/OAuth20Api.d.ts +185 -0
- package/dist/src/apis/OAuth20Api.js +507 -0
- package/dist/src/apis/OrdersApi.d.ts +154 -0
- package/dist/src/apis/OrdersApi.js +512 -0
- package/dist/src/apis/PricingApi.d.ts +154 -0
- package/dist/src/apis/PricingApi.js +308 -0
- package/dist/src/apis/ProductsApi.d.ts +135 -0
- package/dist/src/apis/ProductsApi.js +531 -0
- package/dist/src/apis/ProvisioningApi.d.ts +112 -0
- package/dist/src/apis/ProvisioningApi.js +427 -0
- package/dist/src/apis/SIPTrunksApi.d.ts +315 -0
- package/dist/src/apis/SIPTrunksApi.js +1197 -0
- package/dist/src/apis/SMSApi.d.ts +30 -0
- package/dist/src/apis/SMSApi.js +130 -0
- package/dist/src/apis/ServicesApi.d.ts +81 -0
- package/dist/src/apis/ServicesApi.js +386 -0
- package/dist/src/apis/ShippingApi.d.ts +45 -0
- package/dist/src/apis/ShippingApi.js +179 -0
- package/dist/src/apis/StockManagementApi.d.ts +345 -0
- package/dist/src/apis/StockManagementApi.js +1293 -0
- package/dist/src/apis/SystemApi.d.ts +37 -0
- package/dist/src/apis/SystemApi.js +146 -0
- package/dist/src/apis/TicketsApi.d.ts +79 -0
- package/dist/src/apis/TicketsApi.js +360 -0
- package/dist/src/apis/WebhooksApi.d.ts +56 -0
- package/dist/src/apis/WebhooksApi.js +189 -0
- package/dist/src/apis/index.d.ts +21 -0
- package/dist/src/apis/index.js +39 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.js +21 -0
- package/dist/src/models/AbstractOrderRequestDTO.d.ts +71 -0
- package/dist/src/models/AbstractOrderRequestDTO.js +64 -0
- package/dist/src/models/AccountContactEntity.d.ts +104 -0
- package/dist/src/models/AccountContactEntity.js +73 -0
- package/dist/src/models/AccountContactModel.d.ts +104 -0
- package/dist/src/models/AccountContactModel.js +73 -0
- package/dist/src/models/AccountContactRequestModel.d.ts +80 -0
- package/dist/src/models/AccountContactRequestModel.js +65 -0
- package/dist/src/models/AccountDetailedSummaryDTO.d.ts +89 -0
- package/dist/src/models/AccountDetailedSummaryDTO.js +70 -0
- package/dist/src/models/AccountRequestModel.d.ts +128 -0
- package/dist/src/models/AccountRequestModel.js +81 -0
- package/dist/src/models/AccountSummaryDTO.d.ts +44 -0
- package/dist/src/models/AccountSummaryDTO.js +53 -0
- package/dist/src/models/AccountsResponseModel.d.ts +51 -0
- package/dist/src/models/AccountsResponseModel.js +56 -0
- package/dist/src/models/AddressModel.d.ts +110 -0
- package/dist/src/models/AddressModel.js +75 -0
- package/dist/src/models/AddressRequestModel.d.ts +50 -0
- package/dist/src/models/AddressRequestModel.js +55 -0
- package/dist/src/models/AdminOrderRequestDTO.d.ts +113 -0
- package/dist/src/models/AdminOrderRequestDTO.js +78 -0
- package/dist/src/models/AdminUserModel.d.ts +79 -0
- package/dist/src/models/AdminUserModel.js +72 -0
- package/dist/src/models/AgentHoursGraphModel.d.ts +51 -0
- package/dist/src/models/AgentHoursGraphModel.js +56 -0
- package/dist/src/models/AgentHoursGraphMonthModel.d.ts +38 -0
- package/dist/src/models/AgentHoursGraphMonthModel.js +51 -0
- package/dist/src/models/ApiLogEntity.d.ts +98 -0
- package/dist/src/models/ApiLogEntity.js +71 -0
- package/dist/src/models/AreaCodeModel.d.ts +38 -0
- package/dist/src/models/AreaCodeModel.js +51 -0
- package/dist/src/models/AttachmentModel.d.ts +56 -0
- package/dist/src/models/AttachmentModel.js +57 -0
- package/dist/src/models/AttributeSetEnum.d.ts +38 -0
- package/dist/src/models/AttributeSetEnum.js +51 -0
- package/dist/src/models/AuditLogEntity.d.ts +80 -0
- package/dist/src/models/AuditLogEntity.js +65 -0
- package/dist/src/models/AuthCodeResponseModel.d.ts +44 -0
- package/dist/src/models/AuthCodeResponseModel.js +53 -0
- package/dist/src/models/BasicItemDTO.d.ts +38 -0
- package/dist/src/models/BasicItemDTO.js +51 -0
- package/dist/src/models/BasicProductDTO.d.ts +38 -0
- package/dist/src/models/BasicProductDTO.js +51 -0
- package/dist/src/models/BatchEntity.d.ts +128 -0
- package/dist/src/models/BatchEntity.js +81 -0
- package/dist/src/models/CallBarringModel.d.ts +56 -0
- package/dist/src/models/CallBarringModel.js +57 -0
- package/dist/src/models/ClientDetailsModel.d.ts +68 -0
- package/dist/src/models/ClientDetailsModel.js +61 -0
- package/dist/src/models/ClientModel.d.ts +50 -0
- package/dist/src/models/ClientModel.js +55 -0
- package/dist/src/models/CompanyContractModel.d.ts +56 -0
- package/dist/src/models/CompanyContractModel.js +57 -0
- package/dist/src/models/ContactInfoModel.d.ts +56 -0
- package/dist/src/models/ContactInfoModel.js +57 -0
- package/dist/src/models/ConversationModel.d.ts +75 -0
- package/dist/src/models/ConversationModel.js +64 -0
- package/dist/src/models/CourierPriceEntity.d.ts +86 -0
- package/dist/src/models/CourierPriceEntity.js +67 -0
- package/dist/src/models/CreditAccountEntity.d.ts +152 -0
- package/dist/src/models/CreditAccountEntity.js +89 -0
- package/dist/src/models/CrmContactDTO.d.ts +68 -0
- package/dist/src/models/CrmContactDTO.js +61 -0
- package/dist/src/models/CustomerInformationModel.d.ts +68 -0
- package/dist/src/models/CustomerInformationModel.js +61 -0
- package/dist/src/models/CustomerItemRequestDTO.d.ts +81 -0
- package/dist/src/models/CustomerItemRequestDTO.js +66 -0
- package/dist/src/models/CustomerOrderRequestDTO.d.ts +71 -0
- package/dist/src/models/CustomerOrderRequestDTO.js +64 -0
- package/dist/src/models/CustomerPriceListEnum.d.ts +38 -0
- package/dist/src/models/CustomerPriceListEnum.js +51 -0
- package/dist/src/models/CustomerSummaryReportDTO.d.ts +65 -0
- package/dist/src/models/CustomerSummaryReportDTO.js +62 -0
- package/dist/src/models/DdiRangeRequestModel.d.ts +44 -0
- package/dist/src/models/DdiRangeRequestModel.js +53 -0
- package/dist/src/models/DdiRangesRequestModel.d.ts +33 -0
- package/dist/src/models/DdiRangesRequestModel.js +50 -0
- package/dist/src/models/DetailedItemRequestDTO.d.ts +99 -0
- package/dist/src/models/DetailedItemRequestDTO.js +72 -0
- package/dist/src/models/DetailedOrderRequestDTO.d.ts +71 -0
- package/dist/src/models/DetailedOrderRequestDTO.js +64 -0
- package/dist/src/models/DivertRequestModel.d.ts +38 -0
- package/dist/src/models/DivertRequestModel.js +51 -0
- package/dist/src/models/DivertResponseModel.d.ts +52 -0
- package/dist/src/models/DivertResponseModel.js +61 -0
- package/dist/src/models/EdTechProClientEntity.d.ts +56 -0
- package/dist/src/models/EdTechProClientEntity.js +57 -0
- package/dist/src/models/EdTechProSchoolModel.d.ts +104 -0
- package/dist/src/models/EdTechProSchoolModel.js +73 -0
- package/dist/src/models/EdTechProSchoolsModel.d.ts +51 -0
- package/dist/src/models/EdTechProSchoolsModel.js +56 -0
- package/dist/src/models/EdTechProSetupModel.d.ts +56 -0
- package/dist/src/models/EdTechProSetupModel.js +57 -0
- package/dist/src/models/EventDTO.d.ts +84 -0
- package/dist/src/models/EventDTO.js +73 -0
- package/dist/src/models/EventRequestDTO.d.ts +44 -0
- package/dist/src/models/EventRequestDTO.js +53 -0
- package/dist/src/models/EventSubscriptionModel.d.ts +38 -0
- package/dist/src/models/EventSubscriptionModel.js +51 -0
- package/dist/src/models/EventTypeEnum.d.ts +19 -0
- package/dist/src/models/EventTypeEnum.js +24 -0
- package/dist/src/models/EventUpdateDTO.d.ts +50 -0
- package/dist/src/models/EventUpdateDTO.js +55 -0
- package/dist/src/models/EventUpdateEntity.d.ts +56 -0
- package/dist/src/models/EventUpdateEntity.js +57 -0
- package/dist/src/models/EventUpdateRequestDTO.d.ts +44 -0
- package/dist/src/models/EventUpdateRequestDTO.js +53 -0
- package/dist/src/models/FraudManagementModel.d.ts +38 -0
- package/dist/src/models/FraudManagementModel.js +51 -0
- package/dist/src/models/FreshdeskCompanyTicketsModel.d.ts +51 -0
- package/dist/src/models/FreshdeskCompanyTicketsModel.js +56 -0
- package/dist/src/models/FreshdeskTicketEntity.d.ts +68 -0
- package/dist/src/models/FreshdeskTicketEntity.js +61 -0
- package/dist/src/models/FtpAccountsEntity.d.ts +56 -0
- package/dist/src/models/FtpAccountsEntity.js +57 -0
- package/dist/src/models/GenericFileModel.d.ts +44 -0
- package/dist/src/models/GenericFileModel.js +53 -0
- package/dist/src/models/GetGetPrice200Response.d.ts +32 -0
- package/dist/src/models/GetGetPrice200Response.js +49 -0
- package/dist/src/models/GetGetRecording200Response.d.ts +32 -0
- package/dist/src/models/GetGetRecording200Response.js +49 -0
- package/dist/src/models/HostingChangeResponseModel.d.ts +64 -0
- package/dist/src/models/HostingChangeResponseModel.js +65 -0
- package/dist/src/models/HostingRegionDTO.d.ts +59 -0
- package/dist/src/models/HostingRegionDTO.js +68 -0
- package/dist/src/models/InstanceAutoFailoverEntity.d.ts +56 -0
- package/dist/src/models/InstanceAutoFailoverEntity.js +57 -0
- package/dist/src/models/InstanceDeletionScheduleEntity.d.ts +50 -0
- package/dist/src/models/InstanceDeletionScheduleEntity.js +55 -0
- package/dist/src/models/InstanceEntity.d.ts +152 -0
- package/dist/src/models/InstanceEntity.js +89 -0
- package/dist/src/models/InstanceFailoverEntity.d.ts +92 -0
- package/dist/src/models/InstanceFailoverEntity.js +69 -0
- package/dist/src/models/InstanceMonitoringEntity.d.ts +44 -0
- package/dist/src/models/InstanceMonitoringEntity.js +53 -0
- package/dist/src/models/InstanceMonitoringLogEntity.d.ts +62 -0
- package/dist/src/models/InstanceMonitoringLogEntity.js +59 -0
- package/dist/src/models/InstanceScheduledTasksEntity.d.ts +62 -0
- package/dist/src/models/InstanceScheduledTasksEntity.js +59 -0
- package/dist/src/models/InstanceTcxDetailsEntity.d.ts +86 -0
- package/dist/src/models/InstanceTcxDetailsEntity.js +67 -0
- package/dist/src/models/InstanceUserCredentialsEntity.d.ts +56 -0
- package/dist/src/models/InstanceUserCredentialsEntity.js +57 -0
- package/dist/src/models/ItemDTO.d.ts +117 -0
- package/dist/src/models/ItemDTO.js +78 -0
- package/dist/src/models/ItemDiscountEntity.d.ts +77 -0
- package/dist/src/models/ItemDiscountEntity.js +70 -0
- package/dist/src/models/ItemEntity.d.ts +158 -0
- package/dist/src/models/ItemEntity.js +91 -0
- package/dist/src/models/LinkedOrderEntity.d.ts +38 -0
- package/dist/src/models/LinkedOrderEntity.js +51 -0
- package/dist/src/models/MFARequiredModel.d.ts +38 -0
- package/dist/src/models/MFARequiredModel.js +51 -0
- package/dist/src/models/MonthlyUsageModel.d.ts +38 -0
- package/dist/src/models/MonthlyUsageModel.js +51 -0
- package/dist/src/models/MultiTenantChangeResponseModel.d.ts +70 -0
- package/dist/src/models/MultiTenantChangeResponseModel.js +75 -0
- package/dist/src/models/NavigationModel.d.ts +50 -0
- package/dist/src/models/NavigationModel.js +55 -0
- package/dist/src/models/OfflineInstancesEntity.d.ts +56 -0
- package/dist/src/models/OfflineInstancesEntity.js +57 -0
- package/dist/src/models/OrderEntity.d.ts +374 -0
- package/dist/src/models/OrderEntity.js +163 -0
- package/dist/src/models/OrderRequestModel.d.ts +120 -0
- package/dist/src/models/OrderRequestModel.js +88 -0
- package/dist/src/models/OrderSummariesModel.d.ts +51 -0
- package/dist/src/models/OrderSummariesModel.js +56 -0
- package/dist/src/models/OrderSummaryDTO.d.ts +126 -0
- package/dist/src/models/OrderSummaryDTO.js +83 -0
- package/dist/src/models/OrderTotalModel.d.ts +111 -0
- package/dist/src/models/OrderTotalModel.js +100 -0
- package/dist/src/models/OrderedItemEntity.d.ts +110 -0
- package/dist/src/models/OrderedItemEntity.js +75 -0
- package/dist/src/models/PatchSetTcxWizardCnameRequest.d.ts +32 -0
- package/dist/src/models/PatchSetTcxWizardCnameRequest.js +49 -0
- package/dist/src/models/PatchUpdateAccountContactPasswordRequest.d.ts +32 -0
- package/dist/src/models/PatchUpdateAccountContactPasswordRequest.js +49 -0
- package/dist/src/models/PortalAccountModel.d.ts +171 -0
- package/dist/src/models/PortalAccountModel.js +96 -0
- package/dist/src/models/PortalLoginModel.d.ts +68 -0
- package/dist/src/models/PortalLoginModel.js +61 -0
- package/dist/src/models/PostAddWebhook200Response.d.ts +32 -0
- package/dist/src/models/PostAddWebhook200Response.js +49 -0
- package/dist/src/models/PostGetClientCredentialsRequest.d.ts +32 -0
- package/dist/src/models/PostGetClientCredentialsRequest.js +49 -0
- package/dist/src/models/PostGetProductForCustomerRequest.d.ts +50 -0
- package/dist/src/models/PostGetProductForCustomerRequest.js +55 -0
- package/dist/src/models/PostGetProductRequest.d.ts +44 -0
- package/dist/src/models/PostGetProductRequest.js +53 -0
- package/dist/src/models/PriceListItemModel.d.ts +56 -0
- package/dist/src/models/PriceListItemModel.js +57 -0
- package/dist/src/models/PrizesEntity.d.ts +62 -0
- package/dist/src/models/PrizesEntity.js +59 -0
- package/dist/src/models/ProductPriceListItemModel.d.ts +62 -0
- package/dist/src/models/ProductPriceListItemModel.js +59 -0
- package/dist/src/models/ProductSearchResultsModel.d.ts +33 -0
- package/dist/src/models/ProductSearchResultsModel.js +50 -0
- package/dist/src/models/ProductSerialInfoModel.d.ts +50 -0
- package/dist/src/models/ProductSerialInfoModel.js +55 -0
- package/dist/src/models/ProductSummaryDTO.d.ts +81 -0
- package/dist/src/models/ProductSummaryDTO.js +66 -0
- package/dist/src/models/PromoCodesEntity.d.ts +98 -0
- package/dist/src/models/PromoCodesEntity.js +71 -0
- package/dist/src/models/PromoItemsEntity.d.ts +74 -0
- package/dist/src/models/PromoItemsEntity.js +63 -0
- package/dist/src/models/ProvisioningModel.d.ts +56 -0
- package/dist/src/models/ProvisioningModel.js +57 -0
- package/dist/src/models/ProvisioningRequestEntity.d.ts +44 -0
- package/dist/src/models/ProvisioningRequestEntity.js +53 -0
- package/dist/src/models/RecordingBackupAzureModel.d.ts +50 -0
- package/dist/src/models/RecordingBackupAzureModel.js +55 -0
- package/dist/src/models/RecordingsBackupInfoDTO.d.ts +40 -0
- package/dist/src/models/RecordingsBackupInfoDTO.js +53 -0
- package/dist/src/models/ResourceNotReadyException.d.ts +44 -0
- package/dist/src/models/ResourceNotReadyException.js +53 -0
- package/dist/src/models/RootAccessModel.d.ts +44 -0
- package/dist/src/models/RootAccessModel.js +53 -0
- package/dist/src/models/S3BucketEntity.d.ts +50 -0
- package/dist/src/models/S3BucketEntity.js +55 -0
- package/dist/src/models/ScannedItemModel.d.ts +56 -0
- package/dist/src/models/ScannedItemModel.js +57 -0
- package/dist/src/models/ScopeModel.d.ts +38 -0
- package/dist/src/models/ScopeModel.js +51 -0
- package/dist/src/models/ServiceEnum.d.ts +14 -0
- package/dist/src/models/ServiceEnum.js +19 -0
- package/dist/src/models/ServiceHealthDTO.d.ts +48 -0
- package/dist/src/models/ServiceHealthDTO.js +61 -0
- package/dist/src/models/ServiceHealthEnum.d.ts +19 -0
- package/dist/src/models/ServiceHealthEnum.js +24 -0
- package/dist/src/models/ServiceStatusDTO.d.ts +60 -0
- package/dist/src/models/ServiceStatusDTO.js +65 -0
- package/dist/src/models/ServiceStatusEnum.d.ts +19 -0
- package/dist/src/models/ServiceStatusEnum.js +24 -0
- package/dist/src/models/ShipmentAddressEntity.d.ts +92 -0
- package/dist/src/models/ShipmentAddressEntity.js +69 -0
- package/dist/src/models/ShipmentEntity.d.ts +98 -0
- package/dist/src/models/ShipmentEntity.js +71 -0
- package/dist/src/models/ShipmentItemEntity.d.ts +56 -0
- package/dist/src/models/ShipmentItemEntity.js +57 -0
- package/dist/src/models/ShippingConsignmentModel.d.ts +51 -0
- package/dist/src/models/ShippingConsignmentModel.js +56 -0
- package/dist/src/models/ShippingInformationDTO.d.ts +45 -0
- package/dist/src/models/ShippingInformationDTO.js +54 -0
- package/dist/src/models/ShippingServiceDTO.d.ts +47 -0
- package/dist/src/models/ShippingServiceDTO.js +60 -0
- package/dist/src/models/ShippingServiceModel.d.ts +71 -0
- package/dist/src/models/ShippingServiceModel.js +68 -0
- package/dist/src/models/ShippingServicesModel.d.ts +33 -0
- package/dist/src/models/ShippingServicesModel.js +50 -0
- package/dist/src/models/SipTrunkChangeResponseModel.d.ts +77 -0
- package/dist/src/models/SipTrunkChangeResponseModel.js +78 -0
- package/dist/src/models/SipTrunkCreationRequestModel.d.ts +66 -0
- package/dist/src/models/SipTrunkCreationRequestModel.js +63 -0
- package/dist/src/models/SipTrunkEntity.d.ts +98 -0
- package/dist/src/models/SipTrunkEntity.js +71 -0
- package/dist/src/models/SipTrunksResponseModel.d.ts +51 -0
- package/dist/src/models/SipTrunksResponseModel.js +56 -0
- package/dist/src/models/SmsAccountEntity.d.ts +68 -0
- package/dist/src/models/SmsAccountEntity.js +61 -0
- package/dist/src/models/SmsDataModel.d.ts +33 -0
- package/dist/src/models/SmsDataModel.js +50 -0
- package/dist/src/models/SmsMessageModel.d.ts +44 -0
- package/dist/src/models/SmsMessageModel.js +53 -0
- package/dist/src/models/SmsNumbersEntity.d.ts +38 -0
- package/dist/src/models/SmsNumbersEntity.js +51 -0
- package/dist/src/models/SmsPayloadModel.d.ts +45 -0
- package/dist/src/models/SmsPayloadModel.js +54 -0
- package/dist/src/models/SmsPhoneNumberModel.d.ts +53 -0
- package/dist/src/models/SmsPhoneNumberModel.js +66 -0
- package/dist/src/models/SmsResponseModel.d.ts +67 -0
- package/dist/src/models/SmsResponseModel.js +68 -0
- package/dist/src/models/SmsWhitelistEntity.d.ts +38 -0
- package/dist/src/models/SmsWhitelistEntity.js +51 -0
- package/dist/src/models/StockOrderCourierEntity.d.ts +50 -0
- package/dist/src/models/StockOrderCourierEntity.js +55 -0
- package/dist/src/models/StockOrderDeductionModel.d.ts +50 -0
- package/dist/src/models/StockOrderDeductionModel.js +55 -0
- package/dist/src/models/StockOrderDeductionRequestModel.d.ts +38 -0
- package/dist/src/models/StockOrderDeductionRequestModel.js +51 -0
- package/dist/src/models/StockOrderDeductionsEntity.d.ts +50 -0
- package/dist/src/models/StockOrderDeductionsEntity.js +55 -0
- package/dist/src/models/StockOrderEntity.d.ts +158 -0
- package/dist/src/models/StockOrderEntity.js +91 -0
- package/dist/src/models/StockOrderItemEntity.d.ts +68 -0
- package/dist/src/models/StockOrderItemEntity.js +61 -0
- package/dist/src/models/StockOrderItemModel.d.ts +80 -0
- package/dist/src/models/StockOrderItemModel.js +65 -0
- package/dist/src/models/StockOrderItemRequestModel.d.ts +50 -0
- package/dist/src/models/StockOrderItemRequestModel.js +55 -0
- package/dist/src/models/StockOrderModel.d.ts +137 -0
- package/dist/src/models/StockOrderModel.js +97 -0
- package/dist/src/models/StockOrderProductEntity.d.ts +62 -0
- package/dist/src/models/StockOrderProductEntity.js +59 -0
- package/dist/src/models/StockOrderRequestModel.d.ts +46 -0
- package/dist/src/models/StockOrderRequestModel.js +55 -0
- package/dist/src/models/StockOrderSupplierEntity.d.ts +80 -0
- package/dist/src/models/StockOrderSupplierEntity.js +65 -0
- package/dist/src/models/StockOrderSupplierModel.d.ts +80 -0
- package/dist/src/models/StockOrderSupplierModel.js +65 -0
- package/dist/src/models/StockOrdersModel.d.ts +51 -0
- package/dist/src/models/StockOrdersModel.js +56 -0
- package/dist/src/models/StockProductModel.d.ts +120 -0
- package/dist/src/models/StockProductModel.js +81 -0
- package/dist/src/models/StockProductPriceModel.d.ts +39 -0
- package/dist/src/models/StockProductPriceModel.js +52 -0
- package/dist/src/models/StockProductSummariesModel.d.ts +51 -0
- package/dist/src/models/StockProductSummariesModel.js +56 -0
- package/dist/src/models/StockProductSummaryModel.d.ts +69 -0
- package/dist/src/models/StockProductSummaryModel.js +62 -0
- package/dist/src/models/StockTransactionsEntity.d.ts +74 -0
- package/dist/src/models/StockTransactionsEntity.js +63 -0
- package/dist/src/models/SupplierEntity.d.ts +80 -0
- package/dist/src/models/SupplierEntity.js +65 -0
- package/dist/src/models/SupplierItemEntity.d.ts +74 -0
- package/dist/src/models/SupplierItemEntity.js +63 -0
- package/dist/src/models/TcxBackupEntity.d.ts +80 -0
- package/dist/src/models/TcxBackupEntity.js +65 -0
- package/dist/src/models/TcxBackupModel.d.ts +140 -0
- package/dist/src/models/TcxBackupModel.js +85 -0
- package/dist/src/models/TcxBillingEntity.d.ts +86 -0
- package/dist/src/models/TcxBillingEntity.js +67 -0
- package/dist/src/models/TcxBulkLicenceDetailsModel.d.ts +40 -0
- package/dist/src/models/TcxBulkLicenceDetailsModel.js +53 -0
- package/dist/src/models/TcxDeadLicenceEntity.d.ts +44 -0
- package/dist/src/models/TcxDeadLicenceEntity.js +53 -0
- package/dist/src/models/TcxExtsEntity.d.ts +74 -0
- package/dist/src/models/TcxExtsEntity.js +63 -0
- package/dist/src/models/TcxHostingPricingEntity.d.ts +74 -0
- package/dist/src/models/TcxHostingPricingEntity.js +63 -0
- package/dist/src/models/TcxInstallationDetailsModel.d.ts +106 -0
- package/dist/src/models/TcxInstallationDetailsModel.js +75 -0
- package/dist/src/models/TcxInstallationModel.d.ts +200 -0
- package/dist/src/models/TcxInstallationModel.js +105 -0
- package/dist/src/models/TcxInstallationsModel.d.ts +51 -0
- package/dist/src/models/TcxInstallationsModel.js +56 -0
- package/dist/src/models/TcxKeySummaryDTO.d.ts +56 -0
- package/dist/src/models/TcxKeySummaryDTO.js +57 -0
- package/dist/src/models/TcxKeysEntity.d.ts +62 -0
- package/dist/src/models/TcxKeysEntity.js +59 -0
- package/dist/src/models/TcxLicenceDetailsErrorModel.d.ts +50 -0
- package/dist/src/models/TcxLicenceDetailsErrorModel.js +55 -0
- package/dist/src/models/TcxLicenceDetailsModel.d.ts +92 -0
- package/dist/src/models/TcxLicenceDetailsModel.js +69 -0
- package/dist/src/models/TcxMacsEntity.d.ts +44 -0
- package/dist/src/models/TcxMacsEntity.js +53 -0
- package/dist/src/models/TcxMultiTenantModel.d.ts +118 -0
- package/dist/src/models/TcxMultiTenantModel.js +83 -0
- package/dist/src/models/TcxMultiTenantUserModel.d.ts +44 -0
- package/dist/src/models/TcxMultiTenantUserModel.js +53 -0
- package/dist/src/models/TcxMultiTenantsModel.d.ts +51 -0
- package/dist/src/models/TcxMultiTenantsModel.js +56 -0
- package/dist/src/models/TcxNumbersEntity.d.ts +44 -0
- package/dist/src/models/TcxNumbersEntity.js +53 -0
- package/dist/src/models/TcxOfficeHoursEntity.d.ts +116 -0
- package/dist/src/models/TcxOfficeHoursEntity.js +77 -0
- package/dist/src/models/TcxPhoneModel.d.ts +68 -0
- package/dist/src/models/TcxPhoneModel.js +61 -0
- package/dist/src/models/TcxPhonesEntity.d.ts +62 -0
- package/dist/src/models/TcxPhonesEntity.js +59 -0
- package/dist/src/models/TcxRemoteStorageModel.d.ts +50 -0
- package/dist/src/models/TcxRemoteStorageModel.js +55 -0
- package/dist/src/models/TcxSbcDTO.d.ts +62 -0
- package/dist/src/models/TcxSbcDTO.js +59 -0
- package/dist/src/models/TcxSbcEntity.d.ts +122 -0
- package/dist/src/models/TcxSbcEntity.js +79 -0
- package/dist/src/models/TcxSbcModel.d.ts +122 -0
- package/dist/src/models/TcxSbcModel.js +79 -0
- package/dist/src/models/TcxSetupEntity.d.ts +207 -0
- package/dist/src/models/TcxSetupEntity.js +123 -0
- package/dist/src/models/TcxSetupsModel.d.ts +51 -0
- package/dist/src/models/TcxSetupsModel.js +56 -0
- package/dist/src/models/TcxSipTrunksEntity.d.ts +104 -0
- package/dist/src/models/TcxSipTrunksEntity.js +73 -0
- package/dist/src/models/TcxTemplateXmlEnum.d.ts +38 -0
- package/dist/src/models/TcxTemplateXmlEnum.js +51 -0
- package/dist/src/models/TcxUsersEntity.d.ts +62 -0
- package/dist/src/models/TcxUsersEntity.js +59 -0
- package/dist/src/models/TcxWizardConfigModel.d.ts +39 -0
- package/dist/src/models/TcxWizardConfigModel.js +52 -0
- package/dist/src/models/TcxWizardModel.d.ts +150 -0
- package/dist/src/models/TcxWizardModel.js +114 -0
- package/dist/src/models/TechSupportCompanySummaryDTO.d.ts +57 -0
- package/dist/src/models/TechSupportCompanySummaryDTO.js +58 -0
- package/dist/src/models/TelephonySupportTicketModel.d.ts +94 -0
- package/dist/src/models/TelephonySupportTicketModel.js +71 -0
- package/dist/src/models/TicketSummaryModel.d.ts +74 -0
- package/dist/src/models/TicketSummaryModel.js +63 -0
- package/dist/src/models/TicketTimeDTO.d.ts +80 -0
- package/dist/src/models/TicketTimeDTO.js +65 -0
- package/dist/src/models/TokenResponseModel.d.ts +44 -0
- package/dist/src/models/TokenResponseModel.js +53 -0
- package/dist/src/models/UpdateTypeEnum.d.ts +19 -0
- package/dist/src/models/UpdateTypeEnum.js +24 -0
- package/dist/src/models/UpgradeOrderResponseModel.d.ts +38 -0
- package/dist/src/models/UpgradeOrderResponseModel.js +51 -0
- package/dist/src/models/UpgradeRequestModel.d.ts +66 -0
- package/dist/src/models/UpgradeRequestModel.js +70 -0
- package/dist/src/models/UserEntity.d.ts +98 -0
- package/dist/src/models/UserEntity.js +71 -0
- package/dist/src/models/XeroLogEntity.d.ts +86 -0
- package/dist/src/models/XeroLogEntity.js +67 -0
- package/dist/src/models/index.d.ts +196 -0
- package/dist/src/models/index.js +214 -0
- package/dist/src/runtime.d.ts +184 -0
- package/dist/src/runtime.js +564 -0
- package/docs/AccountsApi.md +60 -1
- package/docs/BillingApi.md +1 -1
- package/docs/CRMApi.md +1 -1
- package/docs/Class3CXApi.md +1 -1
- package/docs/Class3CXInstallationWizardApi.md +1 -1
- package/docs/Class3CXInstallationsApi.md +1 -1
- package/docs/Class3CXIntegrationsApi.md +1 -1
- package/docs/Class3CXMultiTenantApi.md +1 -1
- package/docs/CrmActivityDTO.md +2 -2
- package/docs/GetCheckMacExists200Response.md +20 -0
- package/docs/MacAddressDTO.md +23 -0
- package/docs/MyPBXToolsApi.md +1 -1
- package/docs/NumberPortingApi.md +1 -1
- package/docs/OAuth20Api.md +1 -1
- package/docs/OpayoRedirectDTO.md +29 -0
- package/docs/OrdersApi.md +1 -1
- package/docs/PatchUpdateAccountNameRequest.md +20 -0
- package/docs/PricingApi.md +1 -1
- package/docs/ProductDetailedSummaryDTO.md +41 -0
- package/docs/ProductSummaryDTO.md +0 -2
- package/docs/ProductsApi.md +13 -7
- package/docs/ProspectsApi.md +1 -1
- package/docs/ProvisioningApi.md +167 -1
- package/docs/SIPTrunksApi.md +1 -1
- package/docs/SMSApi.md +1 -1
- package/docs/ServicesApi.md +1 -1
- package/docs/ShippingApi.md +1 -1
- package/docs/StockManagementApi.md +1 -1
- package/docs/SystemApi.md +1 -1
- package/docs/TcxInstallationModel.md +4 -0
- package/docs/TicketsApi.md +1 -1
- package/docs/WebhooksApi.md +1 -1
- package/getEnums.php +31 -31
- package/index.ts +1 -1
- package/models/HostingPriceListEnum.ts +5 -0
- package/openapitools.json +1 -1
- package/package.json +2 -2
- package/docs/TcxHostingPricingEntity.md +0 -35
package/base.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Yellowgrid
|
|
5
|
-
* Welcome to the Yellowgrid API documentation.
|
|
5
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 0
|
|
8
8
|
*
|
|
@@ -19,7 +19,7 @@ import type { Configuration } from './configuration';
|
|
|
19
19
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
20
20
|
import globalAxios from 'axios';
|
|
21
21
|
|
|
22
|
-
export const BASE_PATH = "https://
|
|
22
|
+
export const BASE_PATH = "https://localhost".replace(/\/+$/, "");
|
|
23
23
|
|
|
24
24
|
export const COLLECTION_FORMATS = {
|
|
25
25
|
csv: ",",
|
package/common.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Yellowgrid
|
|
5
|
-
* Welcome to the Yellowgrid API documentation.
|
|
5
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
6
6
|
*
|
|
7
7
|
* The version of the OpenAPI document: 0
|
|
8
8
|
*
|
package/config.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
{
|
|
2
|
-
"npmName": "yellowgrid-api-ts"
|
|
3
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"npmName": "yellowgrid-api-ts"
|
|
3
|
+
}
|
package/configuration.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/**
|
|
3
3
|
* Yellowgrid
|
|
4
|
-
* Welcome to the Yellowgrid API documentation.
|
|
4
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
5
5
|
*
|
|
6
6
|
* The version of the OpenAPI document: 0
|
|
7
7
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `https://localhost` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -1694,10 +1694,6 @@ export interface CrmActivityDTO {
|
|
|
1694
1694
|
* Activity Description
|
|
1695
1695
|
*/
|
|
1696
1696
|
'description'?: string;
|
|
1697
|
-
/**
|
|
1698
|
-
* Activity URL
|
|
1699
|
-
*/
|
|
1700
|
-
'url'?: string | null;
|
|
1701
1697
|
/**
|
|
1702
1698
|
* Activity User Name
|
|
1703
1699
|
*/
|
|
@@ -1706,6 +1702,10 @@ export interface CrmActivityDTO {
|
|
|
1706
1702
|
* Activity Contact Name
|
|
1707
1703
|
*/
|
|
1708
1704
|
'contact'?: string | null;
|
|
1705
|
+
/**
|
|
1706
|
+
* Activity Order ID
|
|
1707
|
+
*/
|
|
1708
|
+
'orderId'?: number | null;
|
|
1709
1709
|
}
|
|
1710
1710
|
/**
|
|
1711
1711
|
* CRM Contact
|
|
@@ -2590,6 +2590,9 @@ export interface GenericFileModel {
|
|
|
2590
2590
|
*/
|
|
2591
2591
|
'type'?: string;
|
|
2592
2592
|
}
|
|
2593
|
+
export interface GetCheckMacExists200Response {
|
|
2594
|
+
'found'?: boolean;
|
|
2595
|
+
}
|
|
2593
2596
|
export interface GetGetPrice200Response {
|
|
2594
2597
|
'price'?: number;
|
|
2595
2598
|
}
|
|
@@ -3247,6 +3250,19 @@ export interface MFARequiredModel {
|
|
|
3247
3250
|
*/
|
|
3248
3251
|
'png'?: string;
|
|
3249
3252
|
}
|
|
3253
|
+
/**
|
|
3254
|
+
* MAC Address DTO
|
|
3255
|
+
*/
|
|
3256
|
+
export interface MacAddressDTO {
|
|
3257
|
+
/**
|
|
3258
|
+
* Group ID
|
|
3259
|
+
*/
|
|
3260
|
+
'groupId'?: number;
|
|
3261
|
+
/**
|
|
3262
|
+
* MAC Address
|
|
3263
|
+
*/
|
|
3264
|
+
'macAddress'?: string;
|
|
3265
|
+
}
|
|
3250
3266
|
/**
|
|
3251
3267
|
* Monthly Contract Usage
|
|
3252
3268
|
*/
|
|
@@ -3527,6 +3543,31 @@ export interface OfflineInstancesEntity {
|
|
|
3527
3543
|
*/
|
|
3528
3544
|
'alerted'?: number;
|
|
3529
3545
|
}
|
|
3546
|
+
/**
|
|
3547
|
+
* Opayo Redirect
|
|
3548
|
+
*/
|
|
3549
|
+
export interface OpayoRedirectDTO {
|
|
3550
|
+
/**
|
|
3551
|
+
* acsUrl
|
|
3552
|
+
*/
|
|
3553
|
+
'acsUrl'?: string | null;
|
|
3554
|
+
/**
|
|
3555
|
+
* paReq
|
|
3556
|
+
*/
|
|
3557
|
+
'paReq'?: string | null;
|
|
3558
|
+
/**
|
|
3559
|
+
* Transaction ID
|
|
3560
|
+
*/
|
|
3561
|
+
'transactionId'?: string | null;
|
|
3562
|
+
/**
|
|
3563
|
+
* dsTranId
|
|
3564
|
+
*/
|
|
3565
|
+
'dsTranId'?: string | null;
|
|
3566
|
+
/**
|
|
3567
|
+
* cReq
|
|
3568
|
+
*/
|
|
3569
|
+
'cReq'?: string | null;
|
|
3570
|
+
}
|
|
3530
3571
|
/**
|
|
3531
3572
|
* Legacy Portal Order
|
|
3532
3573
|
*/
|
|
@@ -4370,6 +4411,12 @@ export interface PatchUpdateAccountContactPasswordRequest {
|
|
|
4370
4411
|
*/
|
|
4371
4412
|
'password'?: string;
|
|
4372
4413
|
}
|
|
4414
|
+
export interface PatchUpdateAccountNameRequest {
|
|
4415
|
+
/**
|
|
4416
|
+
* Company Name
|
|
4417
|
+
*/
|
|
4418
|
+
'name'?: string;
|
|
4419
|
+
}
|
|
4373
4420
|
export interface PatchUpdateAccountPhoneRequest {
|
|
4374
4421
|
/**
|
|
4375
4422
|
* Phone
|
|
@@ -4422,6 +4469,7 @@ export declare const PatchUpdateTcxHostingPriceListRequestPriceListEnum: {
|
|
|
4422
4469
|
readonly _3: "3";
|
|
4423
4470
|
readonly _4: "4";
|
|
4424
4471
|
readonly _5: "5";
|
|
4472
|
+
readonly _6: "6";
|
|
4425
4473
|
};
|
|
4426
4474
|
export type PatchUpdateTcxHostingPriceListRequestPriceListEnum = typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum[keyof typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum];
|
|
4427
4475
|
export interface PatchUpdateTcxPartnerIdRequest {
|
|
@@ -4696,6 +4744,55 @@ export interface PrizesEntity {
|
|
|
4696
4744
|
*/
|
|
4697
4745
|
'image'?: string;
|
|
4698
4746
|
}
|
|
4747
|
+
/**
|
|
4748
|
+
* Product Detailed Summary
|
|
4749
|
+
*/
|
|
4750
|
+
export interface ProductDetailedSummaryDTO {
|
|
4751
|
+
/**
|
|
4752
|
+
* SKU
|
|
4753
|
+
*/
|
|
4754
|
+
'sku'?: string;
|
|
4755
|
+
/**
|
|
4756
|
+
* Title
|
|
4757
|
+
*/
|
|
4758
|
+
'title'?: string;
|
|
4759
|
+
/**
|
|
4760
|
+
* Stock Quantity
|
|
4761
|
+
*/
|
|
4762
|
+
'quantity'?: number | null;
|
|
4763
|
+
/**
|
|
4764
|
+
* Stock Product
|
|
4765
|
+
*/
|
|
4766
|
+
'stockProduct'?: boolean;
|
|
4767
|
+
/**
|
|
4768
|
+
* Price
|
|
4769
|
+
*/
|
|
4770
|
+
'price'?: number | null;
|
|
4771
|
+
/**
|
|
4772
|
+
* Carton Size
|
|
4773
|
+
*/
|
|
4774
|
+
'cartonSize'?: number | null;
|
|
4775
|
+
/**
|
|
4776
|
+
* RRP Price
|
|
4777
|
+
*/
|
|
4778
|
+
'rrp'?: number | null;
|
|
4779
|
+
/**
|
|
4780
|
+
* 3CX Licence Details
|
|
4781
|
+
*/
|
|
4782
|
+
'licenceDetails'?: TcxLicenceDetailsModel | null;
|
|
4783
|
+
/**
|
|
4784
|
+
* 3CX Hosting
|
|
4785
|
+
*/
|
|
4786
|
+
'hosting'?: boolean | null;
|
|
4787
|
+
/**
|
|
4788
|
+
* Due Date
|
|
4789
|
+
*/
|
|
4790
|
+
'dueDate'?: string | null;
|
|
4791
|
+
/**
|
|
4792
|
+
* On Order
|
|
4793
|
+
*/
|
|
4794
|
+
'onOrder'?: number | null;
|
|
4795
|
+
}
|
|
4699
4796
|
/**
|
|
4700
4797
|
* Product Price List Item
|
|
4701
4798
|
*/
|
|
@@ -4775,10 +4872,6 @@ export interface ProductSummaryDTO {
|
|
|
4775
4872
|
* Stock Product
|
|
4776
4873
|
*/
|
|
4777
4874
|
'stockProduct'?: boolean;
|
|
4778
|
-
/**
|
|
4779
|
-
* Due Date
|
|
4780
|
-
*/
|
|
4781
|
-
'dueDate'?: string | null;
|
|
4782
4875
|
/**
|
|
4783
4876
|
* Price
|
|
4784
4877
|
*/
|
|
@@ -7203,43 +7296,6 @@ export interface TcxExtsEntity {
|
|
|
7203
7296
|
*/
|
|
7204
7297
|
'recording'?: boolean;
|
|
7205
7298
|
}
|
|
7206
|
-
/**
|
|
7207
|
-
* HostingPricingEntity
|
|
7208
|
-
*/
|
|
7209
|
-
export interface TcxHostingPricingEntity {
|
|
7210
|
-
/**
|
|
7211
|
-
* id
|
|
7212
|
-
*/
|
|
7213
|
-
'id'?: number;
|
|
7214
|
-
/**
|
|
7215
|
-
* title
|
|
7216
|
-
*/
|
|
7217
|
-
'title'?: string;
|
|
7218
|
-
/**
|
|
7219
|
-
* perSc
|
|
7220
|
-
*/
|
|
7221
|
-
'perSc'?: number;
|
|
7222
|
-
/**
|
|
7223
|
-
* perMultiTenantSc
|
|
7224
|
-
*/
|
|
7225
|
-
'perMultiTenantSc'?: number;
|
|
7226
|
-
/**
|
|
7227
|
-
* flatRate
|
|
7228
|
-
*/
|
|
7229
|
-
'flatRate'?: number;
|
|
7230
|
-
/**
|
|
7231
|
-
* maxFlatRateSc
|
|
7232
|
-
*/
|
|
7233
|
-
'maxFlatRateSc'?: number;
|
|
7234
|
-
/**
|
|
7235
|
-
* highScThreshold
|
|
7236
|
-
*/
|
|
7237
|
-
'highScThreshold'?: number;
|
|
7238
|
-
/**
|
|
7239
|
-
* highScDiscount
|
|
7240
|
-
*/
|
|
7241
|
-
'highScDiscount'?: number;
|
|
7242
|
-
}
|
|
7243
7299
|
/**
|
|
7244
7300
|
* 3CX Installation
|
|
7245
7301
|
*/
|
|
@@ -7360,6 +7416,14 @@ export interface TcxInstallationModel {
|
|
|
7360
7416
|
* Auto Failover
|
|
7361
7417
|
*/
|
|
7362
7418
|
'autoFailover'?: boolean;
|
|
7419
|
+
/**
|
|
7420
|
+
* Extensions in Use
|
|
7421
|
+
*/
|
|
7422
|
+
'extensions'?: number | null;
|
|
7423
|
+
/**
|
|
7424
|
+
* Max Allowed Extensions
|
|
7425
|
+
*/
|
|
7426
|
+
'maxExtensions'?: number | null;
|
|
7363
7427
|
}
|
|
7364
7428
|
/**
|
|
7365
7429
|
* 3CX Installations
|
|
@@ -8742,6 +8806,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
8742
8806
|
* @throws {RequiredError}
|
|
8743
8807
|
*/
|
|
8744
8808
|
patchUpdateAccountContactPassword: (token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8809
|
+
/**
|
|
8810
|
+
* Set Account Name
|
|
8811
|
+
* @param {string} id Xero ID
|
|
8812
|
+
* @param {PatchUpdateAccountNameRequest} [patchUpdateAccountNameRequest] Account Name Request
|
|
8813
|
+
* @param {*} [options] Override http request option.
|
|
8814
|
+
* @throws {RequiredError}
|
|
8815
|
+
*/
|
|
8816
|
+
patchUpdateAccountName: (id: string, patchUpdateAccountNameRequest?: PatchUpdateAccountNameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8745
8817
|
/**
|
|
8746
8818
|
* Set Account Phone
|
|
8747
8819
|
* @param {string} id Xero ID
|
|
@@ -9102,6 +9174,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9102
9174
|
* @throws {RequiredError}
|
|
9103
9175
|
*/
|
|
9104
9176
|
patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9177
|
+
/**
|
|
9178
|
+
* Set Account Name
|
|
9179
|
+
* @param {string} id Xero ID
|
|
9180
|
+
* @param {PatchUpdateAccountNameRequest} [patchUpdateAccountNameRequest] Account Name Request
|
|
9181
|
+
* @param {*} [options] Override http request option.
|
|
9182
|
+
* @throws {RequiredError}
|
|
9183
|
+
*/
|
|
9184
|
+
patchUpdateAccountName(id: string, patchUpdateAccountNameRequest?: PatchUpdateAccountNameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
9105
9185
|
/**
|
|
9106
9186
|
* Set Account Phone
|
|
9107
9187
|
* @param {string} id Xero ID
|
|
@@ -9462,6 +9542,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
9462
9542
|
* @throws {RequiredError}
|
|
9463
9543
|
*/
|
|
9464
9544
|
patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9545
|
+
/**
|
|
9546
|
+
* Set Account Name
|
|
9547
|
+
* @param {string} id Xero ID
|
|
9548
|
+
* @param {PatchUpdateAccountNameRequest} [patchUpdateAccountNameRequest] Account Name Request
|
|
9549
|
+
* @param {*} [options] Override http request option.
|
|
9550
|
+
* @throws {RequiredError}
|
|
9551
|
+
*/
|
|
9552
|
+
patchUpdateAccountName(id: string, patchUpdateAccountNameRequest?: PatchUpdateAccountNameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
9465
9553
|
/**
|
|
9466
9554
|
* Set Account Phone
|
|
9467
9555
|
* @param {string} id Xero ID
|
|
@@ -9822,6 +9910,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
9822
9910
|
* @throws {RequiredError}
|
|
9823
9911
|
*/
|
|
9824
9912
|
patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9913
|
+
/**
|
|
9914
|
+
* Set Account Name
|
|
9915
|
+
* @param {string} id Xero ID
|
|
9916
|
+
* @param {PatchUpdateAccountNameRequest} [patchUpdateAccountNameRequest] Account Name Request
|
|
9917
|
+
* @param {*} [options] Override http request option.
|
|
9918
|
+
* @throws {RequiredError}
|
|
9919
|
+
*/
|
|
9920
|
+
patchUpdateAccountName(id: string, patchUpdateAccountNameRequest?: PatchUpdateAccountNameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9825
9921
|
/**
|
|
9826
9922
|
* Set Account Phone
|
|
9827
9923
|
* @param {string} id Xero ID
|
|
@@ -15252,20 +15348,22 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15252
15348
|
* @summary Get Product
|
|
15253
15349
|
* @param {string} sku Product SKU
|
|
15254
15350
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15351
|
+
* @param {number} [orderId] Order ID
|
|
15255
15352
|
* @param {*} [options] Override http request option.
|
|
15256
15353
|
* @throws {RequiredError}
|
|
15257
15354
|
*/
|
|
15258
|
-
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15355
|
+
postGetProduct: (sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15259
15356
|
/**
|
|
15260
15357
|
* Get Product For Customer
|
|
15261
15358
|
* @summary Get Product For Customer
|
|
15262
15359
|
* @param {number} customerId Customer ID
|
|
15263
15360
|
* @param {string} sku Product SKU
|
|
15264
15361
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15362
|
+
* @param {number} [orderId] Order ID
|
|
15265
15363
|
* @param {*} [options] Override http request option.
|
|
15266
15364
|
* @throws {RequiredError}
|
|
15267
15365
|
*/
|
|
15268
|
-
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15366
|
+
postGetProductForCustomer: (customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15269
15367
|
};
|
|
15270
15368
|
/**
|
|
15271
15369
|
* ProductsApi - functional programming interface
|
|
@@ -15339,20 +15437,22 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
15339
15437
|
* @summary Get Product
|
|
15340
15438
|
* @param {string} sku Product SKU
|
|
15341
15439
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15440
|
+
* @param {number} [orderId] Order ID
|
|
15342
15441
|
* @param {*} [options] Override http request option.
|
|
15343
15442
|
* @throws {RequiredError}
|
|
15344
15443
|
*/
|
|
15345
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
15444
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductDetailedSummaryDTO>>;
|
|
15346
15445
|
/**
|
|
15347
15446
|
* Get Product For Customer
|
|
15348
15447
|
* @summary Get Product For Customer
|
|
15349
15448
|
* @param {number} customerId Customer ID
|
|
15350
15449
|
* @param {string} sku Product SKU
|
|
15351
15450
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15451
|
+
* @param {number} [orderId] Order ID
|
|
15352
15452
|
* @param {*} [options] Override http request option.
|
|
15353
15453
|
* @throws {RequiredError}
|
|
15354
15454
|
*/
|
|
15355
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
15455
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductDetailedSummaryDTO>>;
|
|
15356
15456
|
};
|
|
15357
15457
|
/**
|
|
15358
15458
|
* ProductsApi - factory interface
|
|
@@ -15426,20 +15526,22 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
15426
15526
|
* @summary Get Product
|
|
15427
15527
|
* @param {string} sku Product SKU
|
|
15428
15528
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15529
|
+
* @param {number} [orderId] Order ID
|
|
15429
15530
|
* @param {*} [options] Override http request option.
|
|
15430
15531
|
* @throws {RequiredError}
|
|
15431
15532
|
*/
|
|
15432
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
15533
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig): AxiosPromise<ProductDetailedSummaryDTO>;
|
|
15433
15534
|
/**
|
|
15434
15535
|
* Get Product For Customer
|
|
15435
15536
|
* @summary Get Product For Customer
|
|
15436
15537
|
* @param {number} customerId Customer ID
|
|
15437
15538
|
* @param {string} sku Product SKU
|
|
15438
15539
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15540
|
+
* @param {number} [orderId] Order ID
|
|
15439
15541
|
* @param {*} [options] Override http request option.
|
|
15440
15542
|
* @throws {RequiredError}
|
|
15441
15543
|
*/
|
|
15442
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
15544
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig): AxiosPromise<ProductDetailedSummaryDTO>;
|
|
15443
15545
|
};
|
|
15444
15546
|
/**
|
|
15445
15547
|
* ProductsApi - object-oriented interface
|
|
@@ -15513,20 +15615,22 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
15513
15615
|
* @summary Get Product
|
|
15514
15616
|
* @param {string} sku Product SKU
|
|
15515
15617
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15618
|
+
* @param {number} [orderId] Order ID
|
|
15516
15619
|
* @param {*} [options] Override http request option.
|
|
15517
15620
|
* @throws {RequiredError}
|
|
15518
15621
|
*/
|
|
15519
|
-
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15622
|
+
postGetProduct(sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductDetailedSummaryDTO, any, {}>>;
|
|
15520
15623
|
/**
|
|
15521
15624
|
* Get Product For Customer
|
|
15522
15625
|
* @summary Get Product For Customer
|
|
15523
15626
|
* @param {number} customerId Customer ID
|
|
15524
15627
|
* @param {string} sku Product SKU
|
|
15525
15628
|
* @param {PostGetProductForCustomerRequest} postGetProductForCustomerRequest Product search criteria
|
|
15629
|
+
* @param {number} [orderId] Order ID
|
|
15526
15630
|
* @param {*} [options] Override http request option.
|
|
15527
15631
|
* @throws {RequiredError}
|
|
15528
15632
|
*/
|
|
15529
|
-
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15633
|
+
postGetProductForCustomer(customerId: number, sku: string, postGetProductForCustomerRequest: PostGetProductForCustomerRequest, orderId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductDetailedSummaryDTO, any, {}>>;
|
|
15530
15634
|
}
|
|
15531
15635
|
export declare const GetGetLegacyStockListFormatEnum: {
|
|
15532
15636
|
readonly Xml: "XML";
|
|
@@ -15698,6 +15802,13 @@ export declare const ProvisioningApiAxiosParamCreator: (configuration?: Configur
|
|
|
15698
15802
|
* @throws {RequiredError}
|
|
15699
15803
|
*/
|
|
15700
15804
|
deleteAddFanvilMac: (id: string, mac: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15805
|
+
/**
|
|
15806
|
+
* Delete a MAC address in FDPS
|
|
15807
|
+
* @param {string} mac MAC Address
|
|
15808
|
+
* @param {*} [options] Override http request option.
|
|
15809
|
+
* @throws {RequiredError}
|
|
15810
|
+
*/
|
|
15811
|
+
deleteCheckMacExists: (mac: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15701
15812
|
/**
|
|
15702
15813
|
* Delete a Fanvil provisioning group
|
|
15703
15814
|
* @summary Delete group from DB and FDPS
|
|
@@ -15706,6 +15817,13 @@ export declare const ProvisioningApiAxiosParamCreator: (configuration?: Configur
|
|
|
15706
15817
|
* @throws {RequiredError}
|
|
15707
15818
|
*/
|
|
15708
15819
|
deleteDeleteFanvilGroup: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15820
|
+
/**
|
|
15821
|
+
* Check if a MAC address exists in FDPS
|
|
15822
|
+
* @param {string} mac MAC Address
|
|
15823
|
+
* @param {*} [options] Override http request option.
|
|
15824
|
+
* @throws {RequiredError}
|
|
15825
|
+
*/
|
|
15826
|
+
getCheckMacExists: (mac: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15709
15827
|
/**
|
|
15710
15828
|
* Get group Fanvil encryption key
|
|
15711
15829
|
* @summary Get group Fanvil encryption key
|
|
@@ -15748,6 +15866,13 @@ export declare const ProvisioningApiAxiosParamCreator: (configuration?: Configur
|
|
|
15748
15866
|
* @throws {RequiredError}
|
|
15749
15867
|
*/
|
|
15750
15868
|
postAddFanvilMac: (id: string, mac: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15869
|
+
/**
|
|
15870
|
+
* Create a MAC address in FDPS
|
|
15871
|
+
* @param {MacAddressDTO} [macAddressDTO] Mac Address
|
|
15872
|
+
* @param {*} [options] Override http request option.
|
|
15873
|
+
* @throws {RequiredError}
|
|
15874
|
+
*/
|
|
15875
|
+
postCreateMac: (macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15751
15876
|
};
|
|
15752
15877
|
/**
|
|
15753
15878
|
* ProvisioningApi - functional programming interface
|
|
@@ -15762,6 +15887,13 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
15762
15887
|
* @throws {RequiredError}
|
|
15763
15888
|
*/
|
|
15764
15889
|
deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15890
|
+
/**
|
|
15891
|
+
* Delete a MAC address in FDPS
|
|
15892
|
+
* @param {string} mac MAC Address
|
|
15893
|
+
* @param {*} [options] Override http request option.
|
|
15894
|
+
* @throws {RequiredError}
|
|
15895
|
+
*/
|
|
15896
|
+
deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15765
15897
|
/**
|
|
15766
15898
|
* Delete a Fanvil provisioning group
|
|
15767
15899
|
* @summary Delete group from DB and FDPS
|
|
@@ -15770,6 +15902,13 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
15770
15902
|
* @throws {RequiredError}
|
|
15771
15903
|
*/
|
|
15772
15904
|
deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15905
|
+
/**
|
|
15906
|
+
* Check if a MAC address exists in FDPS
|
|
15907
|
+
* @param {string} mac MAC Address
|
|
15908
|
+
* @param {*} [options] Override http request option.
|
|
15909
|
+
* @throws {RequiredError}
|
|
15910
|
+
*/
|
|
15911
|
+
getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCheckMacExists200Response>>;
|
|
15773
15912
|
/**
|
|
15774
15913
|
* Get group Fanvil encryption key
|
|
15775
15914
|
* @summary Get group Fanvil encryption key
|
|
@@ -15812,6 +15951,13 @@ export declare const ProvisioningApiFp: (configuration?: Configuration) => {
|
|
|
15812
15951
|
* @throws {RequiredError}
|
|
15813
15952
|
*/
|
|
15814
15953
|
postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15954
|
+
/**
|
|
15955
|
+
* Create a MAC address in FDPS
|
|
15956
|
+
* @param {MacAddressDTO} [macAddressDTO] Mac Address
|
|
15957
|
+
* @param {*} [options] Override http request option.
|
|
15958
|
+
* @throws {RequiredError}
|
|
15959
|
+
*/
|
|
15960
|
+
postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MacAddressDTO>>;
|
|
15815
15961
|
};
|
|
15816
15962
|
/**
|
|
15817
15963
|
* ProvisioningApi - factory interface
|
|
@@ -15826,6 +15972,13 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
15826
15972
|
* @throws {RequiredError}
|
|
15827
15973
|
*/
|
|
15828
15974
|
deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15975
|
+
/**
|
|
15976
|
+
* Delete a MAC address in FDPS
|
|
15977
|
+
* @param {string} mac MAC Address
|
|
15978
|
+
* @param {*} [options] Override http request option.
|
|
15979
|
+
* @throws {RequiredError}
|
|
15980
|
+
*/
|
|
15981
|
+
deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15829
15982
|
/**
|
|
15830
15983
|
* Delete a Fanvil provisioning group
|
|
15831
15984
|
* @summary Delete group from DB and FDPS
|
|
@@ -15834,6 +15987,13 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
15834
15987
|
* @throws {RequiredError}
|
|
15835
15988
|
*/
|
|
15836
15989
|
deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15990
|
+
/**
|
|
15991
|
+
* Check if a MAC address exists in FDPS
|
|
15992
|
+
* @param {string} mac MAC Address
|
|
15993
|
+
* @param {*} [options] Override http request option.
|
|
15994
|
+
* @throws {RequiredError}
|
|
15995
|
+
*/
|
|
15996
|
+
getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): AxiosPromise<GetCheckMacExists200Response>;
|
|
15837
15997
|
/**
|
|
15838
15998
|
* Get group Fanvil encryption key
|
|
15839
15999
|
* @summary Get group Fanvil encryption key
|
|
@@ -15876,6 +16036,13 @@ export declare const ProvisioningApiFactory: (configuration?: Configuration, bas
|
|
|
15876
16036
|
* @throws {RequiredError}
|
|
15877
16037
|
*/
|
|
15878
16038
|
postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16039
|
+
/**
|
|
16040
|
+
* Create a MAC address in FDPS
|
|
16041
|
+
* @param {MacAddressDTO} [macAddressDTO] Mac Address
|
|
16042
|
+
* @param {*} [options] Override http request option.
|
|
16043
|
+
* @throws {RequiredError}
|
|
16044
|
+
*/
|
|
16045
|
+
postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<MacAddressDTO>;
|
|
15879
16046
|
};
|
|
15880
16047
|
/**
|
|
15881
16048
|
* ProvisioningApi - object-oriented interface
|
|
@@ -15890,6 +16057,13 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
15890
16057
|
* @throws {RequiredError}
|
|
15891
16058
|
*/
|
|
15892
16059
|
deleteAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16060
|
+
/**
|
|
16061
|
+
* Delete a MAC address in FDPS
|
|
16062
|
+
* @param {string} mac MAC Address
|
|
16063
|
+
* @param {*} [options] Override http request option.
|
|
16064
|
+
* @throws {RequiredError}
|
|
16065
|
+
*/
|
|
16066
|
+
deleteCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15893
16067
|
/**
|
|
15894
16068
|
* Delete a Fanvil provisioning group
|
|
15895
16069
|
* @summary Delete group from DB and FDPS
|
|
@@ -15898,6 +16072,13 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
15898
16072
|
* @throws {RequiredError}
|
|
15899
16073
|
*/
|
|
15900
16074
|
deleteDeleteFanvilGroup(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16075
|
+
/**
|
|
16076
|
+
* Check if a MAC address exists in FDPS
|
|
16077
|
+
* @param {string} mac MAC Address
|
|
16078
|
+
* @param {*} [options] Override http request option.
|
|
16079
|
+
* @throws {RequiredError}
|
|
16080
|
+
*/
|
|
16081
|
+
getCheckMacExists(mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCheckMacExists200Response, any, {}>>;
|
|
15901
16082
|
/**
|
|
15902
16083
|
* Get group Fanvil encryption key
|
|
15903
16084
|
* @summary Get group Fanvil encryption key
|
|
@@ -15940,6 +16121,13 @@ export declare class ProvisioningApi extends BaseAPI {
|
|
|
15940
16121
|
* @throws {RequiredError}
|
|
15941
16122
|
*/
|
|
15942
16123
|
postAddFanvilMac(id: string, mac: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16124
|
+
/**
|
|
16125
|
+
* Create a MAC address in FDPS
|
|
16126
|
+
* @param {MacAddressDTO} [macAddressDTO] Mac Address
|
|
16127
|
+
* @param {*} [options] Override http request option.
|
|
16128
|
+
* @throws {RequiredError}
|
|
16129
|
+
*/
|
|
16130
|
+
postCreateMac(macAddressDTO?: MacAddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MacAddressDTO, any, {}>>;
|
|
15943
16131
|
}
|
|
15944
16132
|
/**
|
|
15945
16133
|
* SIPTrunksApi - axios parameter creator
|