Skip to content

Commit

Permalink
fix: export filecoin types (#1185)
Browse files Browse the repository at this point in the history
These were previously not exported from `w3up-client` 😢
  • Loading branch information
alanshaw committed Nov 27, 2023
1 parent aae7045 commit 9b1f526
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/w3up-client/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export type {

export type ProofQuery = Record<Resource, Record<Ability, Unit>>

export type Service = AccessService & UploadService & StorefrontService

export interface ServiceConf {
access: ConnectionView<AccessService>
upload: ConnectionView<UploadService>
Expand Down Expand Up @@ -80,6 +82,21 @@ export type {
UploadAdd,
UploadList,
UploadRemove,
PlanGet,
PlanGetSuccess,
PlanGetFailure,
FilecoinOffer,
FilecoinOfferSuccess,
FilecoinOfferFailure,
FilecoinSubmit,
FilecoinSubmitSuccess,
FilecoinSubmitFailure,
FilecoinAccept,
FilecoinAcceptSuccess,
FilecoinAcceptFailure,
FilecoinInfo,
FilecoinInfoSuccess,
FilecoinInfoFailure,
} from '@web3-storage/capabilities/types'

export type {
Expand Down

0 comments on commit 9b1f526

Please sign in to comment.