From 924208af3da943cb96b6bf066fc8e4822e008065 Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Tue, 21 Nov 2023 10:42:01 -0800 Subject: [PATCH] run lexgen; skip bsky threadgate; comments only --- api/atproto/admindefs.go | 6 +++--- api/atproto/admindisableAccountInvites.go | 2 +- api/atproto/adminenableAccountInvites.go | 2 +- api/atproto/admingetModerationReports.go | 6 +++--- api/atproto/admintakeModerationAction.go | 2 +- api/atproto/labeldefs.go | 18 +++++++++--------- api/atproto/labelqueryLabels.go | 4 ++-- api/atproto/repoapplyWrites.go | 2 +- api/atproto/repocreateRecord.go | 4 ++-- api/atproto/repodeleteRecord.go | 4 ++-- api/atproto/repolistRecords.go | 2 +- api/atproto/repoputRecord.go | 6 +++--- api/atproto/synclistBlobs.go | 2 +- api/atproto/syncsubscribeRepos.go | 8 ++++---- api/bsky/actordefs.go | 4 ++-- api/bsky/actorsearchActors.go | 4 ++-- api/bsky/actorsearchActorsTypeahead.go | 4 ++-- api/bsky/feedsearchPosts.go | 6 +++--- api/bsky/unspeccedsearchActorsSkeleton.go | 8 ++++---- api/bsky/unspeccedsearchPostsSkeleton.go | 6 +++--- 20 files changed, 50 insertions(+), 50 deletions(-) diff --git a/api/atproto/admindefs.go b/api/atproto/admindefs.go index eaf3c6f99..2d9c37812 100644 --- a/api/atproto/admindefs.go +++ b/api/atproto/admindefs.go @@ -37,7 +37,7 @@ type AdminDefs_ActionView struct { CreateLabelVals []string `json:"createLabelVals,omitempty" cborgen:"createLabelVals,omitempty"` CreatedAt string `json:"createdAt" cborgen:"createdAt"` CreatedBy string `json:"createdBy" cborgen:"createdBy"` - // durationInHours: Indicates how long this action was meant to be in effect before automatically expiring. + // durationInHours: Indicates how long this action is meant to be in effect before automatically expiring. DurationInHours *int64 `json:"durationInHours,omitempty" cborgen:"durationInHours,omitempty"` Id int64 `json:"id" cborgen:"id"` NegateLabelVals []string `json:"negateLabelVals,omitempty" cborgen:"negateLabelVals,omitempty"` @@ -51,7 +51,7 @@ type AdminDefs_ActionView struct { // AdminDefs_ActionViewCurrent is a "actionViewCurrent" in the com.atproto.admin.defs schema. type AdminDefs_ActionViewCurrent struct { Action *string `json:"action" cborgen:"action"` - // durationInHours: Indicates how long this action was meant to be in effect before automatically expiring. + // durationInHours: Indicates how long this action is meant to be in effect before automatically expiring. DurationInHours *int64 `json:"durationInHours,omitempty" cborgen:"durationInHours,omitempty"` Id int64 `json:"id" cborgen:"id"` } @@ -62,7 +62,7 @@ type AdminDefs_ActionViewDetail struct { CreateLabelVals []string `json:"createLabelVals,omitempty" cborgen:"createLabelVals,omitempty"` CreatedAt string `json:"createdAt" cborgen:"createdAt"` CreatedBy string `json:"createdBy" cborgen:"createdBy"` - // durationInHours: Indicates how long this action was meant to be in effect before automatically expiring. + // durationInHours: Indicates how long this action is meant to be in effect before automatically expiring. DurationInHours *int64 `json:"durationInHours,omitempty" cborgen:"durationInHours,omitempty"` Id int64 `json:"id" cborgen:"id"` NegateLabelVals []string `json:"negateLabelVals,omitempty" cborgen:"negateLabelVals,omitempty"` diff --git a/api/atproto/admindisableAccountInvites.go b/api/atproto/admindisableAccountInvites.go index de8796361..4fd915762 100644 --- a/api/atproto/admindisableAccountInvites.go +++ b/api/atproto/admindisableAccountInvites.go @@ -13,7 +13,7 @@ import ( // AdminDisableAccountInvites_Input is the input argument to a com.atproto.admin.disableAccountInvites call. type AdminDisableAccountInvites_Input struct { Account string `json:"account" cborgen:"account"` - // note: Additionally add a note describing why the invites were disabled + // note: Optional reason for disabled invites. Note *string `json:"note,omitempty" cborgen:"note,omitempty"` } diff --git a/api/atproto/adminenableAccountInvites.go b/api/atproto/adminenableAccountInvites.go index 9432f22e0..ae745c9b8 100644 --- a/api/atproto/adminenableAccountInvites.go +++ b/api/atproto/adminenableAccountInvites.go @@ -13,7 +13,7 @@ import ( // AdminEnableAccountInvites_Input is the input argument to a com.atproto.admin.enableAccountInvites call. type AdminEnableAccountInvites_Input struct { Account string `json:"account" cborgen:"account"` - // note: Additionally add a note describing why the invites were enabled + // note: Optional reason for enabled invites. Note *string `json:"note,omitempty" cborgen:"note,omitempty"` } diff --git a/api/atproto/admingetModerationReports.go b/api/atproto/admingetModerationReports.go index f1a06e6b0..7242e0c53 100644 --- a/api/atproto/admingetModerationReports.go +++ b/api/atproto/admingetModerationReports.go @@ -18,9 +18,9 @@ type AdminGetModerationReports_Output struct { // AdminGetModerationReports calls the XRPC method "com.atproto.admin.getModerationReports". // -// actionedBy: Get all reports that were actioned by a specific moderator -// reporters: Filter reports made by one or more DIDs -// reverse: Reverse the order of the returned records? when true, returns reports in chronological order +// actionedBy: Get all reports that were actioned by a specific moderator. +// reporters: Filter reports made by one or more DIDs. +// reverse: Reverse the order of the returned records. When true, returns reports in chronological order. func AdminGetModerationReports(ctx context.Context, c *xrpc.Client, actionType string, actionedBy string, cursor string, ignoreSubjects []string, limit int64, reporters []string, resolved bool, reverse bool, subject string) (*AdminGetModerationReports_Output, error) { var out AdminGetModerationReports_Output diff --git a/api/atproto/admintakeModerationAction.go b/api/atproto/admintakeModerationAction.go index d95f88e85..30e833400 100644 --- a/api/atproto/admintakeModerationAction.go +++ b/api/atproto/admintakeModerationAction.go @@ -18,7 +18,7 @@ type AdminTakeModerationAction_Input struct { Action string `json:"action" cborgen:"action"` CreateLabelVals []string `json:"createLabelVals,omitempty" cborgen:"createLabelVals,omitempty"` CreatedBy string `json:"createdBy" cborgen:"createdBy"` - // durationInHours: Indicates how long this action was meant to be in effect before automatically expiring. + // durationInHours: Indicates how long this action is meant to be in effect before automatically expiring. DurationInHours *int64 `json:"durationInHours,omitempty" cborgen:"durationInHours,omitempty"` NegateLabelVals []string `json:"negateLabelVals,omitempty" cborgen:"negateLabelVals,omitempty"` Reason string `json:"reason" cborgen:"reason"` diff --git a/api/atproto/labeldefs.go b/api/atproto/labeldefs.go index 10fce2b70..7c8a77dcb 100644 --- a/api/atproto/labeldefs.go +++ b/api/atproto/labeldefs.go @@ -6,27 +6,27 @@ package atproto // LabelDefs_Label is a "label" in the com.atproto.label.defs schema. // -// Metadata tag on an atproto resource (eg, repo or record) +// Metadata tag on an atproto resource (eg, repo or record). type LabelDefs_Label struct { - // cid: optionally, CID specifying the specific version of 'uri' resource this label applies to + // cid: Optionally, CID specifying the specific version of 'uri' resource this label applies to. Cid *string `json:"cid,omitempty" cborgen:"cid,omitempty"` - // cts: timestamp when this label was created + // cts: Timestamp when this label was created. Cts string `json:"cts" cborgen:"cts"` - // neg: if true, this is a negation label, overwriting a previous label + // neg: If true, this is a negation label, overwriting a previous label. Neg *bool `json:"neg,omitempty" cborgen:"neg,omitempty"` - // src: DID of the actor who created this label + // src: DID of the actor who created this label. Src string `json:"src" cborgen:"src"` - // uri: AT URI of the record, repository (account), or other resource which this label applies to + // uri: AT URI of the record, repository (account), or other resource that this label applies to. Uri string `json:"uri" cborgen:"uri"` - // val: the short string name of the value or type of this label + // val: The short string name of the value or type of this label. Val string `json:"val" cborgen:"val"` } // LabelDefs_SelfLabel is a "selfLabel" in the com.atproto.label.defs schema. // -// Metadata tag on an atproto record, published by the author within the record. Note -- schemas should use #selfLabels, not #selfLabel. +// Metadata tag on an atproto record, published by the author within the record. Note that schemas should use #selfLabels, not #selfLabel. type LabelDefs_SelfLabel struct { - // val: the short string name of the value or type of this label + // val: The short string name of the value or type of this label. Val string `json:"val" cborgen:"val"` } diff --git a/api/atproto/labelqueryLabels.go b/api/atproto/labelqueryLabels.go index cda9feea6..f8c7da46e 100644 --- a/api/atproto/labelqueryLabels.go +++ b/api/atproto/labelqueryLabels.go @@ -18,8 +18,8 @@ type LabelQueryLabels_Output struct { // LabelQueryLabels calls the XRPC method "com.atproto.label.queryLabels". // -// sources: Optional list of label sources (DIDs) to filter on -// uriPatterns: List of AT URI patterns to match (boolean 'OR'). Each may be a prefix (ending with '*'; will match inclusive of the string leading to '*'), or a full URI +// sources: Optional list of label sources (DIDs) to filter on. +// uriPatterns: List of AT URI patterns to match (boolean 'OR'). Each may be a prefix (ending with '*'; will match inclusive of the string leading to '*'), or a full URI. func LabelQueryLabels(ctx context.Context, c *xrpc.Client, cursor string, limit int64, sources []string, uriPatterns []string) (*LabelQueryLabels_Output, error) { var out LabelQueryLabels_Output diff --git a/api/atproto/repoapplyWrites.go b/api/atproto/repoapplyWrites.go index cc002e415..f44921b6b 100644 --- a/api/atproto/repoapplyWrites.go +++ b/api/atproto/repoapplyWrites.go @@ -41,7 +41,7 @@ type RepoApplyWrites_Input struct { // repo: The handle or DID of the repo. Repo string `json:"repo" cborgen:"repo"` SwapCommit *string `json:"swapCommit,omitempty" cborgen:"swapCommit,omitempty"` - // validate: Validate the records? + // validate: Flag for validating the records. Validate *bool `json:"validate,omitempty" cborgen:"validate,omitempty"` Writes []*RepoApplyWrites_Input_Writes_Elem `json:"writes" cborgen:"writes"` } diff --git a/api/atproto/repocreateRecord.go b/api/atproto/repocreateRecord.go index a17f4cd48..d213d042b 100644 --- a/api/atproto/repocreateRecord.go +++ b/api/atproto/repocreateRecord.go @@ -21,9 +21,9 @@ type RepoCreateRecord_Input struct { Repo string `json:"repo" cborgen:"repo"` // rkey: The key of the record. Rkey *string `json:"rkey,omitempty" cborgen:"rkey,omitempty"` - // swapCommit: Compare and swap with the previous commit by cid. + // swapCommit: Compare and swap with the previous commit by CID. SwapCommit *string `json:"swapCommit,omitempty" cborgen:"swapCommit,omitempty"` - // validate: Validate the record? + // validate: Flag for validating the record. Validate *bool `json:"validate,omitempty" cborgen:"validate,omitempty"` } diff --git a/api/atproto/repodeleteRecord.go b/api/atproto/repodeleteRecord.go index 76186c340..0e79a3672 100644 --- a/api/atproto/repodeleteRecord.go +++ b/api/atproto/repodeleteRecord.go @@ -18,9 +18,9 @@ type RepoDeleteRecord_Input struct { Repo string `json:"repo" cborgen:"repo"` // rkey: The key of the record. Rkey string `json:"rkey" cborgen:"rkey"` - // swapCommit: Compare and swap with the previous commit by cid. + // swapCommit: Compare and swap with the previous commit by CID. SwapCommit *string `json:"swapCommit,omitempty" cborgen:"swapCommit,omitempty"` - // swapRecord: Compare and swap with the previous record by cid. + // swapRecord: Compare and swap with the previous record by CID. SwapRecord *string `json:"swapRecord,omitempty" cborgen:"swapRecord,omitempty"` } diff --git a/api/atproto/repolistRecords.go b/api/atproto/repolistRecords.go index c1b82add7..d60fe49d4 100644 --- a/api/atproto/repolistRecords.go +++ b/api/atproto/repolistRecords.go @@ -29,7 +29,7 @@ type RepoListRecords_Record struct { // collection: The NSID of the record type. // limit: The number of records to return. // repo: The handle or DID of the repo. -// reverse: Reverse the order of the returned records? +// reverse: Flag to reverse the order of the returned records. // rkeyEnd: DEPRECATED: The highest sort-ordered rkey to stop at (exclusive) // rkeyStart: DEPRECATED: The lowest sort-ordered rkey to start from (exclusive) func RepoListRecords(ctx context.Context, c *xrpc.Client, collection string, cursor string, limit int64, repo string, reverse bool, rkeyEnd string, rkeyStart string) (*RepoListRecords_Output, error) { diff --git a/api/atproto/repoputRecord.go b/api/atproto/repoputRecord.go index 489a839e8..f869a79d0 100644 --- a/api/atproto/repoputRecord.go +++ b/api/atproto/repoputRecord.go @@ -21,11 +21,11 @@ type RepoPutRecord_Input struct { Repo string `json:"repo" cborgen:"repo"` // rkey: The key of the record. Rkey string `json:"rkey" cborgen:"rkey"` - // swapCommit: Compare and swap with the previous commit by cid. + // swapCommit: Compare and swap with the previous commit by CID. SwapCommit *string `json:"swapCommit,omitempty" cborgen:"swapCommit,omitempty"` - // swapRecord: Compare and swap with the previous record by cid. + // swapRecord: Compare and swap with the previous record by CID. SwapRecord *string `json:"swapRecord" cborgen:"swapRecord"` - // validate: Validate the record? + // validate: Flag for validating the record. Validate *bool `json:"validate,omitempty" cborgen:"validate,omitempty"` } diff --git a/api/atproto/synclistBlobs.go b/api/atproto/synclistBlobs.go index 7f27dea96..0bcbe317b 100644 --- a/api/atproto/synclistBlobs.go +++ b/api/atproto/synclistBlobs.go @@ -19,7 +19,7 @@ type SyncListBlobs_Output struct { // SyncListBlobs calls the XRPC method "com.atproto.sync.listBlobs". // // did: The DID of the repo. -// since: Optional revision of the repo to list blobs since +// since: Optional revision of the repo to list blobs since. func SyncListBlobs(ctx context.Context, c *xrpc.Client, cursor string, did string, limit int64, since string) (*SyncListBlobs_Output, error) { var out SyncListBlobs_Output diff --git a/api/atproto/syncsubscribeRepos.go b/api/atproto/syncsubscribeRepos.go index 434048730..65fb81511 100644 --- a/api/atproto/syncsubscribeRepos.go +++ b/api/atproto/syncsubscribeRepos.go @@ -11,17 +11,17 @@ import ( // SyncSubscribeRepos_Commit is a "commit" in the com.atproto.sync.subscribeRepos schema. type SyncSubscribeRepos_Commit struct { Blobs []util.LexLink `json:"blobs" cborgen:"blobs"` - // blocks: CAR file containing relevant blocks + // blocks: CAR file containing relevant blocks. Blocks util.LexBytes `json:"blocks,omitempty" cborgen:"blocks,omitempty"` Commit util.LexLink `json:"commit" cborgen:"commit"` Ops []*SyncSubscribeRepos_RepoOp `json:"ops" cborgen:"ops"` Prev *util.LexLink `json:"prev" cborgen:"prev"` Rebase bool `json:"rebase" cborgen:"rebase"` Repo string `json:"repo" cborgen:"repo"` - // rev: The rev of the emitted commit + // rev: The rev of the emitted commit. Rev string `json:"rev" cborgen:"rev"` Seq int64 `json:"seq" cborgen:"seq"` - // since: The rev of the last emitted commit from this repo + // since: The rev of the last emitted commit from this repo. Since *string `json:"since" cborgen:"since"` Time string `json:"time" cborgen:"time"` TooBig bool `json:"tooBig" cborgen:"tooBig"` @@ -51,7 +51,7 @@ type SyncSubscribeRepos_Migrate struct { // SyncSubscribeRepos_RepoOp is a "repoOp" in the com.atproto.sync.subscribeRepos schema. // -// A repo operation, ie a write of a single record. For creates and updates, cid is the record's CID as of this operation. For deletes, it's null. +// A repo operation, ie a write of a single record. For creates and updates, CID is the record's CID as of this operation. For deletes, it's null. type SyncSubscribeRepos_RepoOp struct { Action string `json:"action" cborgen:"action"` Cid *util.LexLink `json:"cid" cborgen:"cid"` diff --git a/api/bsky/actordefs.go b/api/bsky/actordefs.go index caea0b35c..43ec8dabe 100644 --- a/api/bsky/actordefs.go +++ b/api/bsky/actordefs.go @@ -53,7 +53,7 @@ type ActorDefs_FeedViewPref struct { // RECORDTYPE: ActorDefs_PersonalDetailsPref type ActorDefs_PersonalDetailsPref struct { LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#personalDetailsPref" cborgen:"$type,const=app.bsky.actor.defs#personalDetailsPref"` - // birthDate: The birth date of the owner of the account. + // birthDate: The birth date of account owner. BirthDate *string `json:"birthDate,omitempty" cborgen:"birthDate,omitempty"` } @@ -178,7 +178,7 @@ type ActorDefs_ThreadViewPref struct { LexiconTypeID string `json:"$type,const=app.bsky.actor.defs#threadViewPref" cborgen:"$type,const=app.bsky.actor.defs#threadViewPref"` // prioritizeFollowedUsers: Show followed users at the top of all replies. PrioritizeFollowedUsers *bool `json:"prioritizeFollowedUsers,omitempty" cborgen:"prioritizeFollowedUsers,omitempty"` - // sort: Sorting mode. + // sort: Sorting mode for threads. Sort *string `json:"sort,omitempty" cborgen:"sort,omitempty"` } diff --git a/api/bsky/actorsearchActors.go b/api/bsky/actorsearchActors.go index 9b42711c2..8a55c5a00 100644 --- a/api/bsky/actorsearchActors.go +++ b/api/bsky/actorsearchActors.go @@ -18,8 +18,8 @@ type ActorSearchActors_Output struct { // ActorSearchActors calls the XRPC method "app.bsky.actor.searchActors". // -// q: search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended -// term: DEPRECATED: use 'q' instead +// q: Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. +// term: DEPRECATED: use 'q' instead. func ActorSearchActors(ctx context.Context, c *xrpc.Client, cursor string, limit int64, q string, term string) (*ActorSearchActors_Output, error) { var out ActorSearchActors_Output diff --git a/api/bsky/actorsearchActorsTypeahead.go b/api/bsky/actorsearchActorsTypeahead.go index b89e858cb..b3ea035b7 100644 --- a/api/bsky/actorsearchActorsTypeahead.go +++ b/api/bsky/actorsearchActorsTypeahead.go @@ -17,8 +17,8 @@ type ActorSearchActorsTypeahead_Output struct { // ActorSearchActorsTypeahead calls the XRPC method "app.bsky.actor.searchActorsTypeahead". // -// q: search query prefix; not a full query string -// term: DEPRECATED: use 'q' instead +// q: Search query prefix; not a full query string. +// term: DEPRECATED: use 'q' instead. func ActorSearchActorsTypeahead(ctx context.Context, c *xrpc.Client, limit int64, q string, term string) (*ActorSearchActorsTypeahead_Output, error) { var out ActorSearchActorsTypeahead_Output diff --git a/api/bsky/feedsearchPosts.go b/api/bsky/feedsearchPosts.go index b7412e54a..ad36b5b97 100644 --- a/api/bsky/feedsearchPosts.go +++ b/api/bsky/feedsearchPosts.go @@ -13,15 +13,15 @@ import ( // FeedSearchPosts_Output is the output of a app.bsky.feed.searchPosts call. type FeedSearchPosts_Output struct { Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"` - // hitsTotal: count of search hits. optional, may be rounded/truncated, and may not be possible to paginate through all hits + // hitsTotal: Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits. HitsTotal *int64 `json:"hitsTotal,omitempty" cborgen:"hitsTotal,omitempty"` Posts []*FeedDefs_PostView `json:"posts" cborgen:"posts"` } // FeedSearchPosts calls the XRPC method "app.bsky.feed.searchPosts". // -// cursor: optional pagination mechanism; may not necessarily allow scrolling through entire result set -// q: search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended +// cursor: Optional pagination mechanism; may not necessarily allow scrolling through entire result set. +// q: Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. func FeedSearchPosts(ctx context.Context, c *xrpc.Client, cursor string, limit int64, q string) (*FeedSearchPosts_Output, error) { var out FeedSearchPosts_Output diff --git a/api/bsky/unspeccedsearchActorsSkeleton.go b/api/bsky/unspeccedsearchActorsSkeleton.go index 1bf340fa6..dad00c82d 100644 --- a/api/bsky/unspeccedsearchActorsSkeleton.go +++ b/api/bsky/unspeccedsearchActorsSkeleton.go @@ -14,15 +14,15 @@ import ( type UnspeccedSearchActorsSkeleton_Output struct { Actors []*UnspeccedDefs_SkeletonSearchActor `json:"actors" cborgen:"actors"` Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"` - // hitsTotal: count of search hits. optional, may be rounded/truncated, and may not be possible to paginate through all hits + // hitsTotal: Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits. HitsTotal *int64 `json:"hitsTotal,omitempty" cborgen:"hitsTotal,omitempty"` } // UnspeccedSearchActorsSkeleton calls the XRPC method "app.bsky.unspecced.searchActorsSkeleton". // -// cursor: optional pagination mechanism; may not necessarily allow scrolling through entire result set -// q: search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax -// typeahead: if true, acts as fast/simple 'typeahead' query +// cursor: Optional pagination mechanism; may not necessarily allow scrolling through entire result set. +// q: Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. For typeahead search, only simple term match is supported, not full syntax. +// typeahead: If true, acts as fast/simple 'typeahead' query. func UnspeccedSearchActorsSkeleton(ctx context.Context, c *xrpc.Client, cursor string, limit int64, q string, typeahead bool) (*UnspeccedSearchActorsSkeleton_Output, error) { var out UnspeccedSearchActorsSkeleton_Output diff --git a/api/bsky/unspeccedsearchPostsSkeleton.go b/api/bsky/unspeccedsearchPostsSkeleton.go index d093b0f9b..1c96baf20 100644 --- a/api/bsky/unspeccedsearchPostsSkeleton.go +++ b/api/bsky/unspeccedsearchPostsSkeleton.go @@ -13,15 +13,15 @@ import ( // UnspeccedSearchPostsSkeleton_Output is the output of a app.bsky.unspecced.searchPostsSkeleton call. type UnspeccedSearchPostsSkeleton_Output struct { Cursor *string `json:"cursor,omitempty" cborgen:"cursor,omitempty"` - // hitsTotal: count of search hits. optional, may be rounded/truncated, and may not be possible to paginate through all hits + // hitsTotal: Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits. HitsTotal *int64 `json:"hitsTotal,omitempty" cborgen:"hitsTotal,omitempty"` Posts []*UnspeccedDefs_SkeletonSearchPost `json:"posts" cborgen:"posts"` } // UnspeccedSearchPostsSkeleton calls the XRPC method "app.bsky.unspecced.searchPostsSkeleton". // -// cursor: optional pagination mechanism; may not necessarily allow scrolling through entire result set -// q: search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended +// cursor: Optional pagination mechanism; may not necessarily allow scrolling through entire result set. +// q: Search query string; syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended. func UnspeccedSearchPostsSkeleton(ctx context.Context, c *xrpc.Client, cursor string, limit int64, q string) (*UnspeccedSearchPostsSkeleton_Output, error) { var out UnspeccedSearchPostsSkeleton_Output