notionary 0.4.0__py3-none-any.whl → 0.4.2__py3-none-any.whl

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.
Files changed (178) hide show
  1. notionary/__init__.py +44 -1
  2. notionary/blocks/client.py +37 -11
  3. notionary/blocks/rich_text/markdown_rich_text_converter.py +49 -15
  4. notionary/blocks/rich_text/models.py +13 -4
  5. notionary/blocks/rich_text/name_id_resolver/data_source.py +9 -3
  6. notionary/blocks/rich_text/name_id_resolver/person.py +6 -2
  7. notionary/blocks/rich_text/rich_text_markdown_converter.py +10 -3
  8. notionary/blocks/schemas.py +2 -1
  9. notionary/comments/client.py +19 -6
  10. notionary/comments/factory.py +10 -3
  11. notionary/comments/schemas.py +9 -3
  12. notionary/comments/service.py +12 -4
  13. notionary/data_source/http/data_source_instance_client.py +59 -17
  14. notionary/data_source/properties/schemas.py +30 -10
  15. notionary/data_source/query/builder.py +67 -18
  16. notionary/data_source/query/resolver.py +16 -5
  17. notionary/data_source/query/schema.py +24 -6
  18. notionary/data_source/query/validator.py +18 -6
  19. notionary/data_source/schema/registry.py +31 -12
  20. notionary/data_source/schema/service.py +66 -20
  21. notionary/data_source/service.py +74 -23
  22. notionary/database/client.py +27 -9
  23. notionary/database/database_metadata_update_client.py +12 -4
  24. notionary/database/service.py +11 -4
  25. notionary/exceptions/__init__.py +15 -3
  26. notionary/exceptions/block_parsing.py +6 -2
  27. notionary/exceptions/data_source/builder.py +11 -5
  28. notionary/exceptions/data_source/properties.py +3 -1
  29. notionary/exceptions/file_upload.py +12 -3
  30. notionary/exceptions/properties.py +3 -1
  31. notionary/exceptions/search.py +6 -2
  32. notionary/file_upload/client.py +5 -1
  33. notionary/file_upload/config/config.py +10 -3
  34. notionary/file_upload/query/builder.py +6 -2
  35. notionary/file_upload/schemas.py +3 -1
  36. notionary/file_upload/service.py +42 -14
  37. notionary/file_upload/validation/factory.py +3 -1
  38. notionary/file_upload/validation/impl/file_name_length.py +3 -1
  39. notionary/file_upload/validation/models.py +15 -5
  40. notionary/file_upload/validation/validators/file_extension.py +12 -3
  41. notionary/http/client.py +27 -8
  42. notionary/page/content/__init__.py +9 -0
  43. notionary/page/content/factory.py +21 -7
  44. notionary/page/content/markdown/builder.py +85 -23
  45. notionary/page/content/markdown/nodes/audio.py +8 -4
  46. notionary/page/content/markdown/nodes/base.py +3 -3
  47. notionary/page/content/markdown/nodes/bookmark.py +5 -3
  48. notionary/page/content/markdown/nodes/breadcrumb.py +2 -2
  49. notionary/page/content/markdown/nodes/bulleted_list.py +5 -3
  50. notionary/page/content/markdown/nodes/callout.py +2 -2
  51. notionary/page/content/markdown/nodes/code.py +5 -3
  52. notionary/page/content/markdown/nodes/columns.py +3 -3
  53. notionary/page/content/markdown/nodes/container.py +9 -5
  54. notionary/page/content/markdown/nodes/divider.py +2 -2
  55. notionary/page/content/markdown/nodes/embed.py +8 -4
  56. notionary/page/content/markdown/nodes/equation.py +4 -2
  57. notionary/page/content/markdown/nodes/file.py +8 -4
  58. notionary/page/content/markdown/nodes/heading.py +2 -2
  59. notionary/page/content/markdown/nodes/image.py +8 -4
  60. notionary/page/content/markdown/nodes/mixins/caption.py +5 -3
  61. notionary/page/content/markdown/nodes/numbered_list.py +5 -3
  62. notionary/page/content/markdown/nodes/paragraph.py +4 -2
  63. notionary/page/content/markdown/nodes/pdf.py +8 -4
  64. notionary/page/content/markdown/nodes/quote.py +2 -2
  65. notionary/page/content/markdown/nodes/space.py +2 -2
  66. notionary/page/content/markdown/nodes/table.py +8 -5
  67. notionary/page/content/markdown/nodes/table_of_contents.py +2 -2
  68. notionary/page/content/markdown/nodes/todo.py +15 -7
  69. notionary/page/content/markdown/nodes/toggle.py +2 -2
  70. notionary/page/content/markdown/nodes/video.py +8 -4
  71. notionary/page/content/markdown/structured_output/__init__.py +73 -0
  72. notionary/page/content/markdown/structured_output/models.py +391 -0
  73. notionary/page/content/markdown/structured_output/service.py +211 -0
  74. notionary/page/content/parser/context.py +1 -1
  75. notionary/page/content/parser/factory.py +23 -8
  76. notionary/page/content/parser/parsers/audio.py +7 -2
  77. notionary/page/content/parser/parsers/base.py +2 -2
  78. notionary/page/content/parser/parsers/bookmark.py +2 -2
  79. notionary/page/content/parser/parsers/breadcrumb.py +2 -2
  80. notionary/page/content/parser/parsers/bulleted_list.py +19 -6
  81. notionary/page/content/parser/parsers/callout.py +15 -5
  82. notionary/page/content/parser/parsers/caption.py +9 -3
  83. notionary/page/content/parser/parsers/code.py +21 -7
  84. notionary/page/content/parser/parsers/column.py +8 -4
  85. notionary/page/content/parser/parsers/column_list.py +19 -7
  86. notionary/page/content/parser/parsers/divider.py +2 -2
  87. notionary/page/content/parser/parsers/embed.py +2 -2
  88. notionary/page/content/parser/parsers/equation.py +8 -4
  89. notionary/page/content/parser/parsers/file.py +7 -2
  90. notionary/page/content/parser/parsers/file_like_block.py +30 -10
  91. notionary/page/content/parser/parsers/heading.py +31 -10
  92. notionary/page/content/parser/parsers/image.py +7 -2
  93. notionary/page/content/parser/parsers/numbered_list.py +18 -6
  94. notionary/page/content/parser/parsers/paragraph.py +3 -1
  95. notionary/page/content/parser/parsers/pdf.py +7 -2
  96. notionary/page/content/parser/parsers/quote.py +28 -9
  97. notionary/page/content/parser/parsers/space.py +2 -2
  98. notionary/page/content/parser/parsers/table.py +31 -10
  99. notionary/page/content/parser/parsers/table_of_contents.py +7 -3
  100. notionary/page/content/parser/parsers/todo.py +15 -5
  101. notionary/page/content/parser/parsers/toggle.py +15 -5
  102. notionary/page/content/parser/parsers/video.py +7 -2
  103. notionary/page/content/parser/post_processing/handlers/rich_text_length.py +8 -2
  104. notionary/page/content/parser/post_processing/handlers/rich_text_length_truncation.py +8 -2
  105. notionary/page/content/parser/post_processing/service.py +3 -1
  106. notionary/page/content/parser/pre_processsing/handlers/column_syntax.py +21 -7
  107. notionary/page/content/parser/pre_processsing/handlers/indentation.py +11 -4
  108. notionary/page/content/parser/pre_processsing/handlers/video_syntax.py +13 -6
  109. notionary/page/content/parser/service.py +4 -1
  110. notionary/page/content/renderer/context.py +15 -5
  111. notionary/page/content/renderer/factory.py +12 -6
  112. notionary/page/content/renderer/post_processing/handlers/numbered_list.py +19 -9
  113. notionary/page/content/renderer/renderers/audio.py +14 -5
  114. notionary/page/content/renderer/renderers/base.py +3 -3
  115. notionary/page/content/renderer/renderers/bookmark.py +3 -1
  116. notionary/page/content/renderer/renderers/bulleted_list.py +11 -5
  117. notionary/page/content/renderer/renderers/callout.py +19 -7
  118. notionary/page/content/renderer/renderers/captioned_block.py +11 -5
  119. notionary/page/content/renderer/renderers/code.py +6 -2
  120. notionary/page/content/renderer/renderers/column.py +3 -1
  121. notionary/page/content/renderer/renderers/column_list.py +3 -1
  122. notionary/page/content/renderer/renderers/embed.py +3 -1
  123. notionary/page/content/renderer/renderers/equation.py +3 -1
  124. notionary/page/content/renderer/renderers/file.py +14 -5
  125. notionary/page/content/renderer/renderers/file_like_block.py +8 -4
  126. notionary/page/content/renderer/renderers/heading.py +22 -8
  127. notionary/page/content/renderer/renderers/image.py +13 -4
  128. notionary/page/content/renderer/renderers/numbered_list.py +8 -3
  129. notionary/page/content/renderer/renderers/paragraph.py +12 -4
  130. notionary/page/content/renderer/renderers/pdf.py +14 -5
  131. notionary/page/content/renderer/renderers/quote.py +14 -6
  132. notionary/page/content/renderer/renderers/table.py +15 -5
  133. notionary/page/content/renderer/renderers/todo.py +16 -6
  134. notionary/page/content/renderer/renderers/toggle.py +8 -4
  135. notionary/page/content/renderer/renderers/video.py +14 -5
  136. notionary/page/content/renderer/service.py +9 -3
  137. notionary/page/content/service.py +21 -7
  138. notionary/page/content/syntax/definition/__init__.py +11 -0
  139. notionary/page/content/syntax/definition/models.py +57 -0
  140. notionary/page/content/syntax/definition/registry.py +371 -0
  141. notionary/page/content/syntax/prompts/__init__.py +4 -0
  142. notionary/page/content/syntax/prompts/models.py +11 -0
  143. notionary/page/content/syntax/prompts/registry.py +703 -0
  144. notionary/page/page_metadata_update_client.py +12 -4
  145. notionary/page/properties/client.py +45 -15
  146. notionary/page/properties/factory.py +6 -2
  147. notionary/page/properties/service.py +110 -36
  148. notionary/page/service.py +20 -6
  149. notionary/shared/entity/client.py +6 -2
  150. notionary/shared/entity/dto_parsers.py +3 -1
  151. notionary/shared/entity/entity_metadata_update_client.py +9 -3
  152. notionary/shared/entity/schemas.py +1 -1
  153. notionary/shared/entity/service.py +53 -22
  154. notionary/shared/models/file.py +3 -1
  155. notionary/shared/models/icon.py +6 -4
  156. notionary/user/base.py +6 -2
  157. notionary/user/bot.py +10 -2
  158. notionary/user/client.py +3 -1
  159. notionary/user/person.py +3 -1
  160. notionary/user/schemas.py +3 -1
  161. notionary/user/service.py +6 -2
  162. notionary/utils/decorators.py +6 -2
  163. notionary/utils/fuzzy.py +6 -2
  164. notionary/utils/mixins/logging.py +3 -1
  165. notionary/utils/pagination.py +14 -4
  166. notionary/workspace/__init__.py +5 -1
  167. notionary/workspace/query/service.py +59 -16
  168. notionary/workspace/service.py +39 -11
  169. {notionary-0.4.0.dist-info → notionary-0.4.2.dist-info}/METADATA +1 -1
  170. notionary-0.4.2.dist-info/RECORD +236 -0
  171. notionary/page/blocks/client.py +0 -1
  172. notionary/page/content/syntax/__init__.py +0 -5
  173. notionary/page/content/syntax/models.py +0 -66
  174. notionary/page/content/syntax/registry.py +0 -371
  175. notionary-0.4.0.dist-info/RECORD +0 -230
  176. /notionary/page/content/syntax/{grammar.py → definition/grammar.py} +0 -0
  177. {notionary-0.4.0.dist-info → notionary-0.4.2.dist-info}/WHEEL +0 -0
  178. {notionary-0.4.0.dist-info → notionary-0.4.2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,236 @@
1
+ notionary/__init__.py,sha256=mbK-28YsP87lcwkG0r4vngtomCnktBWYGLh0K6Ay2pQ,1664
2
+ notionary/blocks/__init__.py,sha256=LsVUgSsDYlLy-bwLqnukcr4uB8ZcCLMz3fGd4HsNXDY,99
3
+ notionary/blocks/client.py,sha256=-W1LKrj-OutvHiBajAQSRrnDQvgqx8pV3sX1mNqtWJI,5887
4
+ notionary/blocks/enums.py,sha256=Y_la49porLNRMI72n8Ucl_CDjo2xuH-RNwx3BesxHig,4663
5
+ notionary/blocks/schemas.py,sha256=Edsy8agI7b44JQsS_fq2CIv7n21uhytP15WX4x8oI8I,19975
6
+ notionary/blocks/rich_text/markdown_rich_text_converter.py,sha256=wv9GEdv5vUs6dD9sZQPvaQ1yGwvsr9IhneTLuoq_w2E,12078
7
+ notionary/blocks/rich_text/models.py,sha256=-6RWGGVt2a8EennakYC0jFLMDESTJy23GI1G3YTG0Ss,5009
8
+ notionary/blocks/rich_text/rich_text_markdown_converter.py,sha256=MvZEmKHbynmghbgw3Q2CbbDVnGt_qvX2qmjHlE4LRkI,5607
9
+ notionary/blocks/rich_text/rich_text_patterns.py,sha256=nC2WosgLh_RhaEckVkSi-xUNJl14bKO2u2ImuOcufso,1703
10
+ notionary/blocks/rich_text/name_id_resolver/__init__.py,sha256=1WZprWsEpL-gWnZrSn7-DqhHUz0r_8OiOcyHi1P4i1g,372
11
+ notionary/blocks/rich_text/name_id_resolver/data_source.py,sha256=5shofz678u87TwRqTdyZNEbAeN7E6YDT9w_OxOS80UY,1335
12
+ notionary/blocks/rich_text/name_id_resolver/database.py,sha256=xrCnBUYfZJfDw9bSwUroWbqzK4N1P8eduBfKVug_KXg,1073
13
+ notionary/blocks/rich_text/name_id_resolver/page.py,sha256=DfjXyBLdkYl5UfoU2UGSllsRUM5XFp30H_OJwJdKdrI,1137
14
+ notionary/blocks/rich_text/name_id_resolver/person.py,sha256=O_rmgeP9AKSA7NvG51vtjgGVyOzPvztpc3WscRB38_4,1349
15
+ notionary/blocks/rich_text/name_id_resolver/port.py,sha256=VtTavK6rHL-_qTIjFMsO25cgh_oUHNS-qEM_mONOaS0,259
16
+ notionary/comments/__init__.py,sha256=1LfujehhvWqJmNKft6QvcbwhLlJOGq7cH1uTb4IUR2w,63
17
+ notionary/comments/client.py,sha256=s4rlrSHchBspgkEAc2ZnOAepB9FgDg3BUTHW_5i51FU,2727
18
+ notionary/comments/factory.py,sha256=dJRTjvmleAhHQiJEAXdTIvV_UzQnnWoFItJJSeOWX_Y,1596
19
+ notionary/comments/models.py,sha256=g-WTDSel8nhyRa60rN0U5FuccU0KVnsnJBi6Uqz7NVw,107
20
+ notionary/comments/schemas.py,sha256=w54cPys5CWTQhjpYuwG9SJix2nU6z2rzVgpW9ANlzxI,5386
21
+ notionary/comments/service.py,sha256=Qt0AmLwhQeFjMr-UCW76MPqTPI0CdbfiubPz3mGTwYw,1735
22
+ notionary/data_source/schemas.py,sha256=xfKxy51zWlpXiLRZfRZWzFvIFwqw3hy69ydh-LJJzn0,829
23
+ notionary/data_source/service.py,sha256=G61MC3Z4x3tCMg6ZSjNaXz2qC5I7EINUZ816hFlnBIk,11966
24
+ notionary/data_source/http/client.py,sha256=wvaBOIT5OtGdE0QjbcDUsuDnZ0TZ-CyIifBHp6OYTqE,445
25
+ notionary/data_source/http/data_source_instance_client.py,sha256=8jRXv_GPrRcUawNJbARYb5oCoqbdzopUNwTvYUT46uI,5438
26
+ notionary/data_source/properties/schemas.py,sha256=4JRXPULqt38zdFhbQ0hg0xOMQto23_8b5x5lrLLG2VY,13124
27
+ notionary/data_source/query/__init__.py,sha256=Q3uQf6r0xHYV_i5kn-Gdwf68QKJMnV_7vS_gO4I3kG8,226
28
+ notionary/data_source/query/builder.py,sha256=2BLQ8ZztqYbFUGaV84ArAYqQt8fDSI2rEGdFDB-Uwgo,19216
29
+ notionary/data_source/query/resolver.py,sha256=qFrwJdJf9P4m_-BGtWDHhilTRF1vPH5WTm7dmOluoDE,4468
30
+ notionary/data_source/query/schema.py,sha256=YlF5dya-MCTPezLUSfJ3xS2gJ4APEvJKiIZITcdw3_g,9754
31
+ notionary/data_source/query/validator.py,sha256=r1wTeiAeum3gCT54WvNItiVo7D73cVAicV47kO2RdAU,3429
32
+ notionary/data_source/schema/registry.py,sha256=ODOXFB_-ZZxdXC7px_GYolHdCivyX0mRcUjd2nRSZjA,5503
33
+ notionary/data_source/schema/service.py,sha256=QAu0JfdDC0UP_SpVYbOFjZxMpARksJYCdeO-nHZxZGE,6466
34
+ notionary/database/client.py,sha256=ey_5i5QUa0yBdLkWopHvUUltpsgLqTmLB3rdm9RBKVs,2414
35
+ notionary/database/database_metadata_update_client.py,sha256=CaNrEA6EdxXGaWfwnGeS_RFibzMlXzR8A8huJCS1Pt0,980
36
+ notionary/database/schemas.py,sha256=gzihLqe4YjGExWZ4X_s9yU-lm5Ezr1YFjviNCyxW1HE,838
37
+ notionary/database/service.py,sha256=p165TWCYTskt5ddSTXM-5e1WXlnzzGfwLMVpNpMduIA,4474
38
+ notionary/exceptions/__init__.py,sha256=6_rxx95hjzaN8FgmfcZXZeAZFmOaO9eNESnhCooVhjM,1547
39
+ notionary/exceptions/api.py,sha256=TxDAKh9-DXX3eYis-S_zE07WB0-UcyQsxBjIKKoFBT8,798
40
+ notionary/exceptions/base.py,sha256=Ey5rEWO9x9GIQOcGrgQcLz0pehPXGPQdEm8MIpV7Uq4,48
41
+ notionary/exceptions/block_parsing.py,sha256=QbvSLdX_4VoEtOqy7nRk-_VjQt4rbedtuA2dh2SVkMA,1535
42
+ notionary/exceptions/file_upload.py,sha256=rbCq1_bbVLejt-BfZwLZA9fT3DocbQHdxmQxH99FFDA,2908
43
+ notionary/exceptions/properties.py,sha256=0j06puvIYrtdIXtsp6ijINtx8jLa1ugCt6nQyxNycnU,2239
44
+ notionary/exceptions/search.py,sha256=afbWhlWx9PhhX5CNhAvKkAKe2PNaoylIsb9iKjBf-bA,2208
45
+ notionary/exceptions/data_source/__init__.py,sha256=Xs4I-zVxVQiVhfTclJX7GuGVO5fMYQIWqiqFnh_O67M,170
46
+ notionary/exceptions/data_source/builder.py,sha256=3MBVGoEpg99m4CDaIoqZ9nnGJepguCpIopr_TnwZ_JE,6069
47
+ notionary/exceptions/data_source/properties.py,sha256=cVivCxdYezZtXAiztQA_71ExtBXiXcsJc0x3MVirw-I,1264
48
+ notionary/file_upload/__init__.py,sha256=MeOzKCT9RVNvikespbjE9cucfMgsh9R0JwoUfhRTjVQ,178
49
+ notionary/file_upload/client.py,sha256=ouB1K-gmZAibN5jKZ6iY5HM3r2ShAju4nfklzCm7yGY,5391
50
+ notionary/file_upload/schemas.py,sha256=71lNUxvdebtFSWOV9LqVIB_mMIg0AE-8ay-FXAOVqjE,2304
51
+ notionary/file_upload/service.py,sha256=6I_RDuKt0B2tX8DzkGEYy44GNaz4F13vsP8eFOqFcps,8848
52
+ notionary/file_upload/config/__init__.py,sha256=BS6sI4ElRMUyxro4ohw6ll7OvIzc46Ss7jjHaJCrLfY,480
53
+ notionary/file_upload/config/config.py,sha256=9Kc4GZREhHhJFSXT1EdZWFz6Btghy5Qp51vAzSZhdVU,1164
54
+ notionary/file_upload/config/constants.py,sha256=KoWJLrPPaTiELKyqrV9-Cng2nq6Y-v0MTxQJPyMnWUI,452
55
+ notionary/file_upload/file/reader.py,sha256=I4FmXdPU2dpBiIULfiVnhdiEwlLBMqa9iIO_IbzlLKw,1036
56
+ notionary/file_upload/query/__init__.py,sha256=9ZpH2HV-m7YmdKrQ5kDUC9FmcB1zjegUSK_0CTxX1Ho,155
57
+ notionary/file_upload/query/builder.py,sha256=6sFyb0GLxtaMQp88ihL3UiDOplXSuixd2v-wK3_577Y,1978
58
+ notionary/file_upload/query/models.py,sha256=c5XIq7WkfjmESMAj47OYFnuheT_jqP68bmYWrNHIq0E,1069
59
+ notionary/file_upload/validation/factory.py,sha256=3goSgCHDdtD7cAz_lDkrXdnvlP9otgruV95EvtHuLwo,2306
60
+ notionary/file_upload/validation/models.py,sha256=12IZmdzdmxjM1FmK0b0Br34_npOnieNOsdEEpBxgLJA,2996
61
+ notionary/file_upload/validation/port.py,sha256=S__YHYXLDlz2deCNNp5mv4fr6abmFyTfFGoftHB-_ZI,148
62
+ notionary/file_upload/validation/service.py,sha256=quTdUXCtGFHddqyIplF8SKaXSQ6zTh-Xw_jMq9jAvzI,681
63
+ notionary/file_upload/validation/impl/file_name_length.py,sha256=wKBm-HCUPc166bcKxt6ZbhneNdXJr0y84VeYVdlGinY,971
64
+ notionary/file_upload/validation/validators/__init__.py,sha256=UAQGLrDgr4Fv4ESPU0f0nEEY2FNm3VcpB8EZ3nKdDDo,347
65
+ notionary/file_upload/validation/validators/file_exists.py,sha256=nL1M9KK2N0YCo3JABSHZioPg0m0R3MJGDMemyL_EduY,486
66
+ notionary/file_upload/validation/validators/file_extension.py,sha256=Dc7RveuTZNWHq0OvwIbk5XAc1mylqM4CEHkfyCpmPcg,5440
67
+ notionary/file_upload/validation/validators/file_name_length.py,sha256=xdZTzw3XUUHd8I6_T6_oD7NdG2t6defLEZAB-QKsvoI,830
68
+ notionary/file_upload/validation/validators/upload_limit.py,sha256=UdhDsh57HPPNPQ3kcEAffVnm2CgBF77Fa2G47OmLs7Q,1146
69
+ notionary/http/client.py,sha256=fFbM81zLpw59y3fk4QiwRFuFEqmrbziylC1jkO8X5Vs,7392
70
+ notionary/http/models.py,sha256=fvjKAGX-b6JcJ-W7V3DEt4v3SnsdikMa6N0c4aolslY,1352
71
+ notionary/page/page_http_client.py,sha256=YQdXkfMGu2wuJpALJBIsKKwoHv316n_sMjne-iqJYHc,445
72
+ notionary/page/page_metadata_update_client.py,sha256=RmUKouWpQfG_J-Nu8qPEv1CBYSsTBSlQRjchixWFB9o,940
73
+ notionary/page/schemas.py,sha256=uodDbDQDL8b-qvvjnvRXrliFoM7o6tzmLziRBmjVhTE,359
74
+ notionary/page/service.py,sha256=MmdllMqP6iRFv5NwVvD8Ayo-qpoEzU5_UcVnqb-_xHI,6359
75
+ notionary/page/content/__init__.py,sha256=e0YejZODxp82zP5278tT10X0DR4DaSu6WCEsvN_5g_Y,247
76
+ notionary/page/content/factory.py,sha256=8H51oQ34ZKOZEuGesvUxCXcAN7iUwHoxPRhEYCOq1fE,3878
77
+ notionary/page/content/service.py,sha256=OF1uXy6xZx0rjmGFezuz3s9YAnSkOlDByJBvekC7buY,3133
78
+ notionary/page/content/markdown/__init__.py,sha256=dhBiNIbiyG38eppjXC0fkZk3NVXzRGC8xqoE89jWHG0,80
79
+ notionary/page/content/markdown/builder.py,sha256=rPrwUrfvpdrebi8O5Ej0A7TTcfgZbWVGWLRZFOZDjwU,9640
80
+ notionary/page/content/markdown/nodes/__init__.py,sha256=09XSsSNO4surN3lCHayqTC8zhcE5PZ7cAav_-js3dP4,1729
81
+ notionary/page/content/markdown/nodes/audio.py,sha256=ROwOh3TDgML1Xx7WhoAJVOIPXvFZ9p7iQXlLN49maTg,956
82
+ notionary/page/content/markdown/nodes/base.py,sha256=gGdFbPIdBx_tIfxdlRGfJs4wdwTYQKxJVfXWr2hFe0A,389
83
+ notionary/page/content/markdown/nodes/bookmark.py,sha256=c4l04Zvx0y4Nzh9utvxN8mpmNMdgyAJF0KhnzYFUGuY,1008
84
+ notionary/page/content/markdown/nodes/breadcrumb.py,sha256=St-k3n7FuWDLBKDRYLhWCkBTipP_Zispc8J71NZXWY4,554
85
+ notionary/page/content/markdown/nodes/bulleted_list.py,sha256=h1pZtewjXKdJvFbCrPoxusX9nshxmHpZdP3YBJjdofg,1534
86
+ notionary/page/content/markdown/nodes/callout.py,sha256=q7iKooafroBSSNFOy45oD5Fs0if3h10NXIDmvfnhA5k,1142
87
+ notionary/page/content/markdown/nodes/code.py,sha256=FXLmjrGSNBPu6FK8bb8Ss8So0UMZCfmwcZSXS95GmjE,1111
88
+ notionary/page/content/markdown/nodes/columns.py,sha256=c8Z8pZyajToW-f0PJyykh5nlt26rHSF-7HprLibDZxg,2387
89
+ notionary/page/content/markdown/nodes/container.py,sha256=h7rtpjg53wXzwOYpXoeT27CfbsWeaEQYtUv05TfqaLg,2621
90
+ notionary/page/content/markdown/nodes/divider.py,sha256=091DyG5hUPlFiN6C-3VykhvcY0kJip7QiqArSJxkFko,542
91
+ notionary/page/content/markdown/nodes/embed.py,sha256=Qo8LcTHFXQIjZcW6Wet9Hl6CTSfkk6svM-2Qd6dqkI0,956
92
+ notionary/page/content/markdown/nodes/equation.py,sha256=Cz5x-tC0ApUlqZeyRPHW4gLzzpEPCeOXaXIrlNEzBkM,811
93
+ notionary/page/content/markdown/nodes/file.py,sha256=5kgazA_SrBGOVDqVARC_IwVnERFezd03K9poK96Ezcs,951
94
+ notionary/page/content/markdown/nodes/heading.py,sha256=QjutIsomhotP2PqZ6CaFpA_xVU2bmeflulBnndI9-UA,1231
95
+ notionary/page/content/markdown/nodes/image.py,sha256=tM_tjqh4UtCYZp3jCwCAmb9MT3eTgKa6AjqlxJFflx8,956
96
+ notionary/page/content/markdown/nodes/numbered_list.py,sha256=FDhrcPYHuB8jK5qR8FeuxR5pburl33u3JmatnDQUoAI,1389
97
+ notionary/page/content/markdown/nodes/paragraph.py,sha256=9qiKUTxdfUnMteN5jnHKxB8ug53VOpKv1UdLEfc8k74,499
98
+ notionary/page/content/markdown/nodes/pdf.py,sha256=pow2CatNjiiGCb-izMqkysIY5OAkIfRWO8KyrpAXOvE,946
99
+ notionary/page/content/markdown/nodes/quote.py,sha256=Updr513k3jXQnPBCDp1hljZJ-O_pwlbQJSPsaRcdVjg,954
100
+ notionary/page/content/markdown/nodes/space.py,sha256=j_vM0U8cGGR3YswHyjAo3UNZAAhA1UC5CLiiHgt516M,534
101
+ notionary/page/content/markdown/nodes/table.py,sha256=8t_yp0AhfH3R5FH_u7orfpaPbycPtuVSQb_zgwzyzDk,1770
102
+ notionary/page/content/markdown/nodes/table_of_contents.py,sha256=Mx1AkglikodV9hTCW96AjmHQ6YdWaR2UurcOoUohf-U,552
103
+ notionary/page/content/markdown/nodes/todo.py,sha256=yLOYEcScsgJWijde-Hkg7cNaFLe-WEShRqgmvWo1Wkg,1640
104
+ notionary/page/content/markdown/nodes/toggle.py,sha256=LNeaIcHOxdUmh6GcIPOby59XsgQx48FL4nPGJnU4mlc,957
105
+ notionary/page/content/markdown/nodes/video.py,sha256=7YxB7hmhuYFvQvjztwhg6QONybbVBW8g97Pyv1UGnvE,956
106
+ notionary/page/content/markdown/nodes/mixins/__init__.py,sha256=KVWvxbgwrbfXt495N4xkIu4s8tD-miwVTcXa2fc9Kvc,98
107
+ notionary/page/content/markdown/nodes/mixins/caption.py,sha256=dZ6pIQqC8sugLgWJQ_M3we5PZNcTGtifo01UM01hejk,483
108
+ notionary/page/content/markdown/structured_output/__init__.py,sha256=cmeY_xDlcg7bVuBIgBYMeCRnGYpOx94d3ow0uNo_g1o,1596
109
+ notionary/page/content/markdown/structured_output/models.py,sha256=zOZeA8EkSsibmahswi26l_s7o2OFPhEnkxlaAi_XgBk,14057
110
+ notionary/page/content/markdown/structured_output/service.py,sha256=e5YFbcbGzlXlx7Szefp3JBlKxUAG1wHA5H45B1kYv_A,7663
111
+ notionary/page/content/parser/context.py,sha256=PXbLPIGvNNO0nJbS0yxONhoozvg-_qqtZYsBzixU3rs,4761
112
+ notionary/page/content/parser/factory.py,sha256=AL24BsYO6sU8cwSkhWHJSyzHu8oZH0FSCnSlOAT_Uh4,8373
113
+ notionary/page/content/parser/service.py,sha256=MNUfZ7I3GqhQIDtr9VtLykl7wAwi5LW2F0FoJbK9ICQ,2919
114
+ notionary/page/content/parser/parsers/__init__.py,sha256=cHGTAs7XZEHPmFHhlnno5J7nmLlfYwuTXtOtWvjWAD4,1637
115
+ notionary/page/content/parser/parsers/audio.py,sha256=vamZLqUEduQ3YA3dHT4w_3iaHnkbctqDM5Qzi9YkXEo,700
116
+ notionary/page/content/parser/parsers/base.py,sha256=g1UTGvthxwSuh53qA27EFHbAe3K6dCruhHvGBEwQs1w,1019
117
+ notionary/page/content/parser/parsers/bookmark.py,sha256=lsvQIuzamfKwgkUePx1GVY2TveChuFcS_4X8xGX18Ig,1264
118
+ notionary/page/content/parser/parsers/breadcrumb.py,sha256=SSD58OjTfsXxUkS24K_dEQPsb_KF9THks6M_k6NQ2D8,1221
119
+ notionary/page/content/parser/parsers/bulleted_list.py,sha256=ejCOcqKTOdq866w1Oq_wibU8XFWN5NfJ4O7n6T8W7zs,3694
120
+ notionary/page/content/parser/parsers/callout.py,sha256=6JSIIZVTxNdNn4GOHpJ6MUtH5r9X3n16mOG4rx8NJEk,4131
121
+ notionary/page/content/parser/parsers/caption.py,sha256=b8cBXeJrVN2-gunPXBREOTv3oUZixdbx2ioDe3vzYsE,2153
122
+ notionary/page/content/parser/parsers/code.py,sha256=fcBPF5TJoOqpA6zVK6beH9E9qexhKtXn9a60FRZEPRA,3686
123
+ notionary/page/content/parser/parsers/column.py,sha256=pJ_YC1wQMPumX0e2Uq-PHCggeCqUywfYIBDlryCg5ZA,2977
124
+ notionary/page/content/parser/parsers/column_list.py,sha256=SdnI_eakJB0TPxhVRaufm7JMD2Gmyt0YmpAuySty7Ds,3598
125
+ notionary/page/content/parser/parsers/divider.py,sha256=_n9003aWRBf05f3kfo8Ad6m4fOmKf81aJVj989rwfLs,1179
126
+ notionary/page/content/parser/parsers/embed.py,sha256=ocEcHEuefu8Em0HJw4pDYIfClRxpM2ORamaIymQkisc,1200
127
+ notionary/page/content/parser/parsers/equation.py,sha256=kpYgPdX1kOSpDtRnA_dovOn0zNuKS0BUms8syjpSFBY,2404
128
+ notionary/page/content/parser/parsers/file.py,sha256=8B605C4sdJSit5bSxn3-nPKQ5pfuely0qiGI7E_yChk,693
129
+ notionary/page/content/parser/parsers/file_like_block.py,sha256=JTxpF0YEKGG6Fiq15bkMquwqLojk4t3tDpDTFi-QDo4,4167
130
+ notionary/page/content/parser/parsers/heading.py,sha256=gdXKza8EL9D_kvqTE95_tgwV6A8egJDNOmdA_5m6jb4,4753
131
+ notionary/page/content/parser/parsers/image.py,sha256=kHaTG30BVJerSjb9JGGC9aKPb-MNi2KlKRaDSYrM3_o,700
132
+ notionary/page/content/parser/parsers/numbered_list.py,sha256=979FroSuApLmM2pJgIBnIrFTVrSK3k6TBClk7seUos8,3761
133
+ notionary/page/content/parser/parsers/paragraph.py,sha256=8ij-m-LBw_n6oxDAyheACCzJfUa-gkavH6q6wiT80mQ,1383
134
+ notionary/page/content/parser/parsers/pdf.py,sha256=yJ_-Glxv8OzklaPkyJzEZYE1wreZ3vNkH_oxyLoiCpE,686
135
+ notionary/page/content/parser/parsers/quote.py,sha256=8SXu2Icm81k9vUeXln5ZBGt94vyhrwXEZFjQihm3M9s,5271
136
+ notionary/page/content/parser/parsers/space.py,sha256=LQEp9IUtpld8L7JKZKqYoEASQXjJ5lO1zmgZFp5IhRM,1600
137
+ notionary/page/content/parser/parsers/table.py,sha256=QCEWU_cRw4puQ33MP4yL_T2glrv7fm6Eajso8p8V2iE,5680
138
+ notionary/page/content/parser/parsers/table_of_contents.py,sha256=FQrlG6DDWsKuZj7t7vSQAXzC2dQeYqDVQGuxseiUmvY,1257
139
+ notionary/page/content/parser/parsers/todo.py,sha256=4nNl5Rzef2Pkxc0HPghlh1tZjNr7gWZFOGqGd49-0LU,3952
140
+ notionary/page/content/parser/parsers/toggle.py,sha256=x0hlamN7Nx__9nFHRgm78AAgd4eZ7dzd8UL0H35HzIw,3000
141
+ notionary/page/content/parser/parsers/video.py,sha256=xCnOk1jWLpBvE7QsbGbiMNlsvykPMSbgEChgofULxm8,700
142
+ notionary/page/content/parser/post_processing/port.py,sha256=ZjTz9pIrk3R8Hy_NdRWmYTYrGScNyWyqgzcSUk_1BkI,248
143
+ notionary/page/content/parser/post_processing/service.py,sha256=NK-6sc496iVlpIdmDdJqHIE-IljsdBU2rKPytJN1Gm4,624
144
+ notionary/page/content/parser/post_processing/handlers/__init__.py,sha256=Io7Qw_bR6lDXCCuFWUZqR5QmmZwqKG-icE1hRoRivIk,144
145
+ notionary/page/content/parser/post_processing/handlers/rich_text_length.py,sha256=bpTAnJP3auAWF2EUBPbby4nMtK9gKXcK44YxVnJH8og,3639
146
+ notionary/page/content/parser/post_processing/handlers/rich_text_length_truncation.py,sha256=hIa1ruBcdle-tGZItdQz5r3-IeYl02N2FA4EA5DLVsE,4211
147
+ notionary/page/content/parser/pre_processsing/service.py,sha256=moa5sHuNvzUQCVGe-4IvqrCEWtIaEMD6M7FMjLXENcM,507
148
+ notionary/page/content/parser/pre_processsing/handlers/__init__.py,sha256=RX6VC1Q9tJAAjtt92hjOy20fcT7yFZP6PvNBjsp79sE,397
149
+ notionary/page/content/parser/pre_processsing/handlers/column_syntax.py,sha256=RTum_ACB9TKXmWgxPWypJsVfbB44G6aCytVO7-pRmCU,5632
150
+ notionary/page/content/parser/pre_processsing/handlers/indentation.py,sha256=FqFByaZyIzhav_7jaWZK9zu-6NLoAOueosTTTbLZbBY,3426
151
+ notionary/page/content/parser/pre_processsing/handlers/port.py,sha256=Gm_GRGl1eGo1C8AM5CUfFdYAofe4Y0gAPScU2O1EcJo,153
152
+ notionary/page/content/parser/pre_processsing/handlers/video_syntax.py,sha256=XELL_c8HEtb_-9dFRqy5q1LxMAF6sMwyIBZh2FIrHgg,2841
153
+ notionary/page/content/parser/pre_processsing/handlers/whitespace.py,sha256=GknAlc4bm2T13MwPz3F-ZP_T_En6-KCQXneqToc2l5I,2685
154
+ notionary/page/content/renderer/context.py,sha256=rdziry_nPPD3E__pV6feEHYS64n84edDANKviYjfTto,2142
155
+ notionary/page/content/renderer/factory.py,sha256=5RBri8zJ8K9uYjSNKmRzYstS6TK6F4k82N_rMYH6EH8,9016
156
+ notionary/page/content/renderer/service.py,sha256=zmuVz7ZWpLsm2JguGeSOm7tFVQ9vCp5lfGE8Z0mVN5M,1975
157
+ notionary/page/content/renderer/post_processing/port.py,sha256=VcfLsEyXd8EXMjYEf_uTX0-iq5RThwGvE7mgUsL6b8s,154
158
+ notionary/page/content/renderer/post_processing/service.py,sha256=dCc6GRRDkT3NmVHBerBf_TZfNjCIRbS8NdLJhaDQQsA,511
159
+ notionary/page/content/renderer/post_processing/handlers/__init__.py,sha256=LurntAvtz38tBpm3KAfd_Z-EyaxfG6WS_JPrytfc32M,144
160
+ notionary/page/content/renderer/post_processing/handlers/numbered_list.py,sha256=htSCfPiAo1i2sRsVic7F0ND3FriQCdpFaTdECkgD1iM,5952
161
+ notionary/page/content/renderer/renderers/__init__.py,sha256=YinHG6qfAPRTLD2-fts0gnuDuxQW9ZMBXflxoEfQ16o,1636
162
+ notionary/page/content/renderer/renderers/audio.py,sha256=SmVMLavRAZN2sYPLP0zKUkES5uJFgwnIlXqFyFGwHUQ,809
163
+ notionary/page/content/renderer/renderers/base.py,sha256=OjZp9Q_dR10qt7u9jNJ_og0s3HRrIbGmQfbMWGTc8Gs,1112
164
+ notionary/page/content/renderer/renderers/bookmark.py,sha256=7CxyNoP_Y6DXyb3LkJydQfpmosYsD2ltYD93NFsdnEw,826
165
+ notionary/page/content/renderer/renderers/breadcrumb.py,sha256=M_Qlu73LmSwcCzsF1IJywZIekzOVBP1rd8md51dvfq8,782
166
+ notionary/page/content/renderer/renderers/bulleted_list.py,sha256=LG42ppbFv1zecgBhNjSkBlP4JKr-zBDI3mdTKTIawp4,2107
167
+ notionary/page/content/renderer/renderers/callout.py,sha256=uBsHSf_28K_kJxNuPeQSHvwKBYQ2vFYHRetjS5vxEds,2187
168
+ notionary/page/content/renderer/renderers/captioned_block.py,sha256=lcl0PkLzRqzsY2rVYVpDZaDpyL0UNGQVQeOaSu3DC2E,2319
169
+ notionary/page/content/renderer/renderers/code.py,sha256=zDfHOOqcKtM2NDNPc3OUNjUzwEmM-ALCAB7dOYFm388,1304
170
+ notionary/page/content/renderer/renderers/column.py,sha256=vnzrhTtsTJ-SHz2GVjY9t9e4yOS-8M0-1UD1Ny9slOQ,1870
171
+ notionary/page/content/renderer/renderers/column_list.py,sha256=5-CiS8rY9NTvC11JkrE95qHa1BHXwMw1O06CCqj_lGM,1631
172
+ notionary/page/content/renderer/renderers/divider.py,sha256=S6XvueUgihBC5I5y7_WHWeULfUq3ydvGNC8Mz72nNwQ,796
173
+ notionary/page/content/renderer/renderers/embed.py,sha256=H3PzkpE3Gy4OYTRsrA0-XcTX6bc8vCoofP-WdLv4fzU,805
174
+ notionary/page/content/renderer/renderers/equation.py,sha256=oYdIJAoxRFLcvH0z4kyIvgL0yoWx2z4tD5d-qykQeU0,1389
175
+ notionary/page/content/renderer/renderers/fallback.py,sha256=R-w6k5N3EmTQ5ytSzPNykpNwm9tq3dW71Xffchj4qXA,918
176
+ notionary/page/content/renderer/renderers/file.py,sha256=bNJMiwcHpAggk1HAw-typSgSrzybQKUn9hm7NatEjqE,1008
177
+ notionary/page/content/renderer/renderers/file_like_block.py,sha256=TVENJMz4mEhgVg-3YV4NGzVzSnnr2WP2KP7Ra1ddYgo,1349
178
+ notionary/page/content/renderer/renderers/heading.py,sha256=25MpNFuOg-8_cmPczPpPFjW21rwJN6CC2qUrcc9LKfM,3961
179
+ notionary/page/content/renderer/renderers/image.py,sha256=RDHuNC9tdFX9fJ2iaWePZaj-JlJNQWHyFUN-ZmdFWAA,793
180
+ notionary/page/content/renderer/renderers/numbered_list.py,sha256=BK9DdQK0uD1jNzOeP51ZhnGXDrW42BID3a2Pq_IqlRc,1891
181
+ notionary/page/content/renderer/renderers/paragraph.py,sha256=06geVGwaNrm8M9BOQOxZIb5GaqVKJhzDY77jJx1FKVc,1697
182
+ notionary/page/content/renderer/renderers/pdf.py,sha256=Rxnx_lkA0T9_X7BAuiTG5UDQGckce0FhINF5N_aLTNI,801
183
+ notionary/page/content/renderer/renderers/quote.py,sha256=wCknQoJKVKAnkDBt2u3cR-vjUw4-cNLM-NiDDsCLIRE,2103
184
+ notionary/page/content/renderer/renderers/table.py,sha256=2_W88gA9CyfetBor9Sa2ZjBsVsA1Esra2cyG1vget6Q,4704
185
+ notionary/page/content/renderer/renderers/table_of_contents.py,sha256=pWlkz-jQ2jviI-it0XxJQsZ0G5I2ZtxZkC7pBSWnRBg,988
186
+ notionary/page/content/renderer/renderers/table_row.py,sha256=Zs1yFsU4hKIZizg4rGo8THGZ0VKrb3KNUQOT9ehmzFk,623
187
+ notionary/page/content/renderer/renderers/todo.py,sha256=s5ZWSL95WSABJzgl0bQ5L9BBzUcCe3_g14oOC_k4ObU,2289
188
+ notionary/page/content/renderer/renderers/toggle.py,sha256=927S9DcyB2M0Mayfhb-TOZX7tCH-oLhGsbPOUQFKHbE,2113
189
+ notionary/page/content/renderer/renderers/video.py,sha256=mKiG6zHTgfNkl5ZlAqA3RfghptROnYckkVVJMRqgomE,809
190
+ notionary/page/content/syntax/definition/__init__.py,sha256=iKaxk8qUMjGxXrni8-S0ZzR80Y_rZKuXf9pXonzQs5M,338
191
+ notionary/page/content/syntax/definition/grammar.py,sha256=vWJ1rgtekcRH4uIb94q83kYaBxmDD0E5YS7oGQR_1Aw,252
192
+ notionary/page/content/syntax/definition/models.py,sha256=CpiPUceaIH4K-DMV6gEdSB4m6k_hXIDogLjRJ9HeIhE,1247
193
+ notionary/page/content/syntax/definition/registry.py,sha256=RDmy4qbHBn4dhQ-lm9zJhWtyECx9IUJ2qTP3O3jLfmQ,15510
194
+ notionary/page/content/syntax/prompts/__init__.py,sha256=HwKOnjRf3u8-zBUpKXSwrd1f1o5_wb0tNXdrYnFWUr8,140
195
+ notionary/page/content/syntax/prompts/models.py,sha256=it51evqp8b6zuz04Yz8bb7g0-6O_1ZwB5EXyQ2ItGx8,247
196
+ notionary/page/content/syntax/prompts/registry.py,sha256=kRAQWpu9LfahMza4bLv4sGY6Lbp5KqeuthG9Av1FPR4,33556
197
+ notionary/page/properties/client.py,sha256=WiFY-60QzxDg3jtwlDECBwDbOEncPLkwi5uQNsj2Ou8,7046
198
+ notionary/page/properties/factory.py,sha256=HKrRsWUTqhyQGsxt1W1z3rCjpU7VYqtV6MWJcvvgQU8,1296
199
+ notionary/page/properties/schemas.py,sha256=0QOgbtJYsAI8oVnp6ZNgHhiJqRHWRRDpD8B8oYPCUKo,8548
200
+ notionary/page/properties/service.py,sha256=e46oFlnVkYXRIlGqRwhndnWNXXgwAZY9wroTXAH9d9w,13978
201
+ notionary/shared/typings.py,sha256=LKg_NJvqi0ZuyB6I995zg4XCyijGKY0T_bW90YiI5_g,58
202
+ notionary/shared/entity/client.py,sha256=tM2jUnYaEUfn0XDA0fZeKYww3bhNviCx6zmjYOzJjzs,1216
203
+ notionary/shared/entity/dto_parsers.py,sha256=xTrxdpecslDdt10bJYjQrHH3eP6YkuMYWcI8lxSMwXA,612
204
+ notionary/shared/entity/entity_metadata_update_client.py,sha256=aDRq1jEJ2WrJZ9f2CJiJ8GSaGftFiftMM2ZHjs7xynY,2456
205
+ notionary/shared/entity/schemas.py,sha256=0p5ONgWX2Lg-bQlZ4Smp8k9OnwBUphIPv2TovzZrxao,1072
206
+ notionary/shared/entity/service.py,sha256=W7MkZmrjDVbeohmDE_DP0YUYwOkhFkeH2u7XbmrgKj4,10145
207
+ notionary/shared/models/file.py,sha256=chZzEWC-3yhEabYuF4xoRSy8-CJ3bX9NBupCqpsTmqQ,1154
208
+ notionary/shared/models/icon.py,sha256=cnkd0_eQqOhfuFkusqubehrupABJtuZC-xYrRBIs0JE,469
209
+ notionary/shared/models/parent.py,sha256=fptJhWHot35jN9IH9BhsXNMZfNClc8av1G2TR6SqRmY,888
210
+ notionary/shared/properties/type.py,sha256=04KNeWGzphJ2hN6AbVhfDfF89XxtSGzcmnatcPHkEQI,780
211
+ notionary/user/__init__.py,sha256=O1sa9EPnJKZgpEAARJhzgh0ULqmwB-JNIgoPUCwDGMo,111
212
+ notionary/user/base.py,sha256=OKiD4fJc6qCl0XNIZdek0JNXK_e6W-QYOA7fj63c7Xk,4418
213
+ notionary/user/bot.py,sha256=422Z40BGGkTbr3fu359jBX-nxihdCNJkZQU9xbiQQX4,2642
214
+ notionary/user/client.py,sha256=bPGtM9htHV0vzcvem05MpfSAO5UZusjzZBLGYg20jVE,1434
215
+ notionary/user/factory.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
+ notionary/user/person.py,sha256=_O54NbSDQnVcl9VI0Ggi4zgA8psr4MruuwAiaI71x-M,1170
217
+ notionary/user/schemas.py,sha256=iIZPPm-k6xTcX4Pcb_4kdS_kLFGuzK96XSH8D2FpQ5M,1440
218
+ notionary/user/service.py,sha256=GXkQB3ZPTbgf_9aCCcdvEG1uKp92G9LW1xd5aJBMhjM,2629
219
+ notionary/utils/date.py,sha256=HPwqmZoylTFKkyI8q4BJXT3q9B39nE55uVZAyG4JnDw,1729
220
+ notionary/utils/decorators.py,sha256=JXc9Of8JbM4PMkUUnvZdyX_qvi2_X_9I9-ILI41rA3E,3792
221
+ notionary/utils/fuzzy.py,sha256=Xzqj_v_rUVwk9ep9v6GNVkGkQ2njum34ViEe0ew6H2M,1808
222
+ notionary/utils/pagination.py,sha256=xxV4blbvMvbeicaU4SeKNvoOOCw8s8GF0Rj4FPJaZgA,3427
223
+ notionary/utils/uuid_utils.py,sha256=ygTQdiKmdtyb2iY7d9kuYbo8uGSeuhiHH2PhUza6ZUw,579
224
+ notionary/utils/mixins/logging.py,sha256=L-J6UPaiR0dusaswYkvvW4yR0IK6_xzBv3WSFEXKG5w,1678
225
+ notionary/workspace/__init__.py,sha256=xrygBj5RNzLm69bhuxc2pptPs1wIwAMLf30GUEF3OYY,227
226
+ notionary/workspace/client.py,sha256=yChqszwc1FZeuWboqDSEMSkBPNhDO5buOGpdWqJDxLM,2447
227
+ notionary/workspace/schemas.py,sha256=uITRJpqHZD7LF7wOqZ6Cdx51a4Uk9rWZ110ib9EbIrA,562
228
+ notionary/workspace/service.py,sha256=AxBqbNASIzChzBbMoLt4kNj0LhZaVa3CCBLpf6mU6NM,5713
229
+ notionary/workspace/query/__init__.py,sha256=qK-D7DVUpAeil6hQBJ0Cyi2m-nCcz5TA5qso70eyDw4,173
230
+ notionary/workspace/query/builder.py,sha256=0QV0OHAWIU0O5tXOeTQFKKNNmwaC81nLk_ecHrxdokE,2887
231
+ notionary/workspace/query/models.py,sha256=isebZ9wyvj75C65nhw3VsuJygyZmgZBNX8D5VOf3TAM,1851
232
+ notionary/workspace/query/service.py,sha256=hDxuOfKtyWwrDI3Pip0Sip9VNFyxsbc3Ur9VsC25wrY,5265
233
+ notionary-0.4.2.dist-info/METADATA,sha256=bW3TV-QgeHBJlcVDuvcaFOLVLZ0V4kpQXc2-rj0_gXA,6493
234
+ notionary-0.4.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
235
+ notionary-0.4.2.dist-info/licenses/LICENSE,sha256=FLNy3l12swSnCggq3zOW_3gh4uaZ12DGZL1tR6Bc5Sk,1102
236
+ notionary-0.4.2.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- # PageBlockClient
@@ -1,5 +0,0 @@
1
- from .grammar import MarkdownGrammar
2
- from .models import SyntaxDefinition
3
- from .registry import SyntaxRegistry
4
-
5
- __all__ = ["MarkdownGrammar", "SyntaxDefinition", "SyntaxRegistry"]
@@ -1,66 +0,0 @@
1
- import re
2
- from dataclasses import dataclass
3
- from enum import StrEnum
4
-
5
-
6
- class SyntaxRegistryKey(StrEnum):
7
- AUDIO = "audio"
8
- BOOKMARK = "bookmark"
9
- IMAGE = "image"
10
- VIDEO = "video"
11
- FILE = "file"
12
- PDF = "pdf"
13
-
14
- # List blocks
15
- BULLETED_LIST = "bulleted_list"
16
- NUMBERED_LIST = "numbered_list"
17
- TO_DO = "todo"
18
- TO_DO_DONE = "todo_done"
19
-
20
- TOGGLE = "toggle"
21
- TOGGLEABLE_HEADING = "toggleable_heading"
22
- CALLOUT = "callout"
23
- QUOTE = "quote"
24
- CODE = "code"
25
-
26
- COLUMN_LIST = "column_list"
27
- COLUMN = "column"
28
-
29
- # Heading blocks
30
- HEADING_1 = "heading_1"
31
- HEADING_2 = "heading_2"
32
- HEADING_3 = "heading_3"
33
- HEADING = "heading" # Shared pattern for regular headings
34
-
35
- DIVIDER = "divider"
36
- BREADCRUMB = "breadcrumb"
37
- TABLE_OF_CONTENTS = "table_of_contents"
38
- EQUATION = "equation"
39
- EMBED = "embed"
40
- TABLE = "table"
41
- TABLE_ROW = "table_row"
42
-
43
- CAPTION = "caption"
44
- SPACE = "space"
45
-
46
-
47
- # some elemente need closing delimiters, others not
48
- # either use union type or validate config in service
49
- @dataclass(frozen=True)
50
- class SyntaxDefinition:
51
- """
52
- Defines the syntax pattern for a block type.
53
-
54
- Attributes:
55
- start_delimiter: The opening delimiter (e.g., "```", "+++", ">")
56
- end_delimiter: The optional closing delimiter (empty string if none)
57
- regex_pattern: The compiled regex pattern to match this syntax
58
- end_regex_pattern: Optional compiled regex pattern for end delimiter
59
- is_multiline_block: Whether this block can contain child blocks
60
- is_inline: Whether this is an inline syntax (like [audio](url))
61
- """
62
-
63
- start_delimiter: str
64
- end_delimiter: str
65
- regex_pattern: re.Pattern
66
- end_regex_pattern: re.Pattern | None = None