notionary 0.4.1__tar.gz → 0.4.2__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.1 → notionary-0.4.2}/PKG-INFO +1 -1
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/entity/schemas.py +1 -1
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/models/icon.py +6 -4
- {notionary-0.4.1 → notionary-0.4.2}/pyproject.toml +1 -1
- {notionary-0.4.1 → notionary-0.4.2}/.gitignore +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/LICENSE +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/README.md +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/enums.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/markdown_rich_text_converter.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/name_id_resolver/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/name_id_resolver/data_source.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/name_id_resolver/database.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/name_id_resolver/page.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/name_id_resolver/person.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/name_id_resolver/port.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/rich_text_markdown_converter.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/rich_text_patterns.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/comments/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/comments/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/comments/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/comments/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/comments/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/comments/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/http/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/http/data_source_instance_client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/properties/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/query/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/query/builder.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/query/resolver.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/query/schema.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/query/validator.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/schema/registry.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/schema/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/data_source/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/database/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/database/database_metadata_update_client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/database/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/database/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/api.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/base.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/block_parsing.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/data_source/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/data_source/builder.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/data_source/properties.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/file_upload.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/properties.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/exceptions/search.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/config/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/config/config.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/config/constants.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/file/reader.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/query/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/query/builder.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/query/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/impl/file_name_length.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/port.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/file_exists.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/file_extension.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/file_name_length.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/upload_limit.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/http/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/http/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/builder.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/audio.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/base.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/bookmark.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/breadcrumb.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/bulleted_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/callout.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/code.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/columns.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/container.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/divider.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/embed.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/equation.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/file.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/heading.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/image.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/mixins/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/mixins/caption.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/numbered_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/paragraph.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/pdf.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/quote.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/space.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/table.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/table_of_contents.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/todo.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/toggle.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/nodes/video.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/structured_output/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/structured_output/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/structured_output/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/context.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/audio.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/base.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/bookmark.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/breadcrumb.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/bulleted_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/callout.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/caption.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/code.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/column.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/column_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/divider.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/embed.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/equation.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/file.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/file_like_block.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/heading.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/image.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/numbered_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/paragraph.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/pdf.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/quote.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/space.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/table.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/table_of_contents.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/todo.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/toggle.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/parsers/video.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/post_processing/handlers/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/post_processing/handlers/rich_text_length.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/post_processing/handlers/rich_text_length_truncation.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/post_processing/port.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/post_processing/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/column_syntax.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/indentation.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/port.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/video_syntax.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/whitespace.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/context.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/post_processing/handlers/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/post_processing/handlers/numbered_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/post_processing/port.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/post_processing/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/audio.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/base.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/bookmark.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/breadcrumb.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/bulleted_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/callout.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/captioned_block.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/code.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/column.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/column_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/divider.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/embed.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/equation.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/fallback.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/file.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/file_like_block.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/heading.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/image.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/numbered_list.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/paragraph.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/pdf.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/quote.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/table.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/table_of_contents.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/table_row.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/todo.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/toggle.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/video.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/definition/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/definition/grammar.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/definition/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/definition/registry.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/prompts/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/prompts/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/syntax/prompts/registry.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/page_http_client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/page_metadata_update_client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/properties/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/properties/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/properties/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/properties/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/page/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/entity/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/entity/dto_parsers.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/entity/entity_metadata_update_client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/entity/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/models/file.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/models/parent.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/properties/type.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/shared/typings.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/base.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/bot.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/factory.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/person.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/user/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/utils/date.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/utils/decorators.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/utils/fuzzy.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/utils/mixins/logging.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/utils/pagination.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/utils/uuid_utils.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/client.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/query/__init__.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/query/builder.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/query/models.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/query/service.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/notionary/workspace/schemas.py +0 -0
- {notionary-0.4.1 → notionary-0.4.2}/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.2
|
|
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>
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
from enum import StrEnum
|
|
2
|
-
from typing import Literal
|
|
2
|
+
from typing import Annotated, Literal
|
|
3
3
|
|
|
4
|
-
from pydantic import BaseModel
|
|
4
|
+
from pydantic import BaseModel, Field
|
|
5
5
|
|
|
6
|
-
from notionary.shared.models.file import
|
|
6
|
+
from notionary.shared.models.file import (
|
|
7
|
+
File,
|
|
8
|
+
)
|
|
7
9
|
|
|
8
10
|
|
|
9
11
|
class IconType(StrEnum):
|
|
@@ -18,4 +20,4 @@ class EmojiIcon(BaseModel):
|
|
|
18
20
|
emoji: str
|
|
19
21
|
|
|
20
22
|
|
|
21
|
-
type Icon = EmojiIcon | File
|
|
23
|
+
type Icon = Annotated[EmojiIcon | File, Field(discriminator="type")]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "notionary"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.2"
|
|
4
4
|
description = "Python library for programmatic Notion workspace management - databases, pages, and content with advanced Markdown support"
|
|
5
5
|
authors = [{ name = "Mathis Arends", email = "mathisarends27@gmail.com" }]
|
|
6
6
|
requires-python = ">=3.12"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/notionary/blocks/rich_text/markdown_rich_text_converter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/file_exists.py
RENAMED
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/file_extension.py
RENAMED
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/notionary/file_upload/validation/validators/file_name_length.py
RENAMED
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/notionary/page/content/markdown/structured_output/__init__.py
RENAMED
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/markdown/structured_output/models.py
RENAMED
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/notionary/page/content/parser/post_processing/service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/parser/pre_processsing/handlers/port.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/bulleted_list.py
RENAMED
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/captioned_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/notionary/page/content/renderer/renderers/file_like_block.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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.1 → notionary-0.4.2}/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
|
|
File without changes
|
{notionary-0.4.1 → notionary-0.4.2}/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
|