Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"base-exception-class-name": "CloudPDFException",
"base-api-exception-class-name": "CloudPDFApiException"
},
"originGitCommit": "e5cd0731cb3a1f2ed5821f8d60191bd58934c3dd",
"originGitCommit": "31a712963c171ce9ebd6815e873c9895e389afc2",
"originGitCommitIsDirty": false,
"invokedBy": "ci",
"requestedVersion": "3.0.0-next.9",
"requestedVersion": "3.0.0-next.10",
"ciProvider": "github",
"sdkVersion": "3.0.0-next.9"
"sdkVersion": "3.0.0-next.10"
}
8 changes: 4 additions & 4 deletions cloudpdf-generation.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"language": "csharp",
"canonicalVersion": "3.0.0-next.9",
"sdkVersion": "3.0.0-next.9",
"canonicalVersion": "3.0.0-next.10",
"sdkVersion": "3.0.0-next.10",
"source": {
"repository": "embedpdf/embed-pdf-viewer",
"openapi": "cloudpdf/contract/openapi.json",
"openapiSha256": "4ee27900dbb0b13408ce00a0e80d606444ab81e9d5a76186fa984c8c8dfe09fe",
"gitCommit": "e5cd0731cb3a1f2ed5821f8d60191bd58934c3dd",
"openapiSha256": "9d6c7cdd459982ba9e718a3842c969003b466e3fd73883fef7783dc78e12cdfe",
"gitCommit": "31a712963c171ce9ebd6815e873c9895e389afc2",
"gitCommitIsDirty": false
},
"fern": {
Expand Down
56 changes: 56 additions & 0 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,62 @@ await client.Tokens.RevokeAsync(new TokensRevokeRequest { TenantId = "tenantId",
</details>

## Doc Annotations
<details><summary><code>client.Doc.Annotations.<a href="/src/CloudPDF/Doc/Annotations/AnnotationsClient.cs">ListAllAsync</a>(ListAllAnnotationsRequest { ... }) -> WithRawResponseTask&lt;DocAnnotationsListAll200Response&gt;</code></summary>
<dl>
<dd>

#### 📝 Description

<dl>
<dd>

<dl>
<dd>

Returns one entry per page plus the audit-log cursor for reconciling subsequent document events. Page order is unspecified; join by `pageState.pageObjectNumber` when display order matters.
</dd>
</dl>
</dd>
</dl>

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```csharp
await client.Doc.Annotations.ListAllAsync(
new ListAllAnnotationsRequest { DocId = "docId", LayerName = "layerName" }
);
```
</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**request:** `ListAllAnnotationsRequest`

</dd>
</dl>
</dd>
</dl>


</dd>
</dl>
</details>

<details><summary><code>client.Doc.Annotations.<a href="/src/CloudPDF/Doc/Annotations/AnnotationsClient.cs">ListAsync</a>(ListAnnotationsRequest { ... }) -> WithRawResponseTask&lt;DocAnnotationsList200Response&gt;</code></summary>
<dl>
<dd>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public async Task MockServerTest_1()
"cacheDelta": {
"previousDocVersion": 1,
"docVersion": 1,
"annotationsVersion": 1,
"pages": [
{
"pageObjectNumber": 1,
Expand Down Expand Up @@ -133,6 +134,7 @@ public async Task MockServerTest_2()
"cacheDelta": {
"previousDocVersion": 1,
"docVersion": 1,
"annotationsVersion": 1,
"pages": [
{
"pageObjectNumber": 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public async Task MockServerTest_1()
"cacheDelta": {
"previousDocVersion": 1,
"docVersion": 1,
"annotationsVersion": 1,
"pages": [
{
"pageObjectNumber": 1,
Expand Down Expand Up @@ -111,6 +112,7 @@ public async Task MockServerTest_2()
"cacheDelta": {
"previousDocVersion": 1,
"docVersion": 1,
"annotationsVersion": 1,
"pages": [
{
"pageObjectNumber": 1,
Expand Down
Loading
Loading