-
Notifications
You must be signed in to change notification settings - Fork 81
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
Add missing methods to set metadata in primitives #1053
base: next
Are you sure you want to change the base?
Add missing methods to set metadata in primitives #1053
Conversation
This pull request has been linked to 1 task:
|
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
packages/client/src/actions/feed.ts
Outdated
* }); | ||
* ``` | ||
* | ||
* @param client - The session client logged as a builder. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param client - The session client logged as a builder. | |
* @param client - The session client logged in as a builder. |
packages/client/src/actions/graph.ts
Outdated
* ```ts | ||
* const result = await setGraphMetadata(sessionClient, { | ||
* graph: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | ||
* metadataUri: 'https://example.com/feed-metadata.json', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri
packages/client/src/actions/feed.ts
Outdated
* ```ts | ||
* const result = await setFeedMetadata(sessionClient, { | ||
* feed: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | ||
* metadataUri: 'https://example.com/feed-metadata.json', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri
packages/client/src/actions/group.ts
Outdated
* ```ts | ||
* const result = await setGroupMetadata(sessionClient, { | ||
* group: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | ||
* metadataUri: 'https://example.com/feed-metadata.json', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
uri
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with lens:// ...
example
* ```ts | ||
* const result = await setNamespaceMetadata(sessionClient, { | ||
* namespace: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | ||
* metadataUri: 'https://example.com/feed-metadata.json', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same
* filter: { | ||
* owner: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | ||
* }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* filter: { | |
* owner: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | |
* }, | |
* filter: { | |
* owner: evmAddress('0xe2f2a5C287993345a840db3B0845fbc70f5935a5'), | |
* }, |
/** | ||
* Enum for AppUsersOrderBy. | ||
*/ | ||
export enum AppUsersOrderBy { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please hook this into the scalar config?
No description provided.