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
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"client_class_name": "CloudPDFClient",
"environment_class_name": "CloudPDFEnvironment"
},
"originGitCommit": "31a712963c171ce9ebd6815e873c9895e389afc2",
"originGitCommit": "08782e4eef6cd6ccce4b6a6883408d9915a2d7c4",
"originGitCommitIsDirty": false,
"invokedBy": "ci",
"requestedVersion": "3.0.0a10",
"requestedVersion": "3.0.0a11",
"ciProvider": "github"
}
8 changes: 4 additions & 4 deletions cloudpdf-generation.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"language": "python",
"canonicalVersion": "3.0.0-next.10",
"sdkVersion": "3.0.0a10",
"canonicalVersion": "3.0.0-next.11",
"sdkVersion": "3.0.0a11",
"source": {
"repository": "embedpdf/embed-pdf-viewer",
"openapi": "cloudpdf/contract/openapi.json",
"openapiSha256": "9d6c7cdd459982ba9e718a3842c969003b466e3fd73883fef7783dc78e12cdfe",
"gitCommit": "31a712963c171ce9ebd6815e873c9895e389afc2",
"openapiSha256": "7bc0eea37724b3e359b0437edc3102b137e3d3f499293c89bb2b3293c6e3b614",
"gitCommit": "08782e4eef6cd6ccce4b6a6883408d9915a2d7c4",
"gitCommitIsDirty": false
},
"fern": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "cloudpdf"
version = "3.0.0a10"
version = "3.0.0a11"
description = "The official Python SDK for the CloudPDF API."
readme = "README.md"
authors = ["CloudPDF <hello@cloudpdf.com>"]
Expand Down
5,856 changes: 216 additions & 5,640 deletions src/cloudpdf/__init__.py

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/cloudpdf/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ def get_headers(self) -> typing.Dict[str, str]:
import platform

headers: typing.Dict[str, str] = {
"User-Agent": "cloudpdf/3.0.0a10",
"User-Agent": "cloudpdf/3.0.0a11",
"X-Fern-Language": "Python",
"X-Fern-Runtime": f"python/{platform.python_version()}",
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
"X-Fern-SDK-Name": "cloudpdf",
"X-Fern-SDK-Version": "3.0.0a10",
"X-Fern-SDK-Version": "3.0.0a11",
**(self.get_custom_headers() or {}),
}
token = self._get_token()
Expand Down
10,070 changes: 467 additions & 9,603 deletions src/cloudpdf/types/__init__.py

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
import typing_extensions
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
from ..core.serialization import FieldMetadata
from .doc_annotations_list200response_annotations_item_caret_actions import (
DocAnnotationsList200ResponseAnnotationsItemCaretActions,
)
from .doc_annotations_list200response_annotations_item_caret_blend_mode import (
DocAnnotationsList200ResponseAnnotationsItemCaretBlendMode,
)
Expand Down Expand Up @@ -43,6 +40,7 @@
from .doc_annotations_list200response_annotations_item_caret_unrotated_rect import (
DocAnnotationsList200ResponseAnnotationsItemCaretUnrotatedRect,
)
from .pdf_annotation_actions import PdfAnnotationActions


class DocAnnotationsList200ResponseAnnotationsItemCaret(UniversalBaseModel):
Expand Down Expand Up @@ -91,7 +89,7 @@ class DocAnnotationsList200ResponseAnnotationsItemCaret(UniversalBaseModel):
updated_by: typing_extensions.Annotated[
typing.Optional[str], FieldMetadata(alias="updatedBy"), pydantic.Field(alias="updatedBy")
] = None
actions: typing.Optional[DocAnnotationsList200ResponseAnnotationsItemCaretActions] = None
actions: typing.Optional[PdfAnnotationActions] = None
color: DocAnnotationsList200ResponseAnnotationsItemCaretColor
opacity: float
intent: typing.Optional[DocAnnotationsList200ResponseAnnotationsItemCaretIntent] = None
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading