Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: code for support order and download files when zerodev is ready #35

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions src/payments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ export class Payments {
*/
public logout() {
this.sessionKey = undefined
this.marketplaceAuthToken = undefined
}

/**
Expand Down Expand Up @@ -518,6 +519,53 @@ export class Payments {
return response.json()
}

public async orderSubscription(subscriptionDid: string, agreementId?: string) {
const body = {
subscriptionDid,
agreementId,
sessionKey: this.sessionKey,
}
const options = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(body),
}
const url = new URL('/api/v1/payments/subscription/order', this.environment.backend)
const response = await fetch(url, options)
if (!response.ok) {
throw Error(response.statusText)
}

return response.json()
}

public async downloadFiles(fileDid: string, destination?: string, agreementId?: string) {
const body = {
fileDid,
agreementId,
destination,
sessionKey: this.sessionKey,
}
const options = {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(body),
}
const url = new URL('/api/v1/payments/file/download', this.environment.backend)
const response = await fetch(url, options)
if (!response.ok) {
throw Error(response.statusText)
}

return response.json()
}

/**
* Get the service token for a given DID.
*
Expand Down