@quantum-hub/qhub-api 1.0.4
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/README.md +9 -0
- package/dist/api/platform/BaseClient.d.ts +43 -0
- package/dist/api/platform/BaseClient.js +66 -0
- package/dist/api/platform/Client.d.ts +41 -0
- package/dist/api/platform/Client.js +62 -0
- package/dist/api/platform/api/errors/BadRequestError.d.ts +5 -0
- package/dist/api/platform/api/errors/BadRequestError.js +54 -0
- package/dist/api/platform/api/errors/ForbiddenError.d.ts +5 -0
- package/dist/api/platform/api/errors/ForbiddenError.js +54 -0
- package/dist/api/platform/api/errors/InternalServerError.d.ts +5 -0
- package/dist/api/platform/api/errors/InternalServerError.js +54 -0
- package/dist/api/platform/api/errors/NotFoundError.d.ts +5 -0
- package/dist/api/platform/api/errors/NotFoundError.js +54 -0
- package/dist/api/platform/api/errors/UnauthorizedError.d.ts +5 -0
- package/dist/api/platform/api/errors/UnauthorizedError.js +54 -0
- package/dist/api/platform/api/errors/index.d.ts +5 -0
- package/dist/api/platform/api/errors/index.js +21 -0
- package/dist/api/platform/api/index.d.ts +3 -0
- package/dist/api/platform/api/index.js +19 -0
- package/dist/api/platform/api/resources/applications/client/Client.d.ts +120 -0
- package/dist/api/platform/api/resources/applications/client/Client.js +425 -0
- package/dist/api/platform/api/resources/applications/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/applications/client/index.js +17 -0
- package/dist/api/platform/api/resources/applications/client/requests/CreateApplicationRequest.d.ts +7 -0
- package/dist/api/platform/api/resources/applications/client/requests/CreateApplicationRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/DeleteApplicationRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/DeleteApplicationRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationAccessKeysRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationAccessKeysRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationSubscriptionsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/applications/client/requests/GetApplicationSubscriptionsRequest.js +3 -0
- package/dist/api/platform/api/resources/applications/client/requests/index.d.ts +5 -0
- package/dist/api/platform/api/resources/applications/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/applications/index.d.ts +1 -0
- package/dist/api/platform/api/resources/applications/index.js +17 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/Client.d.ts +163 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/Client.js +538 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/index.js +17 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/AddConstraint1Request.d.ts +14 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/AddConstraint1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteConstraint1Request.d.ts +13 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteConstraint1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteShare1Request.d.ts +11 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/DeleteShare1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/GetSharesForDataPoolRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/GetSharesForDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/ShareDataPoolRequest.d.ts +12 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/ShareDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateRole1Request.d.ts +14 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateRole1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateTimeBasedConstraint1Request.d.ts +19 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/UpdateTimeBasedConstraint1Request.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/index.d.ts +7 -0
- package/dist/api/platform/api/resources/dataPoolShares/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/index.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/index.js +18 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/AddConstraint1Response.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/AddConstraint1Response.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1RequestBody.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1RequestBody.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1Response.d.ts +2 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1Response.js +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/index.d.ts +3 -0
- package/dist/api/platform/api/resources/dataPoolShares/types/index.js +19 -0
- package/dist/api/platform/api/resources/dataPools/client/Client.d.ts +170 -0
- package/dist/api/platform/api/resources/dataPools/client/Client.js +624 -0
- package/dist/api/platform/api/resources/dataPools/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/dataPools/client/index.js +17 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/AddDataPoolFileRequest.d.ts +13 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/AddDataPoolFileRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/CreateDataPoolRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/CreateDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolFileRequest.d.ts +11 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolFileRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFileRequest.d.ts +11 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFileRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFilesRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolFilesRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/GetDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/UpdateDataPoolRequest.d.ts +17 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/UpdateDataPoolRequest.js +3 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/index.d.ts +8 -0
- package/dist/api/platform/api/resources/dataPools/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/dataPools/index.d.ts +1 -0
- package/dist/api/platform/api/resources/dataPools/index.js +17 -0
- package/dist/api/platform/api/resources/index.d.ts +23 -0
- package/dist/api/platform/api/resources/index.js +62 -0
- package/dist/api/platform/api/resources/organizations/client/Client.d.ts +33 -0
- package/dist/api/platform/api/resources/organizations/client/Client.js +119 -0
- package/dist/api/platform/api/resources/organizations/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/organizations/client/index.js +17 -0
- package/dist/api/platform/api/resources/organizations/client/requests/GetServiceExecutions1Request.d.ts +9 -0
- package/dist/api/platform/api/resources/organizations/client/requests/GetServiceExecutions1Request.js +3 -0
- package/dist/api/platform/api/resources/organizations/client/requests/index.d.ts +1 -0
- package/dist/api/platform/api/resources/organizations/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/organizations/index.d.ts +1 -0
- package/dist/api/platform/api/resources/organizations/index.js +17 -0
- package/dist/api/platform/api/resources/quantumJobs/client/Client.d.ts +31 -0
- package/dist/api/platform/api/resources/quantumJobs/client/Client.js +113 -0
- package/dist/api/platform/api/resources/quantumJobs/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumJobs/client/index.js +17 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/GetQuantumJobCostsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/GetQuantumJobCostsRequest.js +3 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumJobs/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/quantumJobs/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumJobs/index.js +17 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/Client.d.ts +31 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/Client.js +113 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/index.js +17 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/GetQuantumWorkloadCostsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/GetQuantumWorkloadCostsRequest.js +3 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumWorkloads/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/quantumWorkloads/index.d.ts +1 -0
- package/dist/api/platform/api/resources/quantumWorkloads/index.js +17 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/Client.d.ts +167 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/Client.js +623 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/index.js +17 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/CancelServiceExecutionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/CancelServiceExecutionRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionCostsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionCostsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionLogsRequest.d.ts +13 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionLogsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionMetricsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionMetricsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultFileRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultFileRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionsRequest.d.ts +24 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/HeadServiceExecutionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/HeadServiceExecutionRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/index.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceExecutions/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/serviceExecutions/index.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceExecutions/index.js +18 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/GetServiceExecutionResponse.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/GetServiceExecutionResponse.js +3 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceExecutions/types/index.js +17 -0
- package/dist/api/platform/api/resources/serviceJobs/client/Client.d.ts +87 -0
- package/dist/api/platform/api/resources/serviceJobs/client/Client.js +322 -0
- package/dist/api/platform/api/resources/serviceJobs/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceJobs/client/index.js +17 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/CreateServiceJobRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/CreateServiceJobRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobsRequest.d.ts +22 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobsRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/RerunServiceJobRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/RerunServiceJobRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/index.d.ts +4 -0
- package/dist/api/platform/api/resources/serviceJobs/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/serviceJobs/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceJobs/index.js +17 -0
- package/dist/api/platform/api/resources/serviceShares/client/Client.d.ts +163 -0
- package/dist/api/platform/api/resources/serviceShares/client/Client.js +538 -0
- package/dist/api/platform/api/resources/serviceShares/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/serviceShares/client/index.js +17 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/AddConstraintRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/AddConstraintRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteConstraintRequest.d.ts +13 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteConstraintRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteShareRequest.d.ts +11 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/DeleteShareRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/GetSharesForServiceRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/GetSharesForServiceRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/ShareServiceRequest.d.ts +12 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/ShareServiceRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateRoleRequest.d.ts +14 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateRoleRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateTimeBasedConstraintRequest.d.ts +19 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/UpdateTimeBasedConstraintRequest.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/index.d.ts +7 -0
- package/dist/api/platform/api/resources/serviceShares/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/serviceShares/index.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/index.js +18 -0
- package/dist/api/platform/api/resources/serviceShares/types/AddConstraintResponse.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/types/AddConstraintResponse.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintRequestBody.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintRequestBody.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintResponse.d.ts +2 -0
- package/dist/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintResponse.js +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/index.d.ts +3 -0
- package/dist/api/platform/api/resources/serviceShares/types/index.js +19 -0
- package/dist/api/platform/api/resources/subscriptions/client/Client.d.ts +87 -0
- package/dist/api/platform/api/resources/subscriptions/client/Client.js +305 -0
- package/dist/api/platform/api/resources/subscriptions/client/index.d.ts +1 -0
- package/dist/api/platform/api/resources/subscriptions/client/index.js +17 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/CreateSubscriptionRequest.d.ts +8 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/CreateSubscriptionRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/DeleteSubscriptionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/DeleteSubscriptionRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionServiceExecutionsRequest.d.ts +9 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionServiceExecutionsRequest.js +3 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/index.d.ts +4 -0
- package/dist/api/platform/api/resources/subscriptions/client/requests/index.js +2 -0
- package/dist/api/platform/api/resources/subscriptions/index.d.ts +1 -0
- package/dist/api/platform/api/resources/subscriptions/index.js +17 -0
- package/dist/api/platform/api/types/AccessKey.d.ts +12 -0
- package/dist/api/platform/api/types/AccessKey.js +11 -0
- package/dist/api/platform/api/types/ActivityInstance.d.ts +19 -0
- package/dist/api/platform/api/types/ActivityInstance.js +12 -0
- package/dist/api/platform/api/types/ApplicationDto.d.ts +19 -0
- package/dist/api/platform/api/types/ApplicationDto.js +13 -0
- package/dist/api/platform/api/types/CostEntry.d.ts +20 -0
- package/dist/api/platform/api/types/CostEntry.js +3 -0
- package/dist/api/platform/api/types/CreateShareConstraintDto.d.ts +7 -0
- package/dist/api/platform/api/types/CreateShareConstraintDto.js +3 -0
- package/dist/api/platform/api/types/CreateShareRequestDto.d.ts +13 -0
- package/dist/api/platform/api/types/CreateShareRequestDto.js +12 -0
- package/dist/api/platform/api/types/CreateTimeBasedConstraintDto.d.ts +4 -0
- package/dist/api/platform/api/types/CreateTimeBasedConstraintDto.js +3 -0
- package/dist/api/platform/api/types/DataPoolDto.d.ts +25 -0
- package/dist/api/platform/api/types/DataPoolDto.js +13 -0
- package/dist/api/platform/api/types/DataPoolFileDto.d.ts +16 -0
- package/dist/api/platform/api/types/DataPoolFileDto.js +3 -0
- package/dist/api/platform/api/types/Incident.d.ts +8 -0
- package/dist/api/platform/api/types/Incident.js +3 -0
- package/dist/api/platform/api/types/LogEntry.d.ts +19 -0
- package/dist/api/platform/api/types/LogEntry.js +15 -0
- package/dist/api/platform/api/types/MetricDataPoint.d.ts +9 -0
- package/dist/api/platform/api/types/MetricDataPoint.js +3 -0
- package/dist/api/platform/api/types/OauthScope.d.ts +4 -0
- package/dist/api/platform/api/types/OauthScope.js +7 -0
- package/dist/api/platform/api/types/OrganizationSearchResultDto.d.ts +4 -0
- package/dist/api/platform/api/types/OrganizationSearchResultDto.js +3 -0
- package/dist/api/platform/api/types/OrganizationTenant.d.ts +3 -0
- package/dist/api/platform/api/types/OrganizationTenant.js +3 -0
- package/dist/api/platform/api/types/PageResponseServiceExecutionDto.d.ts +28 -0
- package/dist/api/platform/api/types/PageResponseServiceExecutionDto.js +3 -0
- package/dist/api/platform/api/types/PageResponseServiceJobDto.d.ts +28 -0
- package/dist/api/platform/api/types/PageResponseServiceJobDto.js +3 -0
- package/dist/api/platform/api/types/PricingPlanDto.d.ts +14 -0
- package/dist/api/platform/api/types/PricingPlanDto.js +12 -0
- package/dist/api/platform/api/types/ProductDto.d.ts +36 -0
- package/dist/api/platform/api/types/ProductDto.js +32 -0
- package/dist/api/platform/api/types/QuantumJobCosts.d.ts +2 -0
- package/dist/api/platform/api/types/QuantumJobCosts.js +3 -0
- package/dist/api/platform/api/types/QuantumWorkloadCosts.d.ts +9 -0
- package/dist/api/platform/api/types/QuantumWorkloadCosts.js +3 -0
- package/dist/api/platform/api/types/ServiceConsumerDto.d.ts +24 -0
- package/dist/api/platform/api/types/ServiceConsumerDto.js +17 -0
- package/dist/api/platform/api/types/ServiceExecution.d.ts +4 -0
- package/dist/api/platform/api/types/ServiceExecution.js +3 -0
- package/dist/api/platform/api/types/ServiceExecutionCosts.d.ts +2 -0
- package/dist/api/platform/api/types/ServiceExecutionCosts.js +3 -0
- package/dist/api/platform/api/types/ServiceExecutionDto.d.ts +41 -0
- package/dist/api/platform/api/types/ServiceExecutionDto.js +22 -0
- package/dist/api/platform/api/types/ServiceExecutionLogs.d.ts +2 -0
- package/dist/api/platform/api/types/ServiceExecutionLogs.js +3 -0
- package/dist/api/platform/api/types/ServiceExecutionMetrics.d.ts +20 -0
- package/dist/api/platform/api/types/ServiceExecutionMetrics.js +3 -0
- package/dist/api/platform/api/types/ServiceJobDto.d.ts +42 -0
- package/dist/api/platform/api/types/ServiceJobDto.js +22 -0
- package/dist/api/platform/api/types/ShareConstraintDto.d.ts +13 -0
- package/dist/api/platform/api/types/ShareConstraintDto.js +3 -0
- package/dist/api/platform/api/types/ShareDto.d.ts +22 -0
- package/dist/api/platform/api/types/ShareDto.js +12 -0
- package/dist/api/platform/api/types/SortOrder.d.ts +17 -0
- package/dist/api/platform/api/types/SortOrder.js +12 -0
- package/dist/api/platform/api/types/SubscriptionDto.d.ts +8 -0
- package/dist/api/platform/api/types/SubscriptionDto.js +3 -0
- package/dist/api/platform/api/types/TenantId.d.ts +13 -0
- package/dist/api/platform/api/types/TenantId.js +3 -0
- package/dist/api/platform/api/types/TimeBasedConstraintDto.d.ts +5 -0
- package/dist/api/platform/api/types/TimeBasedConstraintDto.js +3 -0
- package/dist/api/platform/api/types/UpdateResourceShareRoleDto.d.ts +11 -0
- package/dist/api/platform/api/types/UpdateResourceShareRoleDto.js +12 -0
- package/dist/api/platform/api/types/UserTenant.d.ts +3 -0
- package/dist/api/platform/api/types/UserTenant.js +3 -0
- package/dist/api/platform/api/types/VariableInstance.d.ts +9 -0
- package/dist/api/platform/api/types/VariableInstance.js +3 -0
- package/dist/api/platform/api/types/WorkflowInstance.d.ts +21 -0
- package/dist/api/platform/api/types/WorkflowInstance.js +15 -0
- package/dist/api/platform/api/types/WorkflowServiceExecutionDto.d.ts +44 -0
- package/dist/api/platform/api/types/WorkflowServiceExecutionDto.js +22 -0
- package/dist/api/platform/api/types/index.d.ts +39 -0
- package/dist/api/platform/api/types/index.js +55 -0
- package/dist/api/platform/auth/HeaderAuthProvider.d.ts +20 -0
- package/dist/api/platform/auth/HeaderAuthProvider.js +70 -0
- package/dist/api/platform/auth/index.d.ts +1 -0
- package/dist/api/platform/auth/index.js +5 -0
- package/dist/api/platform/core/auth/AuthProvider.d.ts +7 -0
- package/dist/api/platform/core/auth/AuthProvider.js +2 -0
- package/dist/api/platform/core/auth/AuthRequest.d.ts +9 -0
- package/dist/api/platform/core/auth/AuthRequest.js +2 -0
- package/dist/api/platform/core/auth/BasicAuth.d.ts +8 -0
- package/dist/api/platform/core/auth/BasicAuth.js +27 -0
- package/dist/api/platform/core/auth/BearerToken.d.ts +7 -0
- package/dist/api/platform/core/auth/BearerToken.js +16 -0
- package/dist/api/platform/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/api/platform/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/api/platform/core/auth/index.d.ts +5 -0
- package/dist/api/platform/core/auth/index.js +9 -0
- package/dist/api/platform/core/base64.d.ts +2 -0
- package/dist/api/platform/core/base64.js +26 -0
- package/dist/api/platform/core/exports.d.ts +2 -0
- package/dist/api/platform/core/exports.js +18 -0
- package/dist/api/platform/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/api/platform/core/fetcher/APIResponse.js +2 -0
- package/dist/api/platform/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/api/platform/core/fetcher/BinaryResponse.js +17 -0
- package/dist/api/platform/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/api/platform/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/api/platform/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/api/platform/core/fetcher/EndpointSupplier.js +13 -0
- package/dist/api/platform/core/fetcher/Fetcher.d.ts +48 -0
- package/dist/api/platform/core/fetcher/Fetcher.js +305 -0
- package/dist/api/platform/core/fetcher/Headers.d.ts +2 -0
- package/dist/api/platform/core/fetcher/Headers.js +85 -0
- package/dist/api/platform/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/api/platform/core/fetcher/HttpResponsePromise.js +94 -0
- package/dist/api/platform/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/api/platform/core/fetcher/RawResponse.js +44 -0
- package/dist/api/platform/core/fetcher/Supplier.d.ts +4 -0
- package/dist/api/platform/core/fetcher/Supplier.js +13 -0
- package/dist/api/platform/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/api/platform/core/fetcher/createRequestUrl.js +8 -0
- package/dist/api/platform/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getErrorResponseBody.js +33 -0
- package/dist/api/platform/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getFetchFn.js +6 -0
- package/dist/api/platform/core/fetcher/getHeader.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getHeader.js +11 -0
- package/dist/api/platform/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/api/platform/core/fetcher/getRequestBody.js +16 -0
- package/dist/api/platform/core/fetcher/getResponseBody.d.ts +1 -0
- package/dist/api/platform/core/fetcher/getResponseBody.js +58 -0
- package/dist/api/platform/core/fetcher/index.d.ts +11 -0
- package/dist/api/platform/core/fetcher/index.js +17 -0
- package/dist/api/platform/core/fetcher/makeRequest.d.ts +1 -0
- package/dist/api/platform/core/fetcher/makeRequest.js +31 -0
- package/dist/api/platform/core/fetcher/requestWithRetries.d.ts +1 -0
- package/dist/api/platform/core/fetcher/requestWithRetries.js +56 -0
- package/dist/api/platform/core/fetcher/signals.d.ts +5 -0
- package/dist/api/platform/core/fetcher/signals.js +24 -0
- package/dist/api/platform/core/file/exports.d.ts +1 -0
- package/dist/api/platform/core/file/exports.js +2 -0
- package/dist/api/platform/core/file/file.d.ts +10 -0
- package/dist/api/platform/core/file/file.js +202 -0
- package/dist/api/platform/core/file/index.d.ts +2 -0
- package/dist/api/platform/core/file/index.js +18 -0
- package/dist/api/platform/core/file/types.d.ts +66 -0
- package/dist/api/platform/core/file/types.js +2 -0
- package/dist/api/platform/core/form-data-utils/FormDataWrapper.d.ts +15 -0
- package/dist/api/platform/core/form-data-utils/FormDataWrapper.js +143 -0
- package/dist/api/platform/core/form-data-utils/encodeAsFormParameter.d.ts +1 -0
- package/dist/api/platform/core/form-data-utils/encodeAsFormParameter.js +12 -0
- package/dist/api/platform/core/form-data-utils/index.d.ts +2 -0
- package/dist/api/platform/core/form-data-utils/index.js +20 -0
- package/dist/api/platform/core/headers.d.ts +2 -0
- package/dist/api/platform/core/headers.js +31 -0
- package/dist/api/platform/core/index.d.ts +8 -0
- package/dist/api/platform/core/index.js +47 -0
- package/dist/api/platform/core/json.d.ts +15 -0
- package/dist/api/platform/core/json.js +24 -0
- package/dist/api/platform/core/logging/exports.d.ts +18 -0
- package/dist/api/platform/core/logging/exports.js +45 -0
- package/dist/api/platform/core/logging/index.d.ts +1 -0
- package/dist/api/platform/core/logging/index.js +17 -0
- package/dist/api/platform/core/logging/logger.d.ts +126 -0
- package/dist/api/platform/core/logging/logger.js +146 -0
- package/dist/api/platform/core/runtime/index.d.ts +1 -0
- package/dist/api/platform/core/runtime/index.js +5 -0
- package/dist/api/platform/core/runtime/runtime.d.ts +9 -0
- package/dist/api/platform/core/runtime/runtime.js +102 -0
- package/dist/api/platform/core/url/encodePathParam.d.ts +1 -0
- package/dist/api/platform/core/url/encodePathParam.js +21 -0
- package/dist/api/platform/core/url/index.d.ts +3 -0
- package/dist/api/platform/core/url/index.js +9 -0
- package/dist/api/platform/core/url/join.d.ts +1 -0
- package/dist/api/platform/core/url/join.js +68 -0
- package/dist/api/platform/core/url/qs.d.ts +6 -0
- package/dist/api/platform/core/url/qs.js +67 -0
- package/dist/api/platform/environments.d.ts +4 -0
- package/dist/api/platform/environments.js +7 -0
- package/dist/api/platform/errors/HubPlatformError.d.ts +12 -0
- package/dist/api/platform/errors/HubPlatformError.js +35 -0
- package/dist/api/platform/errors/HubPlatformTimeoutError.d.ts +3 -0
- package/dist/api/platform/errors/HubPlatformTimeoutError.js +15 -0
- package/dist/api/platform/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/api/platform/errors/handleNonStatusCodeError.js +65 -0
- package/dist/api/platform/errors/index.d.ts +2 -0
- package/dist/api/platform/errors/index.js +7 -0
- package/dist/api/platform/exports.d.ts +1 -0
- package/dist/api/platform/exports.js +17 -0
- package/dist/api/platform/index.d.ts +6 -0
- package/dist/api/platform/index.js +48 -0
- package/dist/api/service/BaseClient.d.ts +39 -0
- package/dist/api/service/BaseClient.js +65 -0
- package/dist/api/service/Client.d.ts +14 -0
- package/dist/api/service/Client.js +17 -0
- package/dist/api/service/api/index.d.ts +2 -0
- package/dist/api/service/api/index.js +18 -0
- package/dist/api/service/api/resources/index.d.ts +2 -0
- package/dist/api/service/api/resources/index.js +41 -0
- package/dist/api/service/api/resources/serviceApi/client/Client.d.ts +100 -0
- package/dist/api/service/api/resources/serviceApi/client/Client.js +356 -0
- package/dist/api/service/api/resources/serviceApi/client/index.d.ts +1 -0
- package/dist/api/service/api/resources/serviceApi/client/index.js +17 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/CancelExecutionRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/CancelExecutionRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetLogsRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetLogsRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultFileRequest.d.ts +6 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultFileRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetResultRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetStatusRequest.d.ts +10 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/GetStatusRequest.js +3 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/index.d.ts +5 -0
- package/dist/api/service/api/resources/serviceApi/client/requests/index.js +2 -0
- package/dist/api/service/api/resources/serviceApi/index.d.ts +1 -0
- package/dist/api/service/api/resources/serviceApi/index.js +17 -0
- package/dist/api/service/api/types/HalLink.d.ts +18 -0
- package/dist/api/service/api/types/HalLink.js +3 -0
- package/dist/api/service/api/types/LogEntry.d.ts +19 -0
- package/dist/api/service/api/types/LogEntry.js +15 -0
- package/dist/api/service/api/types/RequestBody.d.ts +1 -0
- package/dist/api/service/api/types/RequestBody.js +3 -0
- package/dist/api/service/api/types/ResultResponse.d.ts +15 -0
- package/dist/api/service/api/types/ResultResponse.js +3 -0
- package/dist/api/service/api/types/ServiceExecution.d.ts +38 -0
- package/dist/api/service/api/types/ServiceExecution.js +21 -0
- package/dist/api/service/api/types/index.d.ts +5 -0
- package/dist/api/service/api/types/index.js +21 -0
- package/dist/api/service/auth/BearerAuthProvider.d.ts +20 -0
- package/dist/api/service/auth/BearerAuthProvider.js +69 -0
- package/dist/api/service/auth/index.d.ts +1 -0
- package/dist/api/service/auth/index.js +5 -0
- package/dist/api/service/core/auth/AuthProvider.d.ts +7 -0
- package/dist/api/service/core/auth/AuthProvider.js +2 -0
- package/dist/api/service/core/auth/AuthRequest.d.ts +9 -0
- package/dist/api/service/core/auth/AuthRequest.js +2 -0
- package/dist/api/service/core/auth/BasicAuth.d.ts +8 -0
- package/dist/api/service/core/auth/BasicAuth.js +27 -0
- package/dist/api/service/core/auth/BearerToken.d.ts +7 -0
- package/dist/api/service/core/auth/BearerToken.js +16 -0
- package/dist/api/service/core/auth/NoOpAuthProvider.d.ts +5 -0
- package/dist/api/service/core/auth/NoOpAuthProvider.js +9 -0
- package/dist/api/service/core/auth/index.d.ts +5 -0
- package/dist/api/service/core/auth/index.js +9 -0
- package/dist/api/service/core/base64.d.ts +2 -0
- package/dist/api/service/core/base64.js +26 -0
- package/dist/api/service/core/exports.d.ts +1 -0
- package/dist/api/service/core/exports.js +17 -0
- package/dist/api/service/core/fetcher/APIResponse.d.ts +20 -0
- package/dist/api/service/core/fetcher/APIResponse.js +2 -0
- package/dist/api/service/core/fetcher/BinaryResponse.d.ts +19 -0
- package/dist/api/service/core/fetcher/BinaryResponse.js +17 -0
- package/dist/api/service/core/fetcher/EndpointMetadata.d.ts +13 -0
- package/dist/api/service/core/fetcher/EndpointMetadata.js +2 -0
- package/dist/api/service/core/fetcher/EndpointSupplier.d.ts +12 -0
- package/dist/api/service/core/fetcher/EndpointSupplier.js +13 -0
- package/dist/api/service/core/fetcher/Fetcher.d.ts +48 -0
- package/dist/api/service/core/fetcher/Fetcher.js +305 -0
- package/dist/api/service/core/fetcher/Headers.d.ts +2 -0
- package/dist/api/service/core/fetcher/Headers.js +85 -0
- package/dist/api/service/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/api/service/core/fetcher/HttpResponsePromise.js +94 -0
- package/dist/api/service/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/api/service/core/fetcher/RawResponse.js +44 -0
- package/dist/api/service/core/fetcher/Supplier.d.ts +4 -0
- package/dist/api/service/core/fetcher/Supplier.js +13 -0
- package/dist/api/service/core/fetcher/createRequestUrl.d.ts +1 -0
- package/dist/api/service/core/fetcher/createRequestUrl.js +8 -0
- package/dist/api/service/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/api/service/core/fetcher/getErrorResponseBody.js +33 -0
- package/dist/api/service/core/fetcher/getFetchFn.d.ts +1 -0
- package/dist/api/service/core/fetcher/getFetchFn.js +6 -0
- package/dist/api/service/core/fetcher/getHeader.d.ts +1 -0
- package/dist/api/service/core/fetcher/getHeader.js +11 -0
- package/dist/api/service/core/fetcher/getRequestBody.d.ts +7 -0
- package/dist/api/service/core/fetcher/getRequestBody.js +16 -0
- package/dist/api/service/core/fetcher/getResponseBody.d.ts +1 -0
- package/dist/api/service/core/fetcher/getResponseBody.js +58 -0
- package/dist/api/service/core/fetcher/index.d.ts +11 -0
- package/dist/api/service/core/fetcher/index.js +17 -0
- package/dist/api/service/core/fetcher/makeRequest.d.ts +1 -0
- package/dist/api/service/core/fetcher/makeRequest.js +31 -0
- package/dist/api/service/core/fetcher/requestWithRetries.d.ts +1 -0
- package/dist/api/service/core/fetcher/requestWithRetries.js +56 -0
- package/dist/api/service/core/fetcher/signals.d.ts +5 -0
- package/dist/api/service/core/fetcher/signals.js +24 -0
- package/dist/api/service/core/headers.d.ts +2 -0
- package/dist/api/service/core/headers.js +31 -0
- package/dist/api/service/core/index.d.ts +6 -0
- package/dist/api/service/core/index.js +45 -0
- package/dist/api/service/core/json.d.ts +15 -0
- package/dist/api/service/core/json.js +24 -0
- package/dist/api/service/core/logging/exports.d.ts +18 -0
- package/dist/api/service/core/logging/exports.js +45 -0
- package/dist/api/service/core/logging/index.d.ts +1 -0
- package/dist/api/service/core/logging/index.js +17 -0
- package/dist/api/service/core/logging/logger.d.ts +126 -0
- package/dist/api/service/core/logging/logger.js +146 -0
- package/dist/api/service/core/runtime/index.d.ts +1 -0
- package/dist/api/service/core/runtime/index.js +5 -0
- package/dist/api/service/core/runtime/runtime.d.ts +9 -0
- package/dist/api/service/core/runtime/runtime.js +102 -0
- package/dist/api/service/core/url/encodePathParam.d.ts +1 -0
- package/dist/api/service/core/url/encodePathParam.js +21 -0
- package/dist/api/service/core/url/index.d.ts +3 -0
- package/dist/api/service/core/url/index.js +9 -0
- package/dist/api/service/core/url/join.d.ts +1 -0
- package/dist/api/service/core/url/join.js +68 -0
- package/dist/api/service/core/url/qs.d.ts +6 -0
- package/dist/api/service/core/url/qs.js +67 -0
- package/dist/api/service/environments.d.ts +4 -0
- package/dist/api/service/environments.js +7 -0
- package/dist/api/service/errors/HubServiceError.d.ts +12 -0
- package/dist/api/service/errors/HubServiceError.js +35 -0
- package/dist/api/service/errors/HubServiceTimeoutError.d.ts +3 -0
- package/dist/api/service/errors/HubServiceTimeoutError.js +15 -0
- package/dist/api/service/errors/handleNonStatusCodeError.d.ts +2 -0
- package/dist/api/service/errors/handleNonStatusCodeError.js +65 -0
- package/dist/api/service/errors/index.d.ts +2 -0
- package/dist/api/service/errors/index.js +7 -0
- package/dist/api/service/exports.d.ts +1 -0
- package/dist/api/service/exports.js +17 -0
- package/dist/api/service/index.d.ts +6 -0
- package/dist/api/service/index.js +48 -0
- package/eslint.config.mjs +11 -0
- package/package.json +44 -0
- package/src/api/platform/BaseClient.ts +87 -0
- package/src/api/platform/Client.ts +78 -0
- package/src/api/platform/api/errors/BadRequestError.ts +21 -0
- package/src/api/platform/api/errors/ForbiddenError.ts +21 -0
- package/src/api/platform/api/errors/InternalServerError.ts +21 -0
- package/src/api/platform/api/errors/NotFoundError.ts +21 -0
- package/src/api/platform/api/errors/UnauthorizedError.ts +21 -0
- package/src/api/platform/api/errors/index.ts +5 -0
- package/src/api/platform/api/index.ts +3 -0
- package/src/api/platform/api/resources/applications/client/Client.ts +514 -0
- package/src/api/platform/api/resources/applications/client/index.ts +1 -0
- package/src/api/platform/api/resources/applications/client/requests/CreateApplicationRequest.ts +9 -0
- package/src/api/platform/api/resources/applications/client/requests/DeleteApplicationRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/GetApplicationAccessKeysRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/GetApplicationRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/GetApplicationSubscriptionsRequest.ts +11 -0
- package/src/api/platform/api/resources/applications/client/requests/index.ts +5 -0
- package/src/api/platform/api/resources/applications/index.ts +1 -0
- package/src/api/platform/api/resources/dataPoolShares/client/Client.ts +662 -0
- package/src/api/platform/api/resources/dataPoolShares/client/index.ts +1 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/AddConstraint1Request.ts +17 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/DeleteConstraint1Request.ts +15 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/DeleteShare1Request.ts +13 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/GetSharesForDataPoolRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/ShareDataPoolRequest.ts +15 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/UpdateRole1Request.ts +17 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/UpdateTimeBasedConstraint1Request.ts +22 -0
- package/src/api/platform/api/resources/dataPoolShares/client/requests/index.ts +7 -0
- package/src/api/platform/api/resources/dataPoolShares/index.ts +2 -0
- package/src/api/platform/api/resources/dataPoolShares/types/AddConstraint1Response.ts +5 -0
- package/src/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1RequestBody.ts +5 -0
- package/src/api/platform/api/resources/dataPoolShares/types/UpdateTimeBasedConstraint1Response.ts +5 -0
- package/src/api/platform/api/resources/dataPoolShares/types/index.ts +3 -0
- package/src/api/platform/api/resources/dataPools/client/Client.ts +767 -0
- package/src/api/platform/api/resources/dataPools/client/index.ts +1 -0
- package/src/api/platform/api/resources/dataPools/client/requests/AddDataPoolFileRequest.ts +16 -0
- package/src/api/platform/api/resources/dataPools/client/requests/CreateDataPoolRequest.ts +16 -0
- package/src/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolFileRequest.ts +13 -0
- package/src/api/platform/api/resources/dataPools/client/requests/DeleteDataPoolRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPools/client/requests/GetDataPoolFileRequest.ts +13 -0
- package/src/api/platform/api/resources/dataPools/client/requests/GetDataPoolFilesRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPools/client/requests/GetDataPoolRequest.ts +11 -0
- package/src/api/platform/api/resources/dataPools/client/requests/UpdateDataPoolRequest.ts +19 -0
- package/src/api/platform/api/resources/dataPools/client/requests/index.ts +8 -0
- package/src/api/platform/api/resources/dataPools/index.ts +1 -0
- package/src/api/platform/api/resources/index.ts +23 -0
- package/src/api/platform/api/resources/organizations/client/Client.ts +110 -0
- package/src/api/platform/api/resources/organizations/client/index.ts +1 -0
- package/src/api/platform/api/resources/organizations/client/requests/GetServiceExecutions1Request.ts +11 -0
- package/src/api/platform/api/resources/organizations/client/requests/index.ts +1 -0
- package/src/api/platform/api/resources/organizations/index.ts +1 -0
- package/src/api/platform/api/resources/quantumJobs/client/Client.ts +104 -0
- package/src/api/platform/api/resources/quantumJobs/client/index.ts +1 -0
- package/src/api/platform/api/resources/quantumJobs/client/requests/GetQuantumJobCostsRequest.ts +11 -0
- package/src/api/platform/api/resources/quantumJobs/client/requests/index.ts +1 -0
- package/src/api/platform/api/resources/quantumJobs/index.ts +1 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/Client.ts +104 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/index.ts +1 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/requests/GetQuantumWorkloadCostsRequest.ts +11 -0
- package/src/api/platform/api/resources/quantumWorkloads/client/requests/index.ts +1 -0
- package/src/api/platform/api/resources/quantumWorkloads/index.ts +1 -0
- package/src/api/platform/api/resources/serviceExecutions/client/Client.ts +788 -0
- package/src/api/platform/api/resources/serviceExecutions/client/index.ts +1 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/CancelServiceExecutionRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionCostsRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionLogsRequest.ts +15 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionMetricsRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultFileRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionResultRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/GetServiceExecutionsRequest.ts +26 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/HeadServiceExecutionRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceExecutions/client/requests/index.ts +9 -0
- package/src/api/platform/api/resources/serviceExecutions/index.ts +2 -0
- package/src/api/platform/api/resources/serviceExecutions/types/GetServiceExecutionResponse.ts +5 -0
- package/src/api/platform/api/resources/serviceExecutions/types/index.ts +1 -0
- package/src/api/platform/api/resources/serviceJobs/client/Client.ts +367 -0
- package/src/api/platform/api/resources/serviceJobs/client/index.ts +1 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/CreateServiceJobRequest.ts +16 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/GetServiceJobsRequest.ts +24 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/RerunServiceJobRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceJobs/client/requests/index.ts +4 -0
- package/src/api/platform/api/resources/serviceJobs/index.ts +1 -0
- package/src/api/platform/api/resources/serviceShares/client/Client.ts +662 -0
- package/src/api/platform/api/resources/serviceShares/client/index.ts +1 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/AddConstraintRequest.ts +17 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/DeleteConstraintRequest.ts +15 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/DeleteShareRequest.ts +13 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/GetSharesForServiceRequest.ts +11 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/ShareServiceRequest.ts +15 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/UpdateRoleRequest.ts +17 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/UpdateTimeBasedConstraintRequest.ts +22 -0
- package/src/api/platform/api/resources/serviceShares/client/requests/index.ts +7 -0
- package/src/api/platform/api/resources/serviceShares/index.ts +2 -0
- package/src/api/platform/api/resources/serviceShares/types/AddConstraintResponse.ts +5 -0
- package/src/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintRequestBody.ts +5 -0
- package/src/api/platform/api/resources/serviceShares/types/UpdateTimeBasedConstraintResponse.ts +5 -0
- package/src/api/platform/api/resources/serviceShares/types/index.ts +3 -0
- package/src/api/platform/api/resources/subscriptions/client/Client.ts +355 -0
- package/src/api/platform/api/resources/subscriptions/client/index.ts +1 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/CreateSubscriptionRequest.ts +10 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/DeleteSubscriptionRequest.ts +11 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionRequest.ts +11 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/GetSubscriptionServiceExecutionsRequest.ts +11 -0
- package/src/api/platform/api/resources/subscriptions/client/requests/index.ts +4 -0
- package/src/api/platform/api/resources/subscriptions/index.ts +1 -0
- package/src/api/platform/api/types/AccessKey.ts +15 -0
- package/src/api/platform/api/types/ActivityInstance.ts +23 -0
- package/src/api/platform/api/types/ApplicationDto.ts +22 -0
- package/src/api/platform/api/types/CostEntry.ts +22 -0
- package/src/api/platform/api/types/CreateShareConstraintDto.ts +11 -0
- package/src/api/platform/api/types/CreateShareRequestDto.ts +17 -0
- package/src/api/platform/api/types/CreateTimeBasedConstraintDto.ts +6 -0
- package/src/api/platform/api/types/DataPoolDto.ts +28 -0
- package/src/api/platform/api/types/DataPoolFileDto.ts +18 -0
- package/src/api/platform/api/types/Incident.ts +10 -0
- package/src/api/platform/api/types/LogEntry.ts +22 -0
- package/src/api/platform/api/types/MetricDataPoint.ts +11 -0
- package/src/api/platform/api/types/OauthScope.ts +6 -0
- package/src/api/platform/api/types/OrganizationSearchResultDto.ts +6 -0
- package/src/api/platform/api/types/OrganizationTenant.ts +5 -0
- package/src/api/platform/api/types/PageResponseServiceExecutionDto.ts +31 -0
- package/src/api/platform/api/types/PageResponseServiceJobDto.ts +31 -0
- package/src/api/platform/api/types/PricingPlanDto.ts +18 -0
- package/src/api/platform/api/types/ProductDto.ts +39 -0
- package/src/api/platform/api/types/QuantumJobCosts.ts +5 -0
- package/src/api/platform/api/types/QuantumWorkloadCosts.ts +11 -0
- package/src/api/platform/api/types/ServiceConsumerDto.ts +27 -0
- package/src/api/platform/api/types/ServiceExecution.ts +6 -0
- package/src/api/platform/api/types/ServiceExecutionCosts.ts +5 -0
- package/src/api/platform/api/types/ServiceExecutionDto.ts +44 -0
- package/src/api/platform/api/types/ServiceExecutionLogs.ts +5 -0
- package/src/api/platform/api/types/ServiceExecutionMetrics.ts +23 -0
- package/src/api/platform/api/types/ServiceJobDto.ts +45 -0
- package/src/api/platform/api/types/ShareConstraintDto.ts +18 -0
- package/src/api/platform/api/types/ShareDto.ts +27 -0
- package/src/api/platform/api/types/SortOrder.ts +20 -0
- package/src/api/platform/api/types/SubscriptionDto.ts +11 -0
- package/src/api/platform/api/types/TenantId.ts +19 -0
- package/src/api/platform/api/types/TimeBasedConstraintDto.ts +7 -0
- package/src/api/platform/api/types/UpdateResourceShareRoleDto.ts +14 -0
- package/src/api/platform/api/types/UserTenant.ts +5 -0
- package/src/api/platform/api/types/VariableInstance.ts +11 -0
- package/src/api/platform/api/types/WorkflowInstance.ts +25 -0
- package/src/api/platform/api/types/WorkflowServiceExecutionDto.ts +48 -0
- package/src/api/platform/api/types/index.ts +39 -0
- package/src/api/platform/auth/HeaderAuthProvider.ts +48 -0
- package/src/api/platform/auth/index.ts +1 -0
- package/src/api/platform/core/auth/AuthProvider.ts +6 -0
- package/src/api/platform/core/auth/AuthRequest.ts +9 -0
- package/src/api/platform/core/auth/BasicAuth.ts +32 -0
- package/src/api/platform/core/auth/BearerToken.ts +20 -0
- package/src/api/platform/core/auth/NoOpAuthProvider.ts +8 -0
- package/src/api/platform/core/auth/index.ts +5 -0
- package/src/api/platform/core/base64.ts +27 -0
- package/src/api/platform/core/exports.ts +2 -0
- package/src/api/platform/core/fetcher/APIResponse.ts +23 -0
- package/src/api/platform/core/fetcher/BinaryResponse.ts +34 -0
- package/src/api/platform/core/fetcher/EndpointMetadata.ts +13 -0
- package/src/api/platform/core/fetcher/EndpointSupplier.ts +14 -0
- package/src/api/platform/core/fetcher/Fetcher.ts +397 -0
- package/src/api/platform/core/fetcher/Headers.ts +93 -0
- package/src/api/platform/core/fetcher/HttpResponsePromise.ts +116 -0
- package/src/api/platform/core/fetcher/RawResponse.ts +61 -0
- package/src/api/platform/core/fetcher/Supplier.ts +11 -0
- package/src/api/platform/core/fetcher/createRequestUrl.ts +6 -0
- package/src/api/platform/core/fetcher/getErrorResponseBody.ts +33 -0
- package/src/api/platform/core/fetcher/getFetchFn.ts +3 -0
- package/src/api/platform/core/fetcher/getHeader.ts +8 -0
- package/src/api/platform/core/fetcher/getRequestBody.ts +20 -0
- package/src/api/platform/core/fetcher/getResponseBody.ts +58 -0
- package/src/api/platform/core/fetcher/index.ts +11 -0
- package/src/api/platform/core/fetcher/makeRequest.ts +42 -0
- package/src/api/platform/core/fetcher/requestWithRetries.ts +64 -0
- package/src/api/platform/core/fetcher/signals.ts +26 -0
- package/src/api/platform/core/file/exports.ts +1 -0
- package/src/api/platform/core/file/file.ts +217 -0
- package/src/api/platform/core/file/index.ts +2 -0
- package/src/api/platform/core/file/types.ts +81 -0
- package/src/api/platform/core/form-data-utils/FormDataWrapper.ts +140 -0
- package/src/api/platform/core/form-data-utils/encodeAsFormParameter.ts +12 -0
- package/src/api/platform/core/form-data-utils/index.ts +2 -0
- package/src/api/platform/core/headers.ts +33 -0
- package/src/api/platform/core/index.ts +8 -0
- package/src/api/platform/core/json.ts +27 -0
- package/src/api/platform/core/logging/exports.ts +19 -0
- package/src/api/platform/core/logging/index.ts +1 -0
- package/src/api/platform/core/logging/logger.ts +203 -0
- package/src/api/platform/core/runtime/index.ts +1 -0
- package/src/api/platform/core/runtime/runtime.ts +134 -0
- package/src/api/platform/core/url/encodePathParam.ts +18 -0
- package/src/api/platform/core/url/index.ts +3 -0
- package/src/api/platform/core/url/join.ts +79 -0
- package/src/api/platform/core/url/qs.ts +74 -0
- package/src/api/platform/environments.ts +7 -0
- package/src/api/platform/errors/HubPlatformError.ts +58 -0
- package/src/api/platform/errors/HubPlatformTimeoutError.ts +13 -0
- package/src/api/platform/errors/handleNonStatusCodeError.ts +37 -0
- package/src/api/platform/errors/index.ts +2 -0
- package/src/api/platform/exports.ts +1 -0
- package/src/api/platform/index.ts +6 -0
- package/src/api/service/BaseClient.ts +82 -0
- package/src/api/service/Client.ts +24 -0
- package/src/api/service/api/index.ts +2 -0
- package/src/api/service/api/resources/index.ts +2 -0
- package/src/api/service/api/resources/serviceApi/client/Client.ts +443 -0
- package/src/api/service/api/resources/serviceApi/client/index.ts +1 -0
- package/src/api/service/api/resources/serviceApi/client/requests/CancelExecutionRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetLogsRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetResultFileRequest.ts +8 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetResultRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/GetStatusRequest.ts +12 -0
- package/src/api/service/api/resources/serviceApi/client/requests/index.ts +5 -0
- package/src/api/service/api/resources/serviceApi/index.ts +1 -0
- package/src/api/service/api/types/HalLink.ts +20 -0
- package/src/api/service/api/types/LogEntry.ts +22 -0
- package/src/api/service/api/types/RequestBody.ts +3 -0
- package/src/api/service/api/types/ResultResponse.ts +20 -0
- package/src/api/service/api/types/ServiceExecution.ts +41 -0
- package/src/api/service/api/types/index.ts +5 -0
- package/src/api/service/auth/BearerAuthProvider.ts +47 -0
- package/src/api/service/auth/index.ts +1 -0
- package/src/api/service/core/auth/AuthProvider.ts +6 -0
- package/src/api/service/core/auth/AuthRequest.ts +9 -0
- package/src/api/service/core/auth/BasicAuth.ts +32 -0
- package/src/api/service/core/auth/BearerToken.ts +20 -0
- package/src/api/service/core/auth/NoOpAuthProvider.ts +8 -0
- package/src/api/service/core/auth/index.ts +5 -0
- package/src/api/service/core/base64.ts +27 -0
- package/src/api/service/core/exports.ts +1 -0
- package/src/api/service/core/fetcher/APIResponse.ts +23 -0
- package/src/api/service/core/fetcher/BinaryResponse.ts +34 -0
- package/src/api/service/core/fetcher/EndpointMetadata.ts +13 -0
- package/src/api/service/core/fetcher/EndpointSupplier.ts +14 -0
- package/src/api/service/core/fetcher/Fetcher.ts +397 -0
- package/src/api/service/core/fetcher/Headers.ts +93 -0
- package/src/api/service/core/fetcher/HttpResponsePromise.ts +116 -0
- package/src/api/service/core/fetcher/RawResponse.ts +61 -0
- package/src/api/service/core/fetcher/Supplier.ts +11 -0
- package/src/api/service/core/fetcher/createRequestUrl.ts +6 -0
- package/src/api/service/core/fetcher/getErrorResponseBody.ts +33 -0
- package/src/api/service/core/fetcher/getFetchFn.ts +3 -0
- package/src/api/service/core/fetcher/getHeader.ts +8 -0
- package/src/api/service/core/fetcher/getRequestBody.ts +20 -0
- package/src/api/service/core/fetcher/getResponseBody.ts +58 -0
- package/src/api/service/core/fetcher/index.ts +11 -0
- package/src/api/service/core/fetcher/makeRequest.ts +42 -0
- package/src/api/service/core/fetcher/requestWithRetries.ts +64 -0
- package/src/api/service/core/fetcher/signals.ts +26 -0
- package/src/api/service/core/headers.ts +33 -0
- package/src/api/service/core/index.ts +6 -0
- package/src/api/service/core/json.ts +27 -0
- package/src/api/service/core/logging/exports.ts +19 -0
- package/src/api/service/core/logging/index.ts +1 -0
- package/src/api/service/core/logging/logger.ts +203 -0
- package/src/api/service/core/runtime/index.ts +1 -0
- package/src/api/service/core/runtime/runtime.ts +134 -0
- package/src/api/service/core/url/encodePathParam.ts +18 -0
- package/src/api/service/core/url/index.ts +3 -0
- package/src/api/service/core/url/join.ts +79 -0
- package/src/api/service/core/url/qs.ts +74 -0
- package/src/api/service/environments.ts +7 -0
- package/src/api/service/errors/HubServiceError.ts +58 -0
- package/src/api/service/errors/HubServiceTimeoutError.ts +13 -0
- package/src/api/service/errors/handleNonStatusCodeError.ts +37 -0
- package/src/api/service/errors/index.ts +2 -0
- package/src/api/service/exports.ts +1 -0
- package/src/api/service/index.ts +6 -0
- package/src/client.test.ts +29 -0
- package/tsconfig.json +18 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type * as HubPlatform from "../../../../index.js";
|
|
2
|
+
/**
|
|
3
|
+
* @example
|
|
4
|
+
* {
|
|
5
|
+
* id: "id",
|
|
6
|
+
* shareId: "shareId",
|
|
7
|
+
* constraintId: "constraintId",
|
|
8
|
+
* body: {
|
|
9
|
+
* type: "TIME_BASED",
|
|
10
|
+
* type: "TIME_BASED"
|
|
11
|
+
* }
|
|
12
|
+
* }
|
|
13
|
+
*/
|
|
14
|
+
export interface UpdateTimeBasedConstraintRequest {
|
|
15
|
+
id: string;
|
|
16
|
+
shareId: string;
|
|
17
|
+
constraintId: string;
|
|
18
|
+
body: HubPlatform.UpdateTimeBasedConstraintRequestBody;
|
|
19
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export type { AddConstraintRequest } from "./AddConstraintRequest.js";
|
|
2
|
+
export type { DeleteConstraintRequest } from "./DeleteConstraintRequest.js";
|
|
3
|
+
export type { DeleteShareRequest } from "./DeleteShareRequest.js";
|
|
4
|
+
export type { GetSharesForServiceRequest } from "./GetSharesForServiceRequest.js";
|
|
5
|
+
export type { ShareServiceRequest } from "./ShareServiceRequest.js";
|
|
6
|
+
export type { UpdateRoleRequest } from "./UpdateRoleRequest.js";
|
|
7
|
+
export type { UpdateTimeBasedConstraintRequest } from "./UpdateTimeBasedConstraintRequest.js";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./client/index.js"), exports);
|
|
18
|
+
__exportStar(require("./types/index.js"), exports);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./AddConstraintResponse.js"), exports);
|
|
18
|
+
__exportStar(require("./UpdateTimeBasedConstraintRequestBody.js"), exports);
|
|
19
|
+
__exportStar(require("./UpdateTimeBasedConstraintResponse.js"), exports);
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import type { BaseClientOptions, BaseRequestOptions } from "../../../../BaseClient.js";
|
|
2
|
+
import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js";
|
|
3
|
+
import * as core from "../../../../core/index.js";
|
|
4
|
+
import * as HubPlatform from "../../../index.js";
|
|
5
|
+
export declare namespace SubscriptionsClient {
|
|
6
|
+
type Options = BaseClientOptions;
|
|
7
|
+
interface RequestOptions extends BaseRequestOptions {
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Manage subscriptions that allow applications to access a services provided by the platform.
|
|
12
|
+
*/
|
|
13
|
+
export declare class SubscriptionsClient {
|
|
14
|
+
protected readonly _options: NormalizedClientOptionsWithAuth<SubscriptionsClient.Options>;
|
|
15
|
+
constructor(options: SubscriptionsClient.Options);
|
|
16
|
+
/**
|
|
17
|
+
* Create a subscription to an internally or publicly published service.
|
|
18
|
+
*
|
|
19
|
+
* @param {HubPlatform.CreateSubscriptionRequest} request
|
|
20
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
21
|
+
*
|
|
22
|
+
* @throws {@link HubPlatform.BadRequestError}
|
|
23
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
24
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
25
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
26
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* await client.subscriptions.createSubscription()
|
|
30
|
+
*/
|
|
31
|
+
createSubscription(request?: HubPlatform.CreateSubscriptionRequest, requestOptions?: SubscriptionsClient.RequestOptions): core.HttpResponsePromise<HubPlatform.SubscriptionDto>;
|
|
32
|
+
private __createSubscription;
|
|
33
|
+
/**
|
|
34
|
+
* Get a specific subscription (identified by its ID).
|
|
35
|
+
*
|
|
36
|
+
* @param {HubPlatform.GetSubscriptionRequest} request
|
|
37
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
40
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
41
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
42
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
43
|
+
*
|
|
44
|
+
* @example
|
|
45
|
+
* await client.subscriptions.getSubscription({
|
|
46
|
+
* id: "id"
|
|
47
|
+
* })
|
|
48
|
+
*/
|
|
49
|
+
getSubscription(request: HubPlatform.GetSubscriptionRequest, requestOptions?: SubscriptionsClient.RequestOptions): core.HttpResponsePromise<HubPlatform.SubscriptionDto>;
|
|
50
|
+
private __getSubscription;
|
|
51
|
+
/**
|
|
52
|
+
* Remove a specific subscription. This will revoke access to the subscribed service.
|
|
53
|
+
*
|
|
54
|
+
* @param {HubPlatform.DeleteSubscriptionRequest} request
|
|
55
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
58
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
59
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
60
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
61
|
+
*
|
|
62
|
+
* @example
|
|
63
|
+
* await client.subscriptions.deleteSubscription({
|
|
64
|
+
* id: "id"
|
|
65
|
+
* })
|
|
66
|
+
*/
|
|
67
|
+
deleteSubscription(request: HubPlatform.DeleteSubscriptionRequest, requestOptions?: SubscriptionsClient.RequestOptions): core.HttpResponsePromise<void>;
|
|
68
|
+
private __deleteSubscription;
|
|
69
|
+
/**
|
|
70
|
+
* Get a list of all service executions related to a specific subscription.
|
|
71
|
+
*
|
|
72
|
+
* @param {HubPlatform.GetSubscriptionServiceExecutionsRequest} request
|
|
73
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
76
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
77
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
78
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
* await client.subscriptions.getSubscriptionServiceExecutions({
|
|
82
|
+
* id: "id"
|
|
83
|
+
* })
|
|
84
|
+
*/
|
|
85
|
+
getSubscriptionServiceExecutions(request: HubPlatform.GetSubscriptionServiceExecutionsRequest, requestOptions?: SubscriptionsClient.RequestOptions): core.HttpResponsePromise<HubPlatform.ServiceExecutionDto[]>;
|
|
86
|
+
private __getSubscriptionServiceExecutions;
|
|
87
|
+
}
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
20
|
+
var ownKeys = function(o) {
|
|
21
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
22
|
+
var ar = [];
|
|
23
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
24
|
+
return ar;
|
|
25
|
+
};
|
|
26
|
+
return ownKeys(o);
|
|
27
|
+
};
|
|
28
|
+
return function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
})();
|
|
36
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
+
exports.SubscriptionsClient = void 0;
|
|
38
|
+
const BaseClient_js_1 = require("../../../../BaseClient.js");
|
|
39
|
+
const headers_js_1 = require("../../../../core/headers.js");
|
|
40
|
+
const core = __importStar(require("../../../../core/index.js"));
|
|
41
|
+
const environments = __importStar(require("../../../../environments.js"));
|
|
42
|
+
const handleNonStatusCodeError_js_1 = require("../../../../errors/handleNonStatusCodeError.js");
|
|
43
|
+
const errors = __importStar(require("../../../../errors/index.js"));
|
|
44
|
+
const HubPlatform = __importStar(require("../../../index.js"));
|
|
45
|
+
/**
|
|
46
|
+
* Manage subscriptions that allow applications to access a services provided by the platform.
|
|
47
|
+
*/
|
|
48
|
+
class SubscriptionsClient {
|
|
49
|
+
_options;
|
|
50
|
+
constructor(options) {
|
|
51
|
+
this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Create a subscription to an internally or publicly published service.
|
|
55
|
+
*
|
|
56
|
+
* @param {HubPlatform.CreateSubscriptionRequest} request
|
|
57
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link HubPlatform.BadRequestError}
|
|
60
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
61
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
62
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
63
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
64
|
+
*
|
|
65
|
+
* @example
|
|
66
|
+
* await client.subscriptions.createSubscription()
|
|
67
|
+
*/
|
|
68
|
+
createSubscription(request = {}, requestOptions) {
|
|
69
|
+
return core.HttpResponsePromise.fromPromise(this.__createSubscription(request, requestOptions));
|
|
70
|
+
}
|
|
71
|
+
async __createSubscription(request = {}, requestOptions) {
|
|
72
|
+
const _authRequest = await this._options.authProvider.getAuthRequest();
|
|
73
|
+
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, this._options?.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({
|
|
74
|
+
"X-OrganizationId": requestOptions?.organizationId ?? this._options?.organizationId,
|
|
75
|
+
}), requestOptions?.headers);
|
|
76
|
+
const _response = await core.fetcher({
|
|
77
|
+
url: core.url.join((await core.Supplier.get(this._options.baseUrl)) ??
|
|
78
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
79
|
+
environments.HubPlatformEnvironment.Default, "subscriptions"),
|
|
80
|
+
method: "POST",
|
|
81
|
+
headers: _headers,
|
|
82
|
+
contentType: "application/json",
|
|
83
|
+
queryParameters: requestOptions?.queryParams,
|
|
84
|
+
requestType: "json",
|
|
85
|
+
body: request,
|
|
86
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
87
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
88
|
+
withCredentials: true,
|
|
89
|
+
abortSignal: requestOptions?.abortSignal,
|
|
90
|
+
fetchFn: this._options?.fetch,
|
|
91
|
+
logging: this._options.logging,
|
|
92
|
+
});
|
|
93
|
+
if (_response.ok) {
|
|
94
|
+
return { data: _response.body, rawResponse: _response.rawResponse };
|
|
95
|
+
}
|
|
96
|
+
if (_response.error.reason === "status-code") {
|
|
97
|
+
switch (_response.error.statusCode) {
|
|
98
|
+
case 400:
|
|
99
|
+
throw new HubPlatform.BadRequestError(_response.error.body, _response.rawResponse);
|
|
100
|
+
case 401:
|
|
101
|
+
throw new HubPlatform.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
102
|
+
case 403:
|
|
103
|
+
throw new HubPlatform.ForbiddenError(_response.error.body, _response.rawResponse);
|
|
104
|
+
case 404:
|
|
105
|
+
throw new HubPlatform.NotFoundError(_response.error.body, _response.rawResponse);
|
|
106
|
+
case 500:
|
|
107
|
+
throw new HubPlatform.InternalServerError(_response.error.body, _response.rawResponse);
|
|
108
|
+
default:
|
|
109
|
+
throw new errors.HubPlatformError({
|
|
110
|
+
statusCode: _response.error.statusCode,
|
|
111
|
+
body: _response.error.body,
|
|
112
|
+
rawResponse: _response.rawResponse,
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "POST", "/subscriptions");
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* Get a specific subscription (identified by its ID).
|
|
120
|
+
*
|
|
121
|
+
* @param {HubPlatform.GetSubscriptionRequest} request
|
|
122
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
125
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
126
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
127
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
128
|
+
*
|
|
129
|
+
* @example
|
|
130
|
+
* await client.subscriptions.getSubscription({
|
|
131
|
+
* id: "id"
|
|
132
|
+
* })
|
|
133
|
+
*/
|
|
134
|
+
getSubscription(request, requestOptions) {
|
|
135
|
+
return core.HttpResponsePromise.fromPromise(this.__getSubscription(request, requestOptions));
|
|
136
|
+
}
|
|
137
|
+
async __getSubscription(request, requestOptions) {
|
|
138
|
+
const { id } = request;
|
|
139
|
+
const _authRequest = await this._options.authProvider.getAuthRequest();
|
|
140
|
+
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, this._options?.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({
|
|
141
|
+
"X-OrganizationId": requestOptions?.organizationId ?? this._options?.organizationId,
|
|
142
|
+
}), requestOptions?.headers);
|
|
143
|
+
const _response = await core.fetcher({
|
|
144
|
+
url: core.url.join((await core.Supplier.get(this._options.baseUrl)) ??
|
|
145
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
146
|
+
environments.HubPlatformEnvironment.Default, `subscriptions/${core.url.encodePathParam(id)}`),
|
|
147
|
+
method: "GET",
|
|
148
|
+
headers: _headers,
|
|
149
|
+
queryParameters: requestOptions?.queryParams,
|
|
150
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
151
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
152
|
+
withCredentials: true,
|
|
153
|
+
abortSignal: requestOptions?.abortSignal,
|
|
154
|
+
fetchFn: this._options?.fetch,
|
|
155
|
+
logging: this._options.logging,
|
|
156
|
+
});
|
|
157
|
+
if (_response.ok) {
|
|
158
|
+
return { data: _response.body, rawResponse: _response.rawResponse };
|
|
159
|
+
}
|
|
160
|
+
if (_response.error.reason === "status-code") {
|
|
161
|
+
switch (_response.error.statusCode) {
|
|
162
|
+
case 401:
|
|
163
|
+
throw new HubPlatform.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
164
|
+
case 403:
|
|
165
|
+
throw new HubPlatform.ForbiddenError(_response.error.body, _response.rawResponse);
|
|
166
|
+
case 404:
|
|
167
|
+
throw new HubPlatform.NotFoundError(_response.error.body, _response.rawResponse);
|
|
168
|
+
case 500:
|
|
169
|
+
throw new HubPlatform.InternalServerError(_response.error.body, _response.rawResponse);
|
|
170
|
+
default:
|
|
171
|
+
throw new errors.HubPlatformError({
|
|
172
|
+
statusCode: _response.error.statusCode,
|
|
173
|
+
body: _response.error.body,
|
|
174
|
+
rawResponse: _response.rawResponse,
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/subscriptions/{id}");
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* Remove a specific subscription. This will revoke access to the subscribed service.
|
|
182
|
+
*
|
|
183
|
+
* @param {HubPlatform.DeleteSubscriptionRequest} request
|
|
184
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
185
|
+
*
|
|
186
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
187
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
188
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
189
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
190
|
+
*
|
|
191
|
+
* @example
|
|
192
|
+
* await client.subscriptions.deleteSubscription({
|
|
193
|
+
* id: "id"
|
|
194
|
+
* })
|
|
195
|
+
*/
|
|
196
|
+
deleteSubscription(request, requestOptions) {
|
|
197
|
+
return core.HttpResponsePromise.fromPromise(this.__deleteSubscription(request, requestOptions));
|
|
198
|
+
}
|
|
199
|
+
async __deleteSubscription(request, requestOptions) {
|
|
200
|
+
const { id } = request;
|
|
201
|
+
const _authRequest = await this._options.authProvider.getAuthRequest();
|
|
202
|
+
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, this._options?.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({
|
|
203
|
+
"X-OrganizationId": requestOptions?.organizationId ?? this._options?.organizationId,
|
|
204
|
+
}), requestOptions?.headers);
|
|
205
|
+
const _response = await core.fetcher({
|
|
206
|
+
url: core.url.join((await core.Supplier.get(this._options.baseUrl)) ??
|
|
207
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
208
|
+
environments.HubPlatformEnvironment.Default, `subscriptions/${core.url.encodePathParam(id)}`),
|
|
209
|
+
method: "DELETE",
|
|
210
|
+
headers: _headers,
|
|
211
|
+
queryParameters: requestOptions?.queryParams,
|
|
212
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
213
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
214
|
+
withCredentials: true,
|
|
215
|
+
abortSignal: requestOptions?.abortSignal,
|
|
216
|
+
fetchFn: this._options?.fetch,
|
|
217
|
+
logging: this._options.logging,
|
|
218
|
+
});
|
|
219
|
+
if (_response.ok) {
|
|
220
|
+
return { data: undefined, rawResponse: _response.rawResponse };
|
|
221
|
+
}
|
|
222
|
+
if (_response.error.reason === "status-code") {
|
|
223
|
+
switch (_response.error.statusCode) {
|
|
224
|
+
case 401:
|
|
225
|
+
throw new HubPlatform.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
226
|
+
case 403:
|
|
227
|
+
throw new HubPlatform.ForbiddenError(_response.error.body, _response.rawResponse);
|
|
228
|
+
case 404:
|
|
229
|
+
throw new HubPlatform.NotFoundError(_response.error.body, _response.rawResponse);
|
|
230
|
+
case 500:
|
|
231
|
+
throw new HubPlatform.InternalServerError(_response.error.body, _response.rawResponse);
|
|
232
|
+
default:
|
|
233
|
+
throw new errors.HubPlatformError({
|
|
234
|
+
statusCode: _response.error.statusCode,
|
|
235
|
+
body: _response.error.body,
|
|
236
|
+
rawResponse: _response.rawResponse,
|
|
237
|
+
});
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "DELETE", "/subscriptions/{id}");
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* Get a list of all service executions related to a specific subscription.
|
|
244
|
+
*
|
|
245
|
+
* @param {HubPlatform.GetSubscriptionServiceExecutionsRequest} request
|
|
246
|
+
* @param {SubscriptionsClient.RequestOptions} requestOptions - Request-specific configuration.
|
|
247
|
+
*
|
|
248
|
+
* @throws {@link HubPlatform.UnauthorizedError}
|
|
249
|
+
* @throws {@link HubPlatform.ForbiddenError}
|
|
250
|
+
* @throws {@link HubPlatform.NotFoundError}
|
|
251
|
+
* @throws {@link HubPlatform.InternalServerError}
|
|
252
|
+
*
|
|
253
|
+
* @example
|
|
254
|
+
* await client.subscriptions.getSubscriptionServiceExecutions({
|
|
255
|
+
* id: "id"
|
|
256
|
+
* })
|
|
257
|
+
*/
|
|
258
|
+
getSubscriptionServiceExecutions(request, requestOptions) {
|
|
259
|
+
return core.HttpResponsePromise.fromPromise(this.__getSubscriptionServiceExecutions(request, requestOptions));
|
|
260
|
+
}
|
|
261
|
+
async __getSubscriptionServiceExecutions(request, requestOptions) {
|
|
262
|
+
const { id } = request;
|
|
263
|
+
const _authRequest = await this._options.authProvider.getAuthRequest();
|
|
264
|
+
const _headers = (0, headers_js_1.mergeHeaders)(_authRequest.headers, this._options?.headers, (0, headers_js_1.mergeOnlyDefinedHeaders)({
|
|
265
|
+
"X-OrganizationId": requestOptions?.organizationId ?? this._options?.organizationId,
|
|
266
|
+
}), requestOptions?.headers);
|
|
267
|
+
const _response = await core.fetcher({
|
|
268
|
+
url: core.url.join((await core.Supplier.get(this._options.baseUrl)) ??
|
|
269
|
+
(await core.Supplier.get(this._options.environment)) ??
|
|
270
|
+
environments.HubPlatformEnvironment.Default, `subscriptions/${core.url.encodePathParam(id)}/service-executions`),
|
|
271
|
+
method: "GET",
|
|
272
|
+
headers: _headers,
|
|
273
|
+
queryParameters: requestOptions?.queryParams,
|
|
274
|
+
timeoutMs: (requestOptions?.timeoutInSeconds ?? this._options?.timeoutInSeconds ?? 60) * 1000,
|
|
275
|
+
maxRetries: requestOptions?.maxRetries ?? this._options?.maxRetries,
|
|
276
|
+
withCredentials: true,
|
|
277
|
+
abortSignal: requestOptions?.abortSignal,
|
|
278
|
+
fetchFn: this._options?.fetch,
|
|
279
|
+
logging: this._options.logging,
|
|
280
|
+
});
|
|
281
|
+
if (_response.ok) {
|
|
282
|
+
return { data: _response.body, rawResponse: _response.rawResponse };
|
|
283
|
+
}
|
|
284
|
+
if (_response.error.reason === "status-code") {
|
|
285
|
+
switch (_response.error.statusCode) {
|
|
286
|
+
case 401:
|
|
287
|
+
throw new HubPlatform.UnauthorizedError(_response.error.body, _response.rawResponse);
|
|
288
|
+
case 403:
|
|
289
|
+
throw new HubPlatform.ForbiddenError(_response.error.body, _response.rawResponse);
|
|
290
|
+
case 404:
|
|
291
|
+
throw new HubPlatform.NotFoundError(_response.error.body, _response.rawResponse);
|
|
292
|
+
case 500:
|
|
293
|
+
throw new HubPlatform.InternalServerError(_response.error.body, _response.rawResponse);
|
|
294
|
+
default:
|
|
295
|
+
throw new errors.HubPlatformError({
|
|
296
|
+
statusCode: _response.error.statusCode,
|
|
297
|
+
body: _response.error.body,
|
|
298
|
+
rawResponse: _response.rawResponse,
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
return (0, handleNonStatusCodeError_js_1.handleNonStatusCodeError)(_response.error, _response.rawResponse, "GET", "/subscriptions/{id}/service-executions");
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
exports.SubscriptionsClient = SubscriptionsClient;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./requests/index.js";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./requests/index.js"), exports);
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export type { CreateSubscriptionRequest } from "./CreateSubscriptionRequest.js";
|
|
2
|
+
export type { DeleteSubscriptionRequest } from "./DeleteSubscriptionRequest.js";
|
|
3
|
+
export type { GetSubscriptionRequest } from "./GetSubscriptionRequest.js";
|
|
4
|
+
export type { GetSubscriptionServiceExecutionsRequest } from "./GetSubscriptionServiceExecutionsRequest.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./client/index.js";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./client/index.js"), exports);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface AccessKey {
|
|
2
|
+
type?: AccessKey.Type | undefined;
|
|
3
|
+
accessKeyId?: string | undefined;
|
|
4
|
+
secretAccessKey?: string | undefined;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace AccessKey {
|
|
7
|
+
const Type: {
|
|
8
|
+
readonly Apim: "APIM";
|
|
9
|
+
readonly ServiceGateway: "SERVICE_GATEWAY";
|
|
10
|
+
};
|
|
11
|
+
type Type = (typeof Type)[keyof typeof Type];
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.AccessKey = void 0;
|
|
5
|
+
var AccessKey;
|
|
6
|
+
(function (AccessKey) {
|
|
7
|
+
AccessKey.Type = {
|
|
8
|
+
Apim: "APIM",
|
|
9
|
+
ServiceGateway: "SERVICE_GATEWAY",
|
|
10
|
+
};
|
|
11
|
+
})(AccessKey || (exports.AccessKey = AccessKey = {}));
|