Skip to content

Commit

Permalink
fix: make cursor docs more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
vasco-santos committed Nov 21, 2022
1 parent df2c7a9 commit 9615cde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions packages/access-client/src/capabilities/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,8 @@ export const list = base.derive({
with: URI.match({ protocol: 'did:' }),
nb: {
/**
* Item where a previous list operation stopped, inclusive of the previous
* result set. Use this value to start a new operation, in order to paginate
* list.
* A pointer that can be moved back and forth on the list.
* It can be used to paginate a list for instance.
*/
cursor: Schema.string().optional(),
/**
Expand Down
5 changes: 2 additions & 3 deletions packages/access-client/src/capabilities/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,8 @@ export const list = base.derive({
with: URI.match({ protocol: 'did:' }),
nb: {
/**
* Item where a previous list operation stopped, inclusive of the previous
* result set. Use this value to start a new operation, in order to paginate
* list.
* A pointer that can be moved back and forth on the list.
* It can be used to paginate a list for instance.
*/
cursor: Schema.string().optional(),
/**
Expand Down

0 comments on commit 9615cde

Please sign in to comment.