123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195 |
- swagger: "2.0"
- info:
- title: api/v1/activity_service.proto
- version: version not set
- tags:
- - name: ActivityService
- - name: UserService
- - name: AuthService
- - name: IdentityProviderService
- - name: InboxService
- - name: MarkdownService
- - name: ResourceService
- - name: MemoService
- - name: WebhookService
- - name: WorkspaceService
- - name: WorkspaceSettingService
- consumes:
- - application/json
- produces:
- - application/json
- paths:
- /api/v1/auth/signin:
- post:
- summary: SignIn signs in the user with the given username and password.
- operationId: AuthService_SignIn
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: username
- description: The username to sign in with.
- in: query
- required: false
- type: string
- - name: password
- description: The password to sign in with.
- in: query
- required: false
- type: string
- - name: neverExpire
- description: Whether the session should never expire.
- in: query
- required: false
- type: boolean
- tags:
- - AuthService
- /api/v1/auth/signin/sso:
- post:
- summary: SignInWithSSO signs in the user with the given SSO code.
- operationId: AuthService_SignInWithSSO
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: idpId
- description: The ID of the SSO provider.
- in: query
- required: false
- type: integer
- format: int32
- - name: code
- description: The code to sign in with.
- in: query
- required: false
- type: string
- - name: redirectUri
- description: The redirect URI.
- in: query
- required: false
- type: string
- tags:
- - AuthService
- /api/v1/auth/signout:
- post:
- summary: SignOut signs out the user.
- operationId: AuthService_SignOut
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - AuthService
- /api/v1/auth/signup:
- post:
- summary: SignUp signs up the user with the given username and password.
- operationId: AuthService_SignUp
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: username
- description: The username to sign up with.
- in: query
- required: false
- type: string
- - name: password
- description: The password to sign up with.
- in: query
- required: false
- type: string
- tags:
- - AuthService
- /api/v1/auth/status:
- post:
- summary: GetAuthStatus returns the current auth status of the user.
- operationId: AuthService_GetAuthStatus
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - AuthService
- /api/v1/identityProviders:
- get:
- summary: ListIdentityProviders lists identity providers.
- operationId: IdentityProviderService_ListIdentityProviders
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListIdentityProvidersResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - IdentityProviderService
- post:
- summary: CreateIdentityProvider creates an identity provider.
- operationId: IdentityProviderService_CreateIdentityProvider
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1IdentityProvider'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: identityProvider
- description: The identityProvider to create.
- in: body
- required: true
- schema:
- $ref: '#/definitions/apiv1IdentityProvider'
- tags:
- - IdentityProviderService
- /api/v1/inboxes:
- get:
- summary: ListInboxes lists inboxes for a user.
- operationId: InboxService_ListInboxes
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListInboxesResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: user
- description: 'Format: users/{user}'
- in: query
- required: false
- type: string
- - name: pageSize
- description: The maximum number of inbox to return.
- in: query
- required: false
- type: integer
- format: int32
- - name: pageToken
- description: Provide this to retrieve the subsequent page.
- in: query
- required: false
- type: string
- tags:
- - InboxService
- /api/v1/markdown/link:metadata:
- get:
- summary: GetLinkMetadata returns metadata for a given link.
- operationId: MarkdownService_GetLinkMetadata
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1LinkMetadata'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: link
- in: query
- required: false
- type: string
- tags:
- - MarkdownService
- /api/v1/markdown/node:restore:
- post:
- summary: RestoreMarkdownNodes restores the given nodes to markdown content.
- operationId: MarkdownService_RestoreMarkdownNodes
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1RestoreMarkdownNodesResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1RestoreMarkdownNodesRequest'
- tags:
- - MarkdownService
- /api/v1/markdown/node:stringify:
- post:
- summary: StringifyMarkdownNodes stringify the given nodes to plain text content.
- operationId: MarkdownService_StringifyMarkdownNodes
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1StringifyMarkdownNodesResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1StringifyMarkdownNodesRequest'
- tags:
- - MarkdownService
- /api/v1/markdown:parse:
- post:
- summary: ParseMarkdown parses the given markdown content and returns a list of nodes.
- operationId: MarkdownService_ParseMarkdown
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ParseMarkdownResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1ParseMarkdownRequest'
- tags:
- - MarkdownService
- /api/v1/memos:
- get:
- summary: ListMemos lists memos with pagination and filter.
- operationId: MemoService_ListMemos
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListMemosResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: pageSize
- description: The maximum number of memos to return.
- in: query
- required: false
- type: integer
- format: int32
- - name: pageToken
- description: |-
- A page token, received from a previous `ListMemos` call.
- Provide this to retrieve the subsequent page.
- in: query
- required: false
- type: string
- - name: filter
- description: |-
- Filter is used to filter memos returned in the list.
- Format: "creator == 'users/{user}' && visibilities == ['PUBLIC', 'PROTECTED']"
- in: query
- required: false
- type: string
- tags:
- - MemoService
- post:
- summary: CreateMemo creates a memo.
- operationId: MemoService_CreateMemo
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1Memo'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1CreateMemoRequest'
- tags:
- - MemoService
- /api/v1/memos:by-uid/{uid}:
- get:
- summary: GetMemoByUid gets a memo by uid
- operationId: MemoService_GetMemoByUid
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1Memo'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: uid
- description: The uid of the memo.
- in: path
- required: true
- type: string
- tags:
- - MemoService
- /api/v1/reactions/{id}:
- delete:
- summary: DeleteMemoReaction deletes a reaction for a memo.
- operationId: MemoService_DeleteMemoReaction
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: id
- description: |-
- The id of the reaction.
- Refer to the `Reaction.id`.
- in: path
- required: true
- type: integer
- format: int32
- tags:
- - MemoService
- /api/v1/resources:
- get:
- summary: ListResources lists all resources.
- operationId: ResourceService_ListResources
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListResourcesResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - ResourceService
- post:
- summary: CreateResource creates a new resource.
- operationId: ResourceService_CreateResource
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Resource'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: resource
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1Resource'
- tags:
- - ResourceService
- /api/v1/resources:by-uid/{uid}:
- get:
- summary: GetResourceByUid returns a resource by uid.
- operationId: ResourceService_GetResourceByUid
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Resource'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: uid
- description: The uid of the resource.
- in: path
- required: true
- type: string
- tags:
- - ResourceService
- /api/v1/users:
- get:
- summary: ListUsers returns a list of users.
- operationId: UserService_ListUsers
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListUsersResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - UserService
- post:
- summary: CreateUser creates a new user.
- operationId: UserService_CreateUser
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: user
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1User'
- tags:
- - UserService
- /api/v1/users/-/stats:
- post:
- summary: ListAllUserStats returns all user stats.
- operationId: UserService_ListAllUserStats
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListAllUserStatsResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - UserService
- /api/v1/users:search:
- get:
- summary: SearchUsers searches users by filter.
- operationId: UserService_SearchUsers
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1SearchUsersResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: filter
- description: |-
- Filter is used to filter users returned in the list.
- Format: "username == 'frank'"
- in: query
- required: false
- type: string
- tags:
- - UserService
- /api/v1/webhooks:
- get:
- summary: ListWebhooks returns a list of webhooks.
- operationId: WebhookService_ListWebhooks
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListWebhooksResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: creator
- description: |-
- The name of the creator.
- Format: users/{user}
- in: query
- required: false
- type: string
- tags:
- - WebhookService
- post:
- summary: CreateWebhook creates a new webhook.
- operationId: WebhookService_CreateWebhook
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Webhook'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1CreateWebhookRequest'
- tags:
- - WebhookService
- /api/v1/webhooks/{id}:
- get:
- summary: GetWebhook returns a webhook by id.
- operationId: WebhookService_GetWebhook
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Webhook'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: id
- in: path
- required: true
- type: integer
- format: int32
- tags:
- - WebhookService
- delete:
- summary: DeleteWebhook deletes a webhook by id.
- operationId: WebhookService_DeleteWebhook
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: id
- in: path
- required: true
- type: integer
- format: int32
- tags:
- - WebhookService
- /api/v1/webhooks/{webhook.id}:
- patch:
- summary: UpdateWebhook updates a webhook.
- operationId: WebhookService_UpdateWebhook
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Webhook'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: webhook.id
- in: path
- required: true
- type: integer
- format: int32
- - name: webhook
- in: body
- required: true
- schema:
- type: object
- properties:
- creator:
- type: string
- title: |-
- The name of the creator.
- Format: users/{user}
- createTime:
- type: string
- format: date-time
- updateTime:
- type: string
- format: date-time
- name:
- type: string
- url:
- type: string
- tags:
- - WebhookService
- /api/v1/workspace/profile:
- get:
- summary: GetWorkspaceProfile returns the workspace profile.
- operationId: WorkspaceService_GetWorkspaceProfile
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1WorkspaceProfile'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- tags:
- - WorkspaceService
- /api/v1/workspace/{name}:
- get:
- summary: GetWorkspaceSetting returns the setting by name.
- operationId: WorkspaceSettingService_GetWorkspaceSetting
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1WorkspaceSetting'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The resource name of the workspace setting.
- Format: settings/{setting}
- in: path
- required: true
- type: string
- pattern: settings/[^/]+
- tags:
- - WorkspaceSettingService
- /api/v1/workspace/{setting.name}:
- patch:
- summary: SetWorkspaceSetting updates the setting.
- operationId: WorkspaceSettingService_SetWorkspaceSetting
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1WorkspaceSetting'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: setting.name
- description: |-
- name is the name of the setting.
- Format: settings/{setting}
- in: path
- required: true
- type: string
- pattern: settings/[^/]+
- - name: setting
- description: setting is the setting to update.
- in: body
- required: true
- schema:
- type: object
- properties:
- generalSetting:
- $ref: '#/definitions/apiv1WorkspaceGeneralSetting'
- storageSetting:
- $ref: '#/definitions/apiv1WorkspaceStorageSetting'
- memoRelatedSetting:
- $ref: '#/definitions/apiv1WorkspaceMemoRelatedSetting'
- title: setting is the setting to update.
- tags:
- - WorkspaceSettingService
- /api/v1/{identityProvider.name}:
- patch:
- summary: UpdateIdentityProvider updates an identity provider.
- operationId: IdentityProviderService_UpdateIdentityProvider
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1IdentityProvider'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: identityProvider.name
- description: |-
- The name of the identityProvider.
- Format: identityProviders/{id}
- in: path
- required: true
- type: string
- pattern: identityProviders/[^/]+
- - name: identityProvider
- description: The identityProvider to update.
- in: body
- required: true
- schema:
- type: object
- properties:
- type:
- $ref: '#/definitions/apiv1IdentityProviderType'
- title:
- type: string
- identifierFilter:
- type: string
- config:
- $ref: '#/definitions/apiv1IdentityProviderConfig'
- title: The identityProvider to update.
- tags:
- - IdentityProviderService
- /api/v1/{inbox.name}:
- patch:
- summary: UpdateInbox updates an inbox.
- operationId: InboxService_UpdateInbox
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Inbox'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: inbox.name
- description: |-
- The name of the inbox.
- Format: inboxes/{id}
- in: path
- required: true
- type: string
- pattern: inboxes/[^/]+
- - name: inbox
- in: body
- required: true
- schema:
- type: object
- properties:
- sender:
- type: string
- title: 'Format: users/{user}'
- receiver:
- type: string
- title: 'Format: users/{user}'
- status:
- $ref: '#/definitions/v1InboxStatus'
- createTime:
- type: string
- format: date-time
- type:
- $ref: '#/definitions/v1InboxType'
- activityId:
- type: integer
- format: int32
- tags:
- - InboxService
- /api/v1/{memo.name}:
- patch:
- summary: UpdateMemo updates a memo.
- operationId: MemoService_UpdateMemo
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1Memo'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: memo.name
- description: |-
- The name of the memo.
- Format: memos/{id}
- id is the system generated id.
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: memo
- in: body
- required: true
- schema:
- type: object
- properties:
- uid:
- type: string
- description: The user defined id of the memo.
- state:
- $ref: '#/definitions/v1State'
- creator:
- type: string
- title: |-
- The name of the creator.
- Format: users/{user}
- createTime:
- type: string
- format: date-time
- updateTime:
- type: string
- format: date-time
- displayTime:
- type: string
- format: date-time
- content:
- type: string
- nodes:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- readOnly: true
- visibility:
- $ref: '#/definitions/v1Visibility'
- tags:
- type: array
- items:
- type: string
- readOnly: true
- pinned:
- type: boolean
- resources:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Resource'
- relations:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1MemoRelation'
- reactions:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Reaction'
- readOnly: true
- property:
- $ref: '#/definitions/v1MemoProperty'
- readOnly: true
- parent:
- type: string
- title: |-
- The name of the parent memo.
- Format: memos/{id}
- readOnly: true
- snippet:
- type: string
- description: The snippet of the memo content. Plain text only.
- readOnly: true
- location:
- $ref: '#/definitions/apiv1Location'
- description: The location of the memo.
- tags:
- - MemoService
- /api/v1/{name_1}:
- get:
- summary: GetUser gets a user by name.
- operationId: UserService_GetUser
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_1
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- tags:
- - UserService
- delete:
- summary: DeleteIdentityProvider deletes an identity provider.
- operationId: IdentityProviderService_DeleteIdentityProvider
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_1
- description: |-
- The name of the identityProvider to delete.
- Format: identityProviders/{id}
- in: path
- required: true
- type: string
- pattern: identityProviders/[^/]+
- tags:
- - IdentityProviderService
- /api/v1/{name_2}:
- get:
- summary: GetIdentityProvider gets an identity provider.
- operationId: IdentityProviderService_GetIdentityProvider
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1IdentityProvider'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_2
- description: |-
- The name of the identityProvider to get.
- Format: identityProviders/{id}
- in: path
- required: true
- type: string
- pattern: identityProviders/[^/]+
- tags:
- - IdentityProviderService
- delete:
- summary: DeleteInbox deletes an inbox.
- operationId: InboxService_DeleteInbox
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_2
- description: |-
- The name of the inbox to delete.
- Format: inboxes/{id}
- in: path
- required: true
- type: string
- pattern: inboxes/[^/]+
- tags:
- - InboxService
- /api/v1/{name_3}:
- get:
- summary: GetResource returns a resource by name.
- operationId: ResourceService_GetResource
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Resource'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_3
- description: |-
- The name of the resource.
- Format: resources/{id}
- id is the system generated unique identifier.
- in: path
- required: true
- type: string
- pattern: resources/[^/]+
- tags:
- - ResourceService
- delete:
- summary: DeleteResource deletes a resource by name.
- operationId: ResourceService_DeleteResource
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_3
- description: |-
- The name of the resource.
- Format: resources/{id}
- id is the system generated unique identifier.
- in: path
- required: true
- type: string
- pattern: resources/[^/]+
- tags:
- - ResourceService
- /api/v1/{name_4}:
- get:
- summary: GetMemo gets a memo.
- operationId: MemoService_GetMemo
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1Memo'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_4
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- tags:
- - MemoService
- delete:
- summary: DeleteMemo deletes a memo.
- operationId: MemoService_DeleteMemo
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name_4
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- tags:
- - MemoService
- /api/v1/{name}:
- get:
- summary: GetActivity returns the activity with the given id.
- operationId: ActivityService_GetActivity
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Activity'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the activity.
- Format: activities/{id}
- in: path
- required: true
- type: string
- pattern: activities/[^/]+
- tags:
- - ActivityService
- delete:
- summary: DeleteUser deletes a user.
- operationId: UserService_DeleteUser
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- tags:
- - UserService
- /api/v1/{name}/access_tokens:
- get:
- summary: ListUserAccessTokens returns a list of access tokens for a user.
- operationId: UserService_ListUserAccessTokens
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListUserAccessTokensResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- tags:
- - UserService
- post:
- summary: CreateUserAccessToken creates a new access token for a user.
- operationId: UserService_CreateUserAccessToken
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1UserAccessToken'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/UserServiceCreateUserAccessTokenBody'
- tags:
- - UserService
- /api/v1/{name}/access_tokens/{accessToken}:
- delete:
- summary: DeleteUserAccessToken deletes an access token for a user.
- operationId: UserService_DeleteUserAccessToken
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- - name: accessToken
- description: access_token is the access token to delete.
- in: path
- required: true
- type: string
- tags:
- - UserService
- /api/v1/{name}/comments:
- get:
- summary: ListMemoComments lists comments for a memo.
- operationId: MemoService_ListMemoComments
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListMemoCommentsResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- tags:
- - MemoService
- post:
- summary: CreateMemoComment creates a comment for a memo.
- operationId: MemoService_CreateMemoComment
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1Memo'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: comment
- in: body
- required: true
- schema:
- $ref: '#/definitions/v1CreateMemoRequest'
- tags:
- - MemoService
- /api/v1/{name}/reactions:
- get:
- summary: ListMemoReactions lists reactions for a memo.
- operationId: MemoService_ListMemoReactions
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListMemoReactionsResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- tags:
- - MemoService
- post:
- summary: UpsertMemoReaction upserts a reaction for a memo.
- operationId: MemoService_UpsertMemoReaction
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Reaction'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/MemoServiceUpsertMemoReactionBody'
- tags:
- - MemoService
- /api/v1/{name}/relations:
- get:
- summary: ListMemoRelations lists relations for a memo.
- operationId: MemoService_ListMemoRelations
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListMemoRelationsResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- tags:
- - MemoService
- patch:
- summary: SetMemoRelations sets relations for a memo.
- operationId: MemoService_SetMemoRelations
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/MemoServiceSetMemoRelationsBody'
- tags:
- - MemoService
- /api/v1/{name}/resources:
- get:
- summary: ListMemoResources lists resources for a memo.
- operationId: MemoService_ListMemoResources
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1ListMemoResourcesResponse'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- tags:
- - MemoService
- patch:
- summary: SetMemoResources sets resources for a memo.
- operationId: MemoService_SetMemoResources
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the memo.
- Format: memos/{id}
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/MemoServiceSetMemoResourcesBody'
- tags:
- - MemoService
- /api/v1/{name}/setting:
- get:
- summary: GetUserSetting gets the setting of a user.
- operationId: UserService_GetUserSetting
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1UserSetting'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- tags:
- - UserService
- /api/v1/{name}/stats:
- get:
- summary: GetUserStats returns the stats of a user.
- operationId: UserService_GetUserStats
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1UserStats'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}.
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- tags:
- - UserService
- /api/v1/{parent}/tags/{tag}:
- delete:
- summary: DeleteMemoTag deletes a tag for a memo.
- operationId: MemoService_DeleteMemoTag
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: parent
- description: |-
- The parent, who owns the tags.
- Format: memos/{id}. Use "memos/-" to delete all tags.
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: tag
- in: path
- required: true
- type: string
- - name: deleteRelatedMemos
- in: query
- required: false
- type: boolean
- tags:
- - MemoService
- /api/v1/{parent}/tags:rename:
- patch:
- summary: RenameMemoTag renames a tag for a memo.
- operationId: MemoService_RenameMemoTag
- responses:
- "200":
- description: A successful response.
- schema:
- type: object
- properties: {}
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: parent
- description: |-
- The parent, who owns the tags.
- Format: memos/{id}. Use "memos/-" to rename all tags.
- in: path
- required: true
- type: string
- pattern: memos/[^/]+
- - name: body
- in: body
- required: true
- schema:
- $ref: '#/definitions/MemoServiceRenameMemoTagBody'
- tags:
- - MemoService
- /api/v1/{resource.name}:
- patch:
- summary: UpdateResource updates a resource.
- operationId: ResourceService_UpdateResource
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1Resource'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: resource.name
- description: |-
- The name of the resource.
- Format: resources/{id}
- id is the system generated unique identifier.
- in: path
- required: true
- type: string
- pattern: resources/[^/]+
- - name: resource
- in: body
- required: true
- schema:
- type: object
- properties:
- uid:
- type: string
- description: The user defined id of the resource.
- createTime:
- type: string
- format: date-time
- readOnly: true
- filename:
- type: string
- content:
- type: string
- format: byte
- externalLink:
- type: string
- type:
- type: string
- size:
- type: string
- format: int64
- memo:
- type: string
- title: |-
- The related memo.
- Format: memos/{id}
- tags:
- - ResourceService
- /api/v1/{setting.name}:
- patch:
- summary: UpdateUserSetting updates the setting of a user.
- operationId: UserService_UpdateUserSetting
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiv1UserSetting'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: setting.name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+/setting
- - name: setting
- in: body
- required: true
- schema:
- type: object
- properties:
- locale:
- type: string
- description: The preferred locale of the user.
- appearance:
- type: string
- description: The preferred appearance of the user.
- memoVisibility:
- type: string
- description: The default visibility of the memo.
- required:
- - setting
- tags:
- - UserService
- /api/v1/{user.name}:
- patch:
- summary: UpdateUser updates a user.
- operationId: UserService_UpdateUser
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/v1User'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: user.name
- description: |-
- The name of the user.
- Format: users/{user}. {user} is a system-generated auto-increment id.
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- - name: user
- in: body
- required: true
- schema:
- type: object
- properties:
- role:
- $ref: '#/definitions/UserRole'
- username:
- type: string
- email:
- type: string
- nickname:
- type: string
- avatarUrl:
- type: string
- description:
- type: string
- password:
- type: string
- state:
- $ref: '#/definitions/v1State'
- createTime:
- type: string
- format: date-time
- updateTime:
- type: string
- format: date-time
- required:
- - user
- tags:
- - UserService
- /file/{name}/avatar:
- get:
- summary: GetUserAvatarBinary gets the avatar of a user.
- operationId: UserService_GetUserAvatarBinary
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiHttpBody'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the user.
- Format: users/{user}
- in: path
- required: true
- type: string
- pattern: users/[^/]+
- - name: httpBody.contentType
- description: The HTTP Content-Type header value specifying the content type of the body.
- in: query
- required: false
- type: string
- - name: httpBody.data
- description: The HTTP request/response body as raw binary.
- in: query
- required: false
- type: string
- format: byte
- tags:
- - UserService
- /file/{name}/{filename}:
- get:
- summary: GetResourceBinary returns a resource binary by name.
- operationId: ResourceService_GetResourceBinary
- responses:
- "200":
- description: A successful response.
- schema:
- $ref: '#/definitions/apiHttpBody'
- default:
- description: An unexpected error response.
- schema:
- $ref: '#/definitions/googlerpcStatus'
- parameters:
- - name: name
- description: |-
- The name of the resource.
- Format: resources/{id}
- id is the system generated unique identifier.
- in: path
- required: true
- type: string
- pattern: resources/[^/]+
- - name: filename
- description: The filename of the resource. Mainly used for downloading.
- in: path
- required: true
- type: string
- - name: thumbnail
- description: A flag indicating if the thumbnail version of the resource should be returned
- in: query
- required: false
- type: boolean
- tags:
- - ResourceService
- definitions:
- ListNodeKind:
- type: string
- enum:
- - KIND_UNSPECIFIED
- - ORDERED
- - UNORDERED
- - DESCRIPTION
- default: KIND_UNSPECIFIED
- MemoServiceRenameMemoTagBody:
- type: object
- properties:
- oldTag:
- type: string
- newTag:
- type: string
- MemoServiceSetMemoRelationsBody:
- type: object
- properties:
- relations:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1MemoRelation'
- MemoServiceSetMemoResourcesBody:
- type: object
- properties:
- resources:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Resource'
- MemoServiceUpsertMemoReactionBody:
- type: object
- properties:
- reaction:
- $ref: '#/definitions/v1Reaction'
- TableNodeRow:
- type: object
- properties:
- cells:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- UserRole:
- type: string
- enum:
- - ROLE_UNSPECIFIED
- - HOST
- - ADMIN
- - USER
- default: ROLE_UNSPECIFIED
- UserServiceCreateUserAccessTokenBody:
- type: object
- properties:
- description:
- type: string
- expiresAt:
- type: string
- format: date-time
- UserStatsMemoTypeStats:
- type: object
- properties:
- linkCount:
- type: integer
- format: int32
- codeCount:
- type: integer
- format: int32
- todoCount:
- type: integer
- format: int32
- undoCount:
- type: integer
- format: int32
- WorkspaceStorageSettingS3Config:
- type: object
- properties:
- accessKeyId:
- type: string
- accessKeySecret:
- type: string
- endpoint:
- type: string
- region:
- type: string
- bucket:
- type: string
- usePathStyle:
- type: boolean
- title: 'Reference: https://developers.cloudflare.com/r2/examples/aws/aws-sdk-go/'
- apiHttpBody:
- type: object
- properties:
- contentType:
- type: string
- description: The HTTP Content-Type header value specifying the content type of the body.
- data:
- type: string
- format: byte
- description: The HTTP request/response body as raw binary.
- extensions:
- type: array
- items:
- type: object
- $ref: '#/definitions/protobufAny'
- description: |-
- Application specific response metadata. Must be set in the first response
- for streaming APIs.
- description: |-
- Message that represents an arbitrary HTTP body. It should only be used for
- payload formats that can't be represented as JSON, such as raw binary or
- an HTML page.
- This message can be used both in streaming and non-streaming API methods in
- the request as well as the response.
- It can be used as a top-level request field, which is convenient if one
- wants to extract parameters from either the URL or HTTP template into the
- request fields and also want access to the raw HTTP body.
- Example:
- message GetResourceRequest {
- // A unique request id.
- string request_id = 1;
- // The raw HTTP body is bound to this field.
- google.api.HttpBody http_body = 2;
- }
- service ResourceService {
- rpc GetResource(GetResourceRequest)
- returns (google.api.HttpBody);
- rpc UpdateResource(google.api.HttpBody)
- returns (google.protobuf.Empty);
- }
- Example with streaming methods:
- service CaldavService {
- rpc GetCalendar(stream google.api.HttpBody)
- returns (stream google.api.HttpBody);
- rpc UpdateCalendar(stream google.api.HttpBody)
- returns (stream google.api.HttpBody);
- }
- Use of this type only changes how the request and response bodies are
- handled, all other features will continue to work unchanged.
- apiv1ActivityMemoCommentPayload:
- type: object
- properties:
- memo:
- type: string
- description: |-
- The memo name of comment.
- Refer to `Memo.name`.
- relatedMemo:
- type: string
- description: The name of related memo.
- description: ActivityMemoCommentPayload represents the payload of a memo comment activity.
- apiv1ActivityPayload:
- type: object
- properties:
- memoComment:
- $ref: '#/definitions/apiv1ActivityMemoCommentPayload'
- versionUpdate:
- $ref: '#/definitions/apiv1ActivityVersionUpdatePayload'
- apiv1ActivityVersionUpdatePayload:
- type: object
- properties:
- version:
- type: string
- description: The updated version of memos.
- apiv1FieldMapping:
- type: object
- properties:
- identifier:
- type: string
- displayName:
- type: string
- email:
- type: string
- apiv1IdentityProvider:
- type: object
- properties:
- name:
- type: string
- title: |-
- The name of the identityProvider.
- Format: identityProviders/{id}
- type:
- $ref: '#/definitions/apiv1IdentityProviderType'
- title:
- type: string
- identifierFilter:
- type: string
- config:
- $ref: '#/definitions/apiv1IdentityProviderConfig'
- apiv1IdentityProviderConfig:
- type: object
- properties:
- oauth2Config:
- $ref: '#/definitions/apiv1OAuth2Config'
- apiv1IdentityProviderType:
- type: string
- enum:
- - TYPE_UNSPECIFIED
- - OAUTH2
- default: TYPE_UNSPECIFIED
- apiv1Location:
- type: object
- properties:
- placeholder:
- type: string
- latitude:
- type: number
- format: double
- longitude:
- type: number
- format: double
- apiv1Memo:
- type: object
- properties:
- name:
- type: string
- description: |-
- The name of the memo.
- Format: memos/{id}
- id is the system generated id.
- readOnly: true
- uid:
- type: string
- description: The user defined id of the memo.
- state:
- $ref: '#/definitions/v1State'
- creator:
- type: string
- title: |-
- The name of the creator.
- Format: users/{user}
- createTime:
- type: string
- format: date-time
- updateTime:
- type: string
- format: date-time
- displayTime:
- type: string
- format: date-time
- content:
- type: string
- nodes:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- readOnly: true
- visibility:
- $ref: '#/definitions/v1Visibility'
- tags:
- type: array
- items:
- type: string
- readOnly: true
- pinned:
- type: boolean
- resources:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Resource'
- relations:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1MemoRelation'
- reactions:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Reaction'
- readOnly: true
- property:
- $ref: '#/definitions/v1MemoProperty'
- readOnly: true
- parent:
- type: string
- title: |-
- The name of the parent memo.
- Format: memos/{id}
- readOnly: true
- snippet:
- type: string
- description: The snippet of the memo content. Plain text only.
- readOnly: true
- location:
- $ref: '#/definitions/apiv1Location'
- description: The location of the memo.
- apiv1OAuth2Config:
- type: object
- properties:
- clientId:
- type: string
- clientSecret:
- type: string
- authUrl:
- type: string
- tokenUrl:
- type: string
- userInfoUrl:
- type: string
- scopes:
- type: array
- items:
- type: string
- fieldMapping:
- $ref: '#/definitions/apiv1FieldMapping'
- apiv1UserSetting:
- type: object
- properties:
- name:
- type: string
- title: |-
- The name of the user.
- Format: users/{user}
- locale:
- type: string
- description: The preferred locale of the user.
- appearance:
- type: string
- description: The preferred appearance of the user.
- memoVisibility:
- type: string
- description: The default visibility of the memo.
- apiv1WorkspaceCustomProfile:
- type: object
- properties:
- title:
- type: string
- description:
- type: string
- logoUrl:
- type: string
- locale:
- type: string
- appearance:
- type: string
- apiv1WorkspaceGeneralSetting:
- type: object
- properties:
- disallowUserRegistration:
- type: boolean
- description: disallow_user_registration disallows user registration.
- disallowPasswordAuth:
- type: boolean
- description: disallow_password_auth disallows password authentication.
- additionalScript:
- type: string
- description: additional_script is the additional script.
- additionalStyle:
- type: string
- description: additional_style is the additional style.
- customProfile:
- $ref: '#/definitions/apiv1WorkspaceCustomProfile'
- description: custom_profile is the custom profile.
- weekStartDayOffset:
- type: integer
- format: int32
- description: |-
- week_start_day_offset is the week start day offset from Sunday.
- 0: Sunday, 1: Monday, 2: Tuesday, 3: Wednesday, 4: Thursday, 5: Friday, 6: Saturday
- Default is Sunday.
- disallowChangeUsername:
- type: boolean
- description: disallow_change_username disallows changing username.
- disallowChangeNickname:
- type: boolean
- description: disallow_change_nickname disallows changing nickname.
- apiv1WorkspaceMemoRelatedSetting:
- type: object
- properties:
- disallowPublicVisibility:
- type: boolean
- description: disallow_public_visibility disallows set memo as public visibility.
- displayWithUpdateTime:
- type: boolean
- description: display_with_update_time orders and displays memo with update time.
- contentLengthLimit:
- type: integer
- format: int32
- description: content_length_limit is the limit of content length. Unit is byte.
- enableAutoCompact:
- type: boolean
- description: enable_auto_compact enables auto compact for large content.
- enableDoubleClickEdit:
- type: boolean
- description: enable_double_click_edit enables editing on double click.
- enableLinkPreview:
- type: boolean
- description: enable_link_preview enables links preview.
- enableComment:
- type: boolean
- description: enable_comment enables comment.
- enableLocation:
- type: boolean
- description: enable_location enables setting location for memo.
- defaultVisibility:
- type: string
- description: default_visibility set the global memos default visibility.
- reactions:
- type: array
- items:
- type: string
- description: reactions is the list of reactions.
- disableMarkdownShortcuts:
- type: boolean
- description: disable_markdown_shortcuts disallow the registration of markdown shortcuts.
- apiv1WorkspaceSetting:
- type: object
- properties:
- name:
- type: string
- title: |-
- name is the name of the setting.
- Format: settings/{setting}
- generalSetting:
- $ref: '#/definitions/apiv1WorkspaceGeneralSetting'
- storageSetting:
- $ref: '#/definitions/apiv1WorkspaceStorageSetting'
- memoRelatedSetting:
- $ref: '#/definitions/apiv1WorkspaceMemoRelatedSetting'
- apiv1WorkspaceStorageSetting:
- type: object
- properties:
- storageType:
- $ref: '#/definitions/apiv1WorkspaceStorageSettingStorageType'
- description: storage_type is the storage type.
- filepathTemplate:
- type: string
- title: |-
- The template of file path.
- e.g. assets/{timestamp}_{filename}
- uploadSizeLimitMb:
- type: string
- format: int64
- description: The max upload size in megabytes.
- s3Config:
- $ref: '#/definitions/WorkspaceStorageSettingS3Config'
- description: The S3 config.
- apiv1WorkspaceStorageSettingStorageType:
- type: string
- enum:
- - STORAGE_TYPE_UNSPECIFIED
- - DATABASE
- - LOCAL
- - S3
- default: STORAGE_TYPE_UNSPECIFIED
- description: |2-
- - DATABASE: DATABASE is the database storage type.
- - LOCAL: LOCAL is the local storage type.
- - S3: S3 is the S3 storage type.
- googlerpcStatus:
- type: object
- properties:
- code:
- type: integer
- format: int32
- message:
- type: string
- details:
- type: array
- items:
- type: object
- $ref: '#/definitions/protobufAny'
- protobufAny:
- type: object
- properties:
- '@type':
- type: string
- description: |-
- A URL/resource name that uniquely identifies the type of the serialized
- protocol buffer message. This string must contain at least
- one "/" character. The last segment of the URL's path must represent
- the fully qualified name of the type (as in
- `path/google.protobuf.Duration`). The name should be in a canonical form
- (e.g., leading "." is not accepted).
- In practice, teams usually precompile into the binary all types that they
- expect it to use in the context of Any. However, for URLs which use the
- scheme `http`, `https`, or no scheme, one can optionally set up a type
- server that maps type URLs to message definitions as follows:
- * If no scheme is provided, `https` is assumed.
- * An HTTP GET on the URL must yield a [google.protobuf.Type][]
- value in binary format, or produce an error.
- * Applications are allowed to cache lookup results based on the
- URL, or have them precompiled into a binary to avoid any
- lookup. Therefore, binary compatibility needs to be preserved
- on changes to types. (Use versioned type names to manage
- breaking changes.)
- Note: this functionality is not currently available in the official
- protobuf release, and it is not used for type URLs beginning with
- type.googleapis.com. As of May 2023, there are no widely used type server
- implementations and no plans to implement one.
- Schemes other than `http`, `https` (or the empty scheme) might be
- used with implementation specific semantics.
- additionalProperties: {}
- description: |-
- `Any` contains an arbitrary serialized protocol buffer message along with a
- URL that describes the type of the serialized message.
- Protobuf library provides support to pack/unpack Any values in the form
- of utility functions or additional generated methods of the Any type.
- Example 1: Pack and unpack a message in C++.
- Foo foo = ...;
- Any any;
- any.PackFrom(foo);
- ...
- if (any.UnpackTo(&foo)) {
- ...
- }
- Example 2: Pack and unpack a message in Java.
- Foo foo = ...;
- Any any = Any.pack(foo);
- ...
- if (any.is(Foo.class)) {
- foo = any.unpack(Foo.class);
- }
- // or ...
- if (any.isSameTypeAs(Foo.getDefaultInstance())) {
- foo = any.unpack(Foo.getDefaultInstance());
- }
- Example 3: Pack and unpack a message in Python.
- foo = Foo(...)
- any = Any()
- any.Pack(foo)
- ...
- if any.Is(Foo.DESCRIPTOR):
- any.Unpack(foo)
- ...
- Example 4: Pack and unpack a message in Go
- foo := &pb.Foo{...}
- any, err := anypb.New(foo)
- if err != nil {
- ...
- }
- ...
- foo := &pb.Foo{}
- if err := any.UnmarshalTo(foo); err != nil {
- ...
- }
- The pack methods provided by protobuf library will by default use
- 'type.googleapis.com/full.type.name' as the type URL and the unpack
- methods only use the fully qualified type name after the last '/'
- in the type URL, for example "foo.bar.com/x/y.z" will yield type
- name "y.z".
- JSON
- ====
- The JSON representation of an `Any` value uses the regular
- representation of the deserialized, embedded message, with an
- additional field `@type` which contains the type URL. Example:
- package google.profile;
- message Person {
- string first_name = 1;
- string last_name = 2;
- }
- {
- "@type": "type.googleapis.com/google.profile.Person",
- "firstName": <string>,
- "lastName": <string>
- }
- If the embedded message type is well-known and has a custom JSON
- representation, that representation will be embedded adding a field
- `value` which holds the custom JSON in addition to the `@type`
- field. Example (for message [google.protobuf.Duration][]):
- {
- "@type": "type.googleapis.com/google.protobuf.Duration",
- "value": "1.212s"
- }
- v1Activity:
- type: object
- properties:
- name:
- type: string
- title: |-
- The name of the activity.
- Format: activities/{id}
- creator:
- type: string
- title: |-
- The name of the creator.
- Format: users/{user}
- type:
- type: string
- description: The type of the activity.
- level:
- type: string
- description: The level of the activity.
- createTime:
- type: string
- format: date-time
- description: The create time of the activity.
- readOnly: true
- payload:
- $ref: '#/definitions/apiv1ActivityPayload'
- description: The payload of the activity.
- v1AutoLinkNode:
- type: object
- properties:
- url:
- type: string
- isRawText:
- type: boolean
- v1BlockquoteNode:
- type: object
- properties:
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1BoldItalicNode:
- type: object
- properties:
- symbol:
- type: string
- content:
- type: string
- v1BoldNode:
- type: object
- properties:
- symbol:
- type: string
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1CodeBlockNode:
- type: object
- properties:
- language:
- type: string
- content:
- type: string
- v1CodeNode:
- type: object
- properties:
- content:
- type: string
- v1CreateMemoRequest:
- type: object
- properties:
- content:
- type: string
- visibility:
- $ref: '#/definitions/v1Visibility'
- resources:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Resource'
- relations:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1MemoRelation'
- location:
- $ref: '#/definitions/apiv1Location'
- v1CreateWebhookRequest:
- type: object
- properties:
- name:
- type: string
- url:
- type: string
- v1EmbeddedContentNode:
- type: object
- properties:
- resourceName:
- type: string
- params:
- type: string
- v1EscapingCharacterNode:
- type: object
- properties:
- symbol:
- type: string
- v1HTMLElementNode:
- type: object
- properties:
- tagName:
- type: string
- attributes:
- type: object
- additionalProperties:
- type: string
- v1HeadingNode:
- type: object
- properties:
- level:
- type: integer
- format: int32
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1HighlightNode:
- type: object
- properties:
- content:
- type: string
- v1HorizontalRuleNode:
- type: object
- properties:
- symbol:
- type: string
- v1ImageNode:
- type: object
- properties:
- altText:
- type: string
- url:
- type: string
- v1Inbox:
- type: object
- properties:
- name:
- type: string
- title: |-
- The name of the inbox.
- Format: inboxes/{id}
- sender:
- type: string
- title: 'Format: users/{user}'
- receiver:
- type: string
- title: 'Format: users/{user}'
- status:
- $ref: '#/definitions/v1InboxStatus'
- createTime:
- type: string
- format: date-time
- type:
- $ref: '#/definitions/v1InboxType'
- activityId:
- type: integer
- format: int32
- v1InboxStatus:
- type: string
- enum:
- - STATUS_UNSPECIFIED
- - UNREAD
- - ARCHIVED
- default: STATUS_UNSPECIFIED
- v1InboxType:
- type: string
- enum:
- - TYPE_UNSPECIFIED
- - MEMO_COMMENT
- - VERSION_UPDATE
- default: TYPE_UNSPECIFIED
- v1ItalicNode:
- type: object
- properties:
- symbol:
- type: string
- content:
- type: string
- v1LineBreakNode:
- type: object
- v1LinkMetadata:
- type: object
- properties:
- title:
- type: string
- description:
- type: string
- image:
- type: string
- v1LinkNode:
- type: object
- properties:
- text:
- type: string
- url:
- type: string
- v1ListAllUserStatsResponse:
- type: object
- properties:
- userStats:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1UserStats'
- v1ListIdentityProvidersResponse:
- type: object
- properties:
- identityProviders:
- type: array
- items:
- type: object
- $ref: '#/definitions/apiv1IdentityProvider'
- v1ListInboxesResponse:
- type: object
- properties:
- inboxes:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Inbox'
- nextPageToken:
- type: string
- description: |-
- A token, which can be sent as `page_token` to retrieve the next page.
- If this field is omitted, there are no subsequent pages.
- v1ListMemoCommentsResponse:
- type: object
- properties:
- memos:
- type: array
- items:
- type: object
- $ref: '#/definitions/apiv1Memo'
- v1ListMemoReactionsResponse:
- type: object
- properties:
- reactions:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Reaction'
- v1ListMemoRelationsResponse:
- type: object
- properties:
- relations:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1MemoRelation'
- v1ListMemoResourcesResponse:
- type: object
- properties:
- resources:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Resource'
- v1ListMemosResponse:
- type: object
- properties:
- memos:
- type: array
- items:
- type: object
- $ref: '#/definitions/apiv1Memo'
- nextPageToken:
- type: string
- description: |-
- A token, which can be sent as `page_token` to retrieve the next page.
- If this field is omitted, there are no subsequent pages.
- v1ListNode:
- type: object
- properties:
- kind:
- $ref: '#/definitions/ListNodeKind'
- indent:
- type: integer
- format: int32
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1ListResourcesResponse:
- type: object
- properties:
- resources:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Resource'
- v1ListUserAccessTokensResponse:
- type: object
- properties:
- accessTokens:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1UserAccessToken'
- v1ListUsersResponse:
- type: object
- properties:
- users:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1User'
- v1ListWebhooksResponse:
- type: object
- properties:
- webhooks:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Webhook'
- v1MathBlockNode:
- type: object
- properties:
- content:
- type: string
- v1MathNode:
- type: object
- properties:
- content:
- type: string
- v1MemoProperty:
- type: object
- properties:
- hasLink:
- type: boolean
- hasTaskList:
- type: boolean
- hasCode:
- type: boolean
- hasIncompleteTasks:
- type: boolean
- v1MemoRelation:
- type: object
- properties:
- memo:
- $ref: '#/definitions/v1MemoRelationMemo'
- title: |-
- The name of memo.
- Format: "memos/{id}"
- relatedMemo:
- $ref: '#/definitions/v1MemoRelationMemo'
- title: |-
- The name of related memo.
- Format: "memos/{id}"
- type:
- $ref: '#/definitions/v1MemoRelationType'
- v1MemoRelationMemo:
- type: object
- properties:
- name:
- type: string
- title: |-
- The name of the memo.
- Format: memos/{id}
- uid:
- type: string
- snippet:
- type: string
- description: The snippet of the memo content. Plain text only.
- readOnly: true
- v1MemoRelationType:
- type: string
- enum:
- - TYPE_UNSPECIFIED
- - REFERENCE
- - COMMENT
- default: TYPE_UNSPECIFIED
- v1Node:
- type: object
- properties:
- type:
- $ref: '#/definitions/v1NodeType'
- lineBreakNode:
- $ref: '#/definitions/v1LineBreakNode'
- description: Block nodes.
- paragraphNode:
- $ref: '#/definitions/v1ParagraphNode'
- codeBlockNode:
- $ref: '#/definitions/v1CodeBlockNode'
- headingNode:
- $ref: '#/definitions/v1HeadingNode'
- horizontalRuleNode:
- $ref: '#/definitions/v1HorizontalRuleNode'
- blockquoteNode:
- $ref: '#/definitions/v1BlockquoteNode'
- listNode:
- $ref: '#/definitions/v1ListNode'
- orderedListItemNode:
- $ref: '#/definitions/v1OrderedListItemNode'
- unorderedListItemNode:
- $ref: '#/definitions/v1UnorderedListItemNode'
- taskListItemNode:
- $ref: '#/definitions/v1TaskListItemNode'
- mathBlockNode:
- $ref: '#/definitions/v1MathBlockNode'
- tableNode:
- $ref: '#/definitions/v1TableNode'
- embeddedContentNode:
- $ref: '#/definitions/v1EmbeddedContentNode'
- textNode:
- $ref: '#/definitions/v1TextNode'
- description: Inline nodes.
- boldNode:
- $ref: '#/definitions/v1BoldNode'
- italicNode:
- $ref: '#/definitions/v1ItalicNode'
- boldItalicNode:
- $ref: '#/definitions/v1BoldItalicNode'
- codeNode:
- $ref: '#/definitions/v1CodeNode'
- imageNode:
- $ref: '#/definitions/v1ImageNode'
- linkNode:
- $ref: '#/definitions/v1LinkNode'
- autoLinkNode:
- $ref: '#/definitions/v1AutoLinkNode'
- tagNode:
- $ref: '#/definitions/v1TagNode'
- strikethroughNode:
- $ref: '#/definitions/v1StrikethroughNode'
- escapingCharacterNode:
- $ref: '#/definitions/v1EscapingCharacterNode'
- mathNode:
- $ref: '#/definitions/v1MathNode'
- highlightNode:
- $ref: '#/definitions/v1HighlightNode'
- subscriptNode:
- $ref: '#/definitions/v1SubscriptNode'
- superscriptNode:
- $ref: '#/definitions/v1SuperscriptNode'
- referencedContentNode:
- $ref: '#/definitions/v1ReferencedContentNode'
- spoilerNode:
- $ref: '#/definitions/v1SpoilerNode'
- htmlElementNode:
- $ref: '#/definitions/v1HTMLElementNode'
- v1NodeType:
- type: string
- enum:
- - NODE_UNSPECIFIED
- - LINE_BREAK
- - PARAGRAPH
- - CODE_BLOCK
- - HEADING
- - HORIZONTAL_RULE
- - BLOCKQUOTE
- - LIST
- - ORDERED_LIST_ITEM
- - UNORDERED_LIST_ITEM
- - TASK_LIST_ITEM
- - MATH_BLOCK
- - TABLE
- - EMBEDDED_CONTENT
- - TEXT
- - BOLD
- - ITALIC
- - BOLD_ITALIC
- - CODE
- - IMAGE
- - LINK
- - AUTO_LINK
- - TAG
- - STRIKETHROUGH
- - ESCAPING_CHARACTER
- - MATH
- - HIGHLIGHT
- - SUBSCRIPT
- - SUPERSCRIPT
- - REFERENCED_CONTENT
- - SPOILER
- - HTML_ELEMENT
- default: NODE_UNSPECIFIED
- description: |2-
- - LINE_BREAK: Block nodes.
- - TEXT: Inline nodes.
- v1OrderedListItemNode:
- type: object
- properties:
- number:
- type: string
- indent:
- type: integer
- format: int32
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1ParagraphNode:
- type: object
- properties:
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1ParseMarkdownRequest:
- type: object
- properties:
- markdown:
- type: string
- v1ParseMarkdownResponse:
- type: object
- properties:
- nodes:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1Reaction:
- type: object
- properties:
- id:
- type: integer
- format: int32
- creator:
- type: string
- title: |-
- The name of the creator.
- Format: users/{user}
- contentId:
- type: string
- description: |-
- The content identifier.
- For memo, it should be the `Memo.name`.
- reactionType:
- type: string
- v1ReferencedContentNode:
- type: object
- properties:
- resourceName:
- type: string
- params:
- type: string
- v1Resource:
- type: object
- properties:
- name:
- type: string
- description: |-
- The name of the resource.
- Format: resources/{id}
- id is the system generated unique identifier.
- uid:
- type: string
- description: The user defined id of the resource.
- createTime:
- type: string
- format: date-time
- readOnly: true
- filename:
- type: string
- content:
- type: string
- format: byte
- externalLink:
- type: string
- type:
- type: string
- size:
- type: string
- format: int64
- memo:
- type: string
- title: |-
- The related memo.
- Format: memos/{id}
- v1RestoreMarkdownNodesRequest:
- type: object
- properties:
- nodes:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1RestoreMarkdownNodesResponse:
- type: object
- properties:
- markdown:
- type: string
- v1SearchUsersResponse:
- type: object
- properties:
- users:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1User'
- v1SpoilerNode:
- type: object
- properties:
- content:
- type: string
- v1State:
- type: string
- enum:
- - STATE_UNSPECIFIED
- - NORMAL
- - ARCHIVED
- default: STATE_UNSPECIFIED
- v1StrikethroughNode:
- type: object
- properties:
- content:
- type: string
- v1StringifyMarkdownNodesRequest:
- type: object
- properties:
- nodes:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1StringifyMarkdownNodesResponse:
- type: object
- properties:
- plainText:
- type: string
- v1SubscriptNode:
- type: object
- properties:
- content:
- type: string
- v1SuperscriptNode:
- type: object
- properties:
- content:
- type: string
- v1TableNode:
- type: object
- properties:
- header:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- delimiter:
- type: array
- items:
- type: string
- rows:
- type: array
- items:
- type: object
- $ref: '#/definitions/TableNodeRow'
- v1TagNode:
- type: object
- properties:
- content:
- type: string
- v1TaskListItemNode:
- type: object
- properties:
- symbol:
- type: string
- indent:
- type: integer
- format: int32
- complete:
- type: boolean
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1TextNode:
- type: object
- properties:
- content:
- type: string
- v1UnorderedListItemNode:
- type: object
- properties:
- symbol:
- type: string
- indent:
- type: integer
- format: int32
- children:
- type: array
- items:
- type: object
- $ref: '#/definitions/v1Node'
- v1User:
- type: object
- properties:
- name:
- type: string
- description: |-
- The name of the user.
- Format: users/{user}. {user} is a system-generated auto-increment id.
- role:
- $ref: '#/definitions/UserRole'
- username:
- type: string
- email:
- type: string
- nickname:
- type: string
- avatarUrl:
- type: string
- description:
- type: string
- password:
- type: string
- state:
- $ref: '#/definitions/v1State'
- createTime:
- type: string
- format: date-time
- updateTime:
- type: string
- format: date-time
- v1UserAccessToken:
- type: object
- properties:
- accessToken:
- type: string
- description:
- type: string
- issuedAt:
- type: string
- format: date-time
- expiresAt:
- type: string
- format: date-time
- v1UserStats:
- type: object
- properties:
- name:
- type: string
- title: |-
- The name of the user.
- Format: users/{user}
- memoDisplayTimestamps:
- type: array
- items:
- type: string
- format: date-time
- description: |-
- The timestamps when the memos were displayed.
- We should return raw data to the client, and let the client format the data with the user's timezone.
- memoTypeStats:
- $ref: '#/definitions/UserStatsMemoTypeStats'
- description: The stats of memo types.
- tagCount:
- type: object
- additionalProperties:
- type: integer
- format: int32
- title: |-
- The count of tags.
- Format: "tag1": 1, "tag2": 2
- v1Visibility:
- type: string
- enum:
- - VISIBILITY_UNSPECIFIED
- - PRIVATE
- - PROTECTED
- - PUBLIC
- default: VISIBILITY_UNSPECIFIED
- v1Webhook:
- type: object
- properties:
- id:
- type: integer
- format: int32
- creator:
- type: string
- title: |-
- The name of the creator.
- Format: users/{user}
- createTime:
- type: string
- format: date-time
- updateTime:
- type: string
- format: date-time
- name:
- type: string
- url:
- type: string
- v1WorkspaceProfile:
- type: object
- properties:
- owner:
- type: string
- title: |-
- The name of instance owner.
- Format: users/{user}
- version:
- type: string
- title: version is the current version of instance
- mode:
- type: string
- description: mode is the instance mode (e.g. "prod", "dev" or "demo").
- instanceUrl:
- type: string
- description: instance_url is the URL of the instance.
|