notionary 0.4.2__tar.gz → 0.4.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {notionary-0.4.2 → notionary-0.4.3}/PKG-INFO +1 -1
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/properties/client.py +1 -3
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/models/icon.py +1 -1
- {notionary-0.4.2 → notionary-0.4.3}/pyproject.toml +76 -76
- {notionary-0.4.2 → notionary-0.4.3}/.gitignore +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/LICENSE +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/README.md +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/enums.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/markdown_rich_text_converter.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/data_source.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/database.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/page.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/person.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/port.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/rich_text_markdown_converter.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/rich_text_patterns.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/comments/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/comments/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/comments/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/comments/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/comments/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/comments/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/http/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/http/data_source_instance_client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/properties/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/query/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/query/builder.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/query/resolver.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/query/schema.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/query/validator.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/schema/registry.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/schema/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/database/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/database/database_metadata_update_client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/database/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/database/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/api.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/base.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/block_parsing.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/data_source/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/data_source/builder.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/data_source/properties.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/file_upload.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/properties.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/exceptions/search.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/config/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/config/config.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/config/constants.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/file/reader.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/query/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/query/builder.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/query/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/impl/file_name_length.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/port.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/file_exists.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/file_extension.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/file_name_length.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/upload_limit.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/http/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/http/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/builder.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/audio.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/base.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/bookmark.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/breadcrumb.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/bulleted_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/callout.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/code.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/columns.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/container.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/divider.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/embed.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/equation.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/file.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/heading.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/image.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/mixins/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/mixins/caption.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/numbered_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/paragraph.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/pdf.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/quote.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/space.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/table.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/table_of_contents.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/todo.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/toggle.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/video.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/structured_output/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/structured_output/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/structured_output/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/context.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/audio.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/base.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/bookmark.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/breadcrumb.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/bulleted_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/callout.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/caption.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/code.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/column.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/column_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/divider.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/embed.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/equation.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/file.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/file_like_block.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/heading.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/image.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/numbered_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/paragraph.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/pdf.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/quote.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/space.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/table.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/table_of_contents.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/todo.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/toggle.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/video.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/post_processing/handlers/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/post_processing/handlers/rich_text_length.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/post_processing/handlers/rich_text_length_truncation.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/post_processing/port.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/post_processing/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/column_syntax.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/indentation.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/port.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/video_syntax.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/whitespace.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/context.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/post_processing/handlers/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/post_processing/handlers/numbered_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/post_processing/port.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/post_processing/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/audio.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/base.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/bookmark.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/breadcrumb.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/bulleted_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/callout.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/captioned_block.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/code.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/column.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/column_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/divider.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/embed.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/equation.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/fallback.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/file.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/file_like_block.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/heading.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/image.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/numbered_list.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/paragraph.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/pdf.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/quote.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/table.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/table_of_contents.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/table_row.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/todo.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/toggle.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/video.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/definition/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/definition/grammar.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/definition/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/definition/registry.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/prompts/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/prompts/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/syntax/prompts/registry.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/page_http_client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/page_metadata_update_client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/properties/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/properties/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/properties/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/page/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/entity/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/entity/dto_parsers.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/entity/entity_metadata_update_client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/entity/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/entity/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/models/file.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/models/parent.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/properties/type.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/shared/typings.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/base.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/bot.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/factory.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/person.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/user/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/utils/date.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/utils/decorators.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/utils/fuzzy.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/utils/mixins/logging.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/utils/pagination.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/utils/uuid_utils.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/client.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/query/__init__.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/query/builder.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/query/models.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/query/service.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/schemas.py +0 -0
- {notionary-0.4.2 → notionary-0.4.3}/notionary/workspace/service.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: notionary
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: Python library for programmatic Notion workspace management - databases, pages, and content with advanced Markdown support
|
|
5
5
|
Project-URL: Homepage, https://github.com/mathisarends/notionary
|
|
6
6
|
Author-email: Mathis Arends <mathisarends27@gmail.com>
|
|
@@ -152,9 +152,7 @@ class PagePropertyHttpClient(NotionHttpClient):
|
|
|
152
152
|
select_option = SelectOption(name=str(value))
|
|
153
153
|
return PageSelectProperty(id=property_id, select=select_option)
|
|
154
154
|
elif property_type == PageMultiSelectProperty:
|
|
155
|
-
multi_select_options = [
|
|
156
|
-
SelectOption(id="", name=str(item)) for item in value
|
|
157
|
-
]
|
|
155
|
+
multi_select_options = [SelectOption(name=str(item)) for item in value]
|
|
158
156
|
return PageMultiSelectProperty(
|
|
159
157
|
id=property_id, multi_select=multi_select_options
|
|
160
158
|
)
|
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
name = "notionary"
|
|
3
|
-
version = "0.4.
|
|
4
|
-
description = "Python library for programmatic Notion workspace management - databases, pages, and content with advanced Markdown support"
|
|
5
|
-
authors = [{ name = "Mathis Arends", email = "mathisarends27@gmail.com" }]
|
|
6
|
-
requires-python = ">=3.12"
|
|
7
|
-
readme = "README.md"
|
|
8
|
-
license = { text = "MIT" }
|
|
9
|
-
dependencies = [
|
|
10
|
-
"httpx>=0.28.0",
|
|
11
|
-
"pydantic>=2.11.4",
|
|
12
|
-
"aiofiles>=24.1.0,<25.0.0",
|
|
13
|
-
"python-dotenv>=1.0.1,<2.0.0",
|
|
14
|
-
]
|
|
15
|
-
|
|
16
|
-
[project.urls]
|
|
17
|
-
Homepage = "https://github.com/mathisarends/notionary"
|
|
18
|
-
|
|
19
|
-
[build-system]
|
|
20
|
-
requires = ["hatchling"]
|
|
21
|
-
build-backend = "hatchling.build"
|
|
22
|
-
|
|
23
|
-
[tool.hatch.build.targets.sdist]
|
|
24
|
-
include = ["/notionary", "/README.md"]
|
|
25
|
-
|
|
26
|
-
[tool.hatch.build.targets.wheel]
|
|
27
|
-
packages = ["notionary"]
|
|
28
|
-
|
|
29
|
-
[dependency-groups]
|
|
30
|
-
dev = [
|
|
31
|
-
"mkdocs>=1.6.1,<2",
|
|
32
|
-
"mkdocs-material>=9.6.15,<10",
|
|
33
|
-
"black>=25.1.0,<26",
|
|
34
|
-
"pytest>=8.4.1,<9",
|
|
35
|
-
"pytest-asyncio>=1.1.0,<2",
|
|
36
|
-
"pytest-mock>=3.14.1,<4",
|
|
37
|
-
"pytest-cov>=6.2.1,<7",
|
|
38
|
-
"isort>=6.0.1,<7",
|
|
39
|
-
"mypy>=1.17.1,<2",
|
|
40
|
-
"ruff>=0.13.1",
|
|
41
|
-
"pre-commit>=4.3.0",
|
|
42
|
-
"twine>=6.0.0",
|
|
43
|
-
]
|
|
44
|
-
|
|
45
|
-
[tool.pytest.ini_options]
|
|
46
|
-
markers = [
|
|
47
|
-
"integration: marks tests as integration tests (potentially slow or network-dependent)",
|
|
48
|
-
]
|
|
49
|
-
|
|
50
|
-
[tool.ruff]
|
|
51
|
-
target-version = "py313"
|
|
52
|
-
line-length = 88
|
|
53
|
-
extend-exclude = [".venv", "dist", "build"]
|
|
54
|
-
|
|
55
|
-
[tool.ruff.lint]
|
|
56
|
-
select = ["E","F","I","UP","B","SIM","PL","RUF","C90"]
|
|
57
|
-
ignore = [
|
|
58
|
-
"E501", # line too long
|
|
59
|
-
"E402", # imports not at top of file
|
|
60
|
-
"PLC0415", # import should be at top-level
|
|
61
|
-
"PLR2004", # magic values
|
|
62
|
-
"PLR0911", # too many return statements
|
|
63
|
-
"PLR0912", # too many branches
|
|
64
|
-
"PLR0913", # too many arguments
|
|
65
|
-
"PLR0915", # too many statements
|
|
66
|
-
"C901", # function too complex
|
|
67
|
-
"RUF006", # create_task return value not stored
|
|
68
|
-
"PLW0603", # global statement
|
|
69
|
-
"PLW2901", # loop variable overwritten
|
|
70
|
-
"RUF001", # en dash, etc.
|
|
71
|
-
"UP046", # derive from generic base class
|
|
72
|
-
]
|
|
73
|
-
|
|
74
|
-
[tool.ruff.format]
|
|
75
|
-
quote-style = "double"
|
|
76
|
-
docstring-code-format = true
|
|
1
|
+
[project]
|
|
2
|
+
name = "notionary"
|
|
3
|
+
version = "0.4.3"
|
|
4
|
+
description = "Python library for programmatic Notion workspace management - databases, pages, and content with advanced Markdown support"
|
|
5
|
+
authors = [{ name = "Mathis Arends", email = "mathisarends27@gmail.com" }]
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
license = { text = "MIT" }
|
|
9
|
+
dependencies = [
|
|
10
|
+
"httpx>=0.28.0",
|
|
11
|
+
"pydantic>=2.11.4",
|
|
12
|
+
"aiofiles>=24.1.0,<25.0.0",
|
|
13
|
+
"python-dotenv>=1.0.1,<2.0.0",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/mathisarends/notionary"
|
|
18
|
+
|
|
19
|
+
[build-system]
|
|
20
|
+
requires = ["hatchling"]
|
|
21
|
+
build-backend = "hatchling.build"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.sdist]
|
|
24
|
+
include = ["/notionary", "/README.md"]
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["notionary"]
|
|
28
|
+
|
|
29
|
+
[dependency-groups]
|
|
30
|
+
dev = [
|
|
31
|
+
"mkdocs>=1.6.1,<2",
|
|
32
|
+
"mkdocs-material>=9.6.15,<10",
|
|
33
|
+
"black>=25.1.0,<26",
|
|
34
|
+
"pytest>=8.4.1,<9",
|
|
35
|
+
"pytest-asyncio>=1.1.0,<2",
|
|
36
|
+
"pytest-mock>=3.14.1,<4",
|
|
37
|
+
"pytest-cov>=6.2.1,<7",
|
|
38
|
+
"isort>=6.0.1,<7",
|
|
39
|
+
"mypy>=1.17.1,<2",
|
|
40
|
+
"ruff>=0.13.1",
|
|
41
|
+
"pre-commit>=4.3.0",
|
|
42
|
+
"twine>=6.0.0",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[tool.pytest.ini_options]
|
|
46
|
+
markers = [
|
|
47
|
+
"integration: marks tests as integration tests (potentially slow or network-dependent)",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[tool.ruff]
|
|
51
|
+
target-version = "py313"
|
|
52
|
+
line-length = 88
|
|
53
|
+
extend-exclude = [".venv", "dist", "build"]
|
|
54
|
+
|
|
55
|
+
[tool.ruff.lint]
|
|
56
|
+
select = ["E","F","I","UP","B","SIM","PL","RUF","C90"]
|
|
57
|
+
ignore = [
|
|
58
|
+
"E501", # line too long
|
|
59
|
+
"E402", # imports not at top of file
|
|
60
|
+
"PLC0415", # import should be at top-level
|
|
61
|
+
"PLR2004", # magic values
|
|
62
|
+
"PLR0911", # too many return statements
|
|
63
|
+
"PLR0912", # too many branches
|
|
64
|
+
"PLR0913", # too many arguments
|
|
65
|
+
"PLR0915", # too many statements
|
|
66
|
+
"C901", # function too complex
|
|
67
|
+
"RUF006", # create_task return value not stored
|
|
68
|
+
"PLW0603", # global statement
|
|
69
|
+
"PLW2901", # loop variable overwritten
|
|
70
|
+
"RUF001", # en dash, etc.
|
|
71
|
+
"UP046", # derive from generic base class
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[tool.ruff.format]
|
|
75
|
+
quote-style = "double"
|
|
76
|
+
docstring-code-format = true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/markdown_rich_text_converter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/name_id_resolver/data_source.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/blocks/rich_text/rich_text_markdown_converter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/data_source/http/data_source_instance_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/impl/file_name_length.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/file_exists.py
RENAMED
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/file_extension.py
RENAMED
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/file_name_length.py
RENAMED
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/file_upload/validation/validators/upload_limit.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/mixins/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/nodes/table_of_contents.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/structured_output/__init__.py
RENAMED
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/structured_output/models.py
RENAMED
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/markdown/structured_output/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/file_like_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/parsers/table_of_contents.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/post_processing/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/handlers/port.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/parser/pre_processsing/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/post_processing/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/bulleted_list.py
RENAMED
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/captioned_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/column_list.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/file_like_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/numbered_list.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/page/content/renderer/renderers/table_of_contents.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.2 → notionary-0.4.3}/notionary/shared/entity/entity_metadata_update_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|