frameio 0.0.23__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.

Potentially problematic release.


This version of frameio might be problematic. Click here for more details.

Files changed (363) hide show
  1. frameio/__init__.py +1115 -0
  2. frameio/account_permissions/__init__.py +4 -0
  3. frameio/account_permissions/client.py +182 -0
  4. frameio/account_permissions/raw_client.py +301 -0
  5. frameio/accounts/__init__.py +4 -0
  6. frameio/accounts/client.py +151 -0
  7. frameio/accounts/raw_client.py +281 -0
  8. frameio/client.py +439 -0
  9. frameio/comments/__init__.py +34 -0
  10. frameio/comments/client.py +596 -0
  11. frameio/comments/raw_client.py +1252 -0
  12. frameio/comments/types/__init__.py +38 -0
  13. frameio/comments/types/create_comment_params_data.py +25 -0
  14. frameio/comments/types/update_comment_params_data.py +25 -0
  15. frameio/core/__init__.py +110 -0
  16. frameio/core/api_error.py +23 -0
  17. frameio/core/client_wrapper.py +87 -0
  18. frameio/core/datetime_utils.py +28 -0
  19. frameio/core/file.py +67 -0
  20. frameio/core/force_multipart.py +18 -0
  21. frameio/core/http_client.py +543 -0
  22. frameio/core/http_response.py +55 -0
  23. frameio/core/jsonable_encoder.py +100 -0
  24. frameio/core/pagination.py +82 -0
  25. frameio/core/pydantic_utilities.py +258 -0
  26. frameio/core/query_encoder.py +58 -0
  27. frameio/core/remove_none_from_dict.py +11 -0
  28. frameio/core/request_options.py +35 -0
  29. frameio/core/serialization.py +276 -0
  30. frameio/environment.py +7 -0
  31. frameio/errors/__init__.py +53 -0
  32. frameio/errors/bad_request_error.py +11 -0
  33. frameio/errors/forbidden_error.py +11 -0
  34. frameio/errors/not_found_error.py +11 -0
  35. frameio/errors/too_many_requests_error.py +11 -0
  36. frameio/errors/unauthorized_error.py +11 -0
  37. frameio/errors/unprocessable_entity_error.py +10 -0
  38. frameio/files/__init__.py +55 -0
  39. frameio/files/client.py +1136 -0
  40. frameio/files/raw_client.py +2492 -0
  41. frameio/files/types/__init__.py +53 -0
  42. frameio/files/types/file_copy_params_data.py +15 -0
  43. frameio/files/types/file_create_local_upload_params_data.py +20 -0
  44. frameio/files/types/file_create_params_data.py +31 -0
  45. frameio/files/types/file_create_remote_upload_params_data.py +20 -0
  46. frameio/files/types/file_move_params_data.py +15 -0
  47. frameio/files/types/file_update_params_data.py +15 -0
  48. frameio/folders/__init__.py +39 -0
  49. frameio/folders/client.py +988 -0
  50. frameio/folders/raw_client.py +2058 -0
  51. frameio/folders/types/__init__.py +42 -0
  52. frameio/folders/types/folder_copy_params_data.py +15 -0
  53. frameio/folders/types/folder_create_params_data.py +15 -0
  54. frameio/folders/types/folder_move_params_data.py +15 -0
  55. frameio/folders/types/folder_update_params_data.py +15 -0
  56. frameio/metadata/__init__.py +37 -0
  57. frameio/metadata/client.py +291 -0
  58. frameio/metadata/raw_client.py +509 -0
  59. frameio/metadata/types/__init__.py +38 -0
  60. frameio/metadata/types/bulk_update_metadata_params_data.py +23 -0
  61. frameio/metadata/types/bulk_update_metadata_params_data_values_item.py +13 -0
  62. frameio/metadata_fields/__init__.py +103 -0
  63. frameio/metadata_fields/client.py +536 -0
  64. frameio/metadata_fields/raw_client.py +996 -0
  65. frameio/metadata_fields/types/__init__.py +105 -0
  66. frameio/metadata_fields/types/create_field_definition_params_data.py +108 -0
  67. frameio/metadata_fields/types/update_field_definition_params_data.py +114 -0
  68. frameio/project_permissions/__init__.py +4 -0
  69. frameio/project_permissions/client.py +415 -0
  70. frameio/project_permissions/raw_client.py +789 -0
  71. frameio/projects/__init__.py +4 -0
  72. frameio/projects/client.py +582 -0
  73. frameio/projects/raw_client.py +1250 -0
  74. frameio/py.typed +0 -0
  75. frameio/shares/__init__.py +64 -0
  76. frameio/shares/client.py +1192 -0
  77. frameio/shares/raw_client.py +2446 -0
  78. frameio/shares/types/__init__.py +61 -0
  79. frameio/shares/types/add_asset_params_data.py +15 -0
  80. frameio/shares/types/add_reviewers_to_share_params_data.py +18 -0
  81. frameio/shares/types/add_reviewers_to_share_params_data_reviewers.py +27 -0
  82. frameio/shares/types/create_share_params_data.py +25 -0
  83. frameio/shares/types/remove_reviewer_params_data.py +13 -0
  84. frameio/shares/types/remove_reviewer_params_data_reviewers.py +27 -0
  85. frameio/shares/types/update_share_params_data.py +33 -0
  86. frameio/shares/types/update_share_params_data_access.py +5 -0
  87. frameio/types/__init__.py +959 -0
  88. frameio/types/account.py +65 -0
  89. frameio/types/account_roles_item.py +5 -0
  90. frameio/types/account_user_role.py +23 -0
  91. frameio/types/account_user_role_role.py +5 -0
  92. frameio/types/account_user_roles_response.py +27 -0
  93. frameio/types/accounts_response.py +23 -0
  94. frameio/types/add_asset_response.py +13 -0
  95. frameio/types/add_asset_response_data.py +15 -0
  96. frameio/types/asset_common.py +48 -0
  97. frameio/types/asset_common_type.py +5 -0
  98. frameio/types/asset_common_with_includes.py +56 -0
  99. frameio/types/asset_include.py +5 -0
  100. frameio/types/asset_share_params.py +38 -0
  101. frameio/types/asset_share_params_access.py +5 -0
  102. frameio/types/asset_with_includes.py +72 -0
  103. frameio/types/assets_with_includes_response.py +23 -0
  104. frameio/types/bad_request.py +13 -0
  105. frameio/types/bad_request_errors_item.py +15 -0
  106. frameio/types/bad_request_errors_item_source.py +12 -0
  107. frameio/types/boolean_value.py +12 -0
  108. frameio/types/children_type.py +3 -0
  109. frameio/types/comment.py +52 -0
  110. frameio/types/comment_include.py +5 -0
  111. frameio/types/comment_response.py +13 -0
  112. frameio/types/comment_with_includes.py +17 -0
  113. frameio/types/comment_with_includes_response.py +13 -0
  114. frameio/types/comments_with_includes_response.py +23 -0
  115. frameio/types/date_definition.py +43 -0
  116. frameio/types/date_definition_field_configuration.py +21 -0
  117. frameio/types/date_definition_field_configuration_display_format.py +7 -0
  118. frameio/types/date_definition_field_configuration_time_format.py +5 -0
  119. frameio/types/date_definition_params.py +17 -0
  120. frameio/types/date_definition_params_field_configuration.py +23 -0
  121. frameio/types/date_definition_params_field_configuration_display_format.py +7 -0
  122. frameio/types/date_definition_params_field_configuration_time_format.py +7 -0
  123. frameio/types/date_definition_with_includes.py +13 -0
  124. frameio/types/date_value.py +12 -0
  125. frameio/types/email.py +3 -0
  126. frameio/types/field_definition.py +163 -0
  127. frameio/types/field_definition_include.py +5 -0
  128. frameio/types/field_definition_response.py +13 -0
  129. frameio/types/field_definition_with_includes.py +174 -0
  130. frameio/types/field_definitions_with_includes_response.py +27 -0
  131. frameio/types/field_value_common.py +29 -0
  132. frameio/types/file.py +60 -0
  133. frameio/types/file_copy_response.py +13 -0
  134. frameio/types/file_remote_upload_response.py +17 -0
  135. frameio/types/file_response.py +13 -0
  136. frameio/types/file_status.py +5 -0
  137. frameio/types/file_upload_status.py +41 -0
  138. frameio/types/file_upload_status_response.py +13 -0
  139. frameio/types/file_with_includes.py +25 -0
  140. frameio/types/file_with_includes_response.py +13 -0
  141. frameio/types/file_with_includes_status.py +5 -0
  142. frameio/types/file_with_media_links_include.py +19 -0
  143. frameio/types/file_with_upload_urls.py +16 -0
  144. frameio/types/file_with_upload_urls_response.py +13 -0
  145. frameio/types/folder.py +15 -0
  146. frameio/types/folder_copy_response.py +13 -0
  147. frameio/types/folder_response.py +13 -0
  148. frameio/types/folder_with_includes.py +61 -0
  149. frameio/types/folder_with_includes_response.py +13 -0
  150. frameio/types/folders_with_includes_response.py +23 -0
  151. frameio/types/forbidden.py +13 -0
  152. frameio/types/forbidden_errors_item.py +15 -0
  153. frameio/types/forbidden_errors_item_source.py +12 -0
  154. frameio/types/include.py +5 -0
  155. frameio/types/include_total_count.py +3 -0
  156. frameio/types/integer_value.py +12 -0
  157. frameio/types/json_error_response.py +13 -0
  158. frameio/types/json_error_response_errors_item.py +15 -0
  159. frameio/types/json_error_response_errors_item_source.py +12 -0
  160. frameio/types/links.py +22 -0
  161. frameio/types/long_text_definition.py +43 -0
  162. frameio/types/long_text_definition_field_configuration.py +10 -0
  163. frameio/types/long_text_definition_params.py +15 -0
  164. frameio/types/long_text_definition_with_includes.py +13 -0
  165. frameio/types/media_link_common.py +17 -0
  166. frameio/types/media_links_collection.py +23 -0
  167. frameio/types/metadata_field.py +145 -0
  168. frameio/types/metadata_response.py +13 -0
  169. frameio/types/metadata_with_definition.py +21 -0
  170. frameio/types/multi_select_value.py +14 -0
  171. frameio/types/multi_user_value.py +20 -0
  172. frameio/types/multi_user_value_member_options_type.py +5 -0
  173. frameio/types/no_content.py +3 -0
  174. frameio/types/not_found.py +13 -0
  175. frameio/types/not_found_errors_item.py +15 -0
  176. frameio/types/not_found_errors_item_source.py +12 -0
  177. frameio/types/number_definition.py +43 -0
  178. frameio/types/number_definition_field_configuration.py +21 -0
  179. frameio/types/number_definition_field_configuration_number_format.py +7 -0
  180. frameio/types/number_definition_params.py +17 -0
  181. frameio/types/number_definition_params_field_configuration.py +23 -0
  182. frameio/types/number_definition_params_field_configuration_number_format.py +7 -0
  183. frameio/types/number_definition_with_includes.py +13 -0
  184. frameio/types/number_value.py +12 -0
  185. frameio/types/original_media_link.py +16 -0
  186. frameio/types/profile.py +34 -0
  187. frameio/types/profile_response.py +17 -0
  188. frameio/types/project.py +55 -0
  189. frameio/types/project_include.py +5 -0
  190. frameio/types/project_params.py +17 -0
  191. frameio/types/project_params_data.py +15 -0
  192. frameio/types/project_response.py +17 -0
  193. frameio/types/project_with_includes.py +18 -0
  194. frameio/types/project_with_includes_response.py +17 -0
  195. frameio/types/projects_with_includes_response.py +27 -0
  196. frameio/types/rating_definition.py +43 -0
  197. frameio/types/rating_definition_field_configuration.py +22 -0
  198. frameio/types/rating_definition_field_configuration_style.py +5 -0
  199. frameio/types/rating_definition_params.py +17 -0
  200. frameio/types/rating_definition_params_field_configuration.py +22 -0
  201. frameio/types/rating_definition_params_field_configuration_style.py +5 -0
  202. frameio/types/rating_definition_with_includes.py +13 -0
  203. frameio/types/remove_asset_response.py +13 -0
  204. frameio/types/remove_asset_response_data.py +15 -0
  205. frameio/types/rendition_media_link.py +19 -0
  206. frameio/types/request_after_opaque_cursor.py +5 -0
  207. frameio/types/request_page_size.py +3 -0
  208. frameio/types/select_definition.py +43 -0
  209. frameio/types/select_definition_field_configuration.py +18 -0
  210. frameio/types/select_definition_field_configuration_options_item.py +22 -0
  211. frameio/types/select_definition_params.py +17 -0
  212. frameio/types/select_definition_params_field_configuration.py +20 -0
  213. frameio/types/select_definition_params_field_configuration_options_item.py +20 -0
  214. frameio/types/select_definition_with_includes.py +13 -0
  215. frameio/types/select_multi_definition.py +43 -0
  216. frameio/types/select_multi_definition_field_configuration.py +18 -0
  217. frameio/types/select_multi_definition_field_configuration_options_item.py +22 -0
  218. frameio/types/select_multi_definition_params.py +17 -0
  219. frameio/types/select_multi_definition_params_field_configuration.py +20 -0
  220. frameio/types/select_multi_definition_params_field_configuration_options_item.py +20 -0
  221. frameio/types/select_multi_definition_with_includes.py +13 -0
  222. frameio/types/select_option.py +20 -0
  223. frameio/types/select_value.py +14 -0
  224. frameio/types/share.py +66 -0
  225. frameio/types/share_access.py +5 -0
  226. frameio/types/share_response.py +13 -0
  227. frameio/types/share_reviewers_response.py +27 -0
  228. frameio/types/shares_response.py +27 -0
  229. frameio/types/single_user_value.py +20 -0
  230. frameio/types/single_user_value_member_options_type.py +5 -0
  231. frameio/types/text_definition.py +43 -0
  232. frameio/types/text_definition_field_configuration.py +10 -0
  233. frameio/types/text_definition_params.py +15 -0
  234. frameio/types/text_definition_with_includes.py +13 -0
  235. frameio/types/text_value.py +12 -0
  236. frameio/types/toggle_definition.py +43 -0
  237. frameio/types/toggle_definition_field_configuration.py +15 -0
  238. frameio/types/toggle_definition_params.py +17 -0
  239. frameio/types/toggle_definition_params_field_configuration.py +15 -0
  240. frameio/types/toggle_definition_with_includes.py +13 -0
  241. frameio/types/too_many_requests.py +13 -0
  242. frameio/types/too_many_requests_errors_item.py +15 -0
  243. frameio/types/too_many_requests_errors_item_source.py +12 -0
  244. frameio/types/unauthorized.py +13 -0
  245. frameio/types/unauthorized_errors_item.py +15 -0
  246. frameio/types/unauthorized_errors_item_source.py +12 -0
  247. frameio/types/unprocessable_entity.py +13 -0
  248. frameio/types/unprocessable_entity_errors_item.py +15 -0
  249. frameio/types/unprocessable_entity_errors_item_source.py +12 -0
  250. frameio/types/update_date_definition_params.py +17 -0
  251. frameio/types/update_date_definition_params_field_configuration.py +25 -0
  252. frameio/types/update_date_definition_params_field_configuration_display_format.py +7 -0
  253. frameio/types/update_date_definition_params_field_configuration_time_format.py +7 -0
  254. frameio/types/update_long_text_definition_params.py +15 -0
  255. frameio/types/update_number_definition_params.py +17 -0
  256. frameio/types/update_number_definition_params_field_configuration.py +25 -0
  257. frameio/types/update_number_definition_params_field_configuration_number_format.py +7 -0
  258. frameio/types/update_rating_definition_params.py +17 -0
  259. frameio/types/update_rating_definition_params_field_configuration.py +24 -0
  260. frameio/types/update_rating_definition_params_field_configuration_style.py +7 -0
  261. frameio/types/update_select_definition_params.py +17 -0
  262. frameio/types/update_select_definition_params_field_configuration.py +20 -0
  263. frameio/types/update_select_definition_params_field_configuration_options_item.py +20 -0
  264. frameio/types/update_select_multi_definition_params.py +19 -0
  265. frameio/types/update_select_multi_definition_params_field_configuration.py +20 -0
  266. frameio/types/update_select_multi_definition_params_field_configuration_options_item.py +20 -0
  267. frameio/types/update_text_definition_params.py +15 -0
  268. frameio/types/update_toggle_definition_params.py +17 -0
  269. frameio/types/update_toggle_definition_params_field_configuration.py +15 -0
  270. frameio/types/update_user_multi_definition_params.py +17 -0
  271. frameio/types/update_user_multi_definition_params_field_configuration.py +25 -0
  272. frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item.py +20 -0
  273. frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item_type.py +7 -0
  274. frameio/types/update_user_multi_definition_params_field_configuration_member_options_type.py +7 -0
  275. frameio/types/update_user_roles_params.py +17 -0
  276. frameio/types/update_user_roles_params_data.py +13 -0
  277. frameio/types/update_user_roles_params_data_role.py +7 -0
  278. frameio/types/update_user_roles_response.py +13 -0
  279. frameio/types/update_user_roles_response_data.py +13 -0
  280. frameio/types/update_user_roles_response_data_role.py +7 -0
  281. frameio/types/update_user_single_definition_params.py +17 -0
  282. frameio/types/update_user_single_definition_params_field_configuration.py +25 -0
  283. frameio/types/update_user_single_definition_params_field_configuration_custom_members_item.py +20 -0
  284. frameio/types/update_user_single_definition_params_field_configuration_custom_members_item_type.py +7 -0
  285. frameio/types/update_user_single_definition_params_field_configuration_member_options_type.py +7 -0
  286. frameio/types/upload_url.py +20 -0
  287. frameio/types/user.py +44 -0
  288. frameio/types/user_multi_definition.py +43 -0
  289. frameio/types/user_multi_definition_field_configuration.py +23 -0
  290. frameio/types/user_multi_definition_field_configuration_custom_members_item.py +20 -0
  291. frameio/types/user_multi_definition_field_configuration_custom_members_item_type.py +7 -0
  292. frameio/types/user_multi_definition_field_configuration_member_options_type.py +7 -0
  293. frameio/types/user_multi_definition_params.py +17 -0
  294. frameio/types/user_multi_definition_params_field_configuration.py +23 -0
  295. frameio/types/user_multi_definition_params_field_configuration_custom_members_item.py +20 -0
  296. frameio/types/user_multi_definition_params_field_configuration_custom_members_item_type.py +7 -0
  297. frameio/types/user_multi_definition_params_field_configuration_member_options_type.py +7 -0
  298. frameio/types/user_multi_definition_with_includes.py +13 -0
  299. frameio/types/user_role.py +19 -0
  300. frameio/types/user_role_role.py +7 -0
  301. frameio/types/user_roles_response.py +27 -0
  302. frameio/types/user_single_definition.py +43 -0
  303. frameio/types/user_single_definition_field_configuration.py +23 -0
  304. frameio/types/user_single_definition_field_configuration_custom_members_item.py +20 -0
  305. frameio/types/user_single_definition_field_configuration_custom_members_item_type.py +7 -0
  306. frameio/types/user_single_definition_field_configuration_member_options_type.py +7 -0
  307. frameio/types/user_single_definition_params.py +17 -0
  308. frameio/types/user_single_definition_params_field_configuration.py +23 -0
  309. frameio/types/user_single_definition_params_field_configuration_custom_members_item.py +20 -0
  310. frameio/types/user_single_definition_params_field_configuration_custom_members_item_type.py +7 -0
  311. frameio/types/user_single_definition_params_field_configuration_member_options_type.py +7 -0
  312. frameio/types/user_single_definition_with_includes.py +13 -0
  313. frameio/types/user_value.py +18 -0
  314. frameio/types/user_value_type.py +5 -0
  315. frameio/types/uuid_.py +3 -0
  316. frameio/types/version_stack.py +50 -0
  317. frameio/types/version_stack_copy_response.py +13 -0
  318. frameio/types/version_stack_response.py +13 -0
  319. frameio/types/version_stack_with_includes.py +58 -0
  320. frameio/types/version_stack_with_includes_response.py +13 -0
  321. frameio/types/version_stacks_with_includes_response.py +19 -0
  322. frameio/types/webhook.py +36 -0
  323. frameio/types/webhook_create_response.py +17 -0
  324. frameio/types/webhook_create_response_data.py +15 -0
  325. frameio/types/webhook_events.py +5 -0
  326. frameio/types/webhook_response.py +13 -0
  327. frameio/types/webhook_with_includes.py +13 -0
  328. frameio/types/webhook_with_includes_response.py +13 -0
  329. frameio/types/webhooks_with_includes_response.py +23 -0
  330. frameio/types/workspace.py +40 -0
  331. frameio/types/workspace_include.py +5 -0
  332. frameio/types/workspace_params.py +17 -0
  333. frameio/types/workspace_params_data.py +15 -0
  334. frameio/types/workspace_response.py +17 -0
  335. frameio/types/workspace_with_includes.py +13 -0
  336. frameio/types/workspace_with_includes_response.py +17 -0
  337. frameio/types/workspaces_with_includes_response.py +27 -0
  338. frameio/users/__init__.py +4 -0
  339. frameio/users/client.py +100 -0
  340. frameio/users/raw_client.py +234 -0
  341. frameio/version.py +3 -0
  342. frameio/version_stacks/__init__.py +38 -0
  343. frameio/version_stacks/client.py +699 -0
  344. frameio/version_stacks/raw_client.py +1359 -0
  345. frameio/version_stacks/types/__init__.py +40 -0
  346. frameio/version_stacks/types/version_stack_copy_params_data.py +15 -0
  347. frameio/version_stacks/types/version_stack_create_params_data.py +19 -0
  348. frameio/version_stacks/types/version_stack_move_params_data.py +15 -0
  349. frameio/webhooks/__init__.py +34 -0
  350. frameio/webhooks/client.py +782 -0
  351. frameio/webhooks/raw_client.py +1312 -0
  352. frameio/webhooks/types/__init__.py +38 -0
  353. frameio/webhooks/types/webhook_create_params_data.py +18 -0
  354. frameio/webhooks/types/webhook_update_params_data.py +23 -0
  355. frameio/workspace_permissions/__init__.py +4 -0
  356. frameio/workspace_permissions/client.py +419 -0
  357. frameio/workspace_permissions/raw_client.py +789 -0
  358. frameio/workspaces/__init__.py +4 -0
  359. frameio/workspaces/client.py +552 -0
  360. frameio/workspaces/raw_client.py +1226 -0
  361. frameio-0.0.23.dist-info/METADATA +255 -0
  362. frameio-0.0.23.dist-info/RECORD +363 -0
  363. frameio-0.0.23.dist-info/WHEEL +4 -0
@@ -0,0 +1,255 @@
1
+ Metadata-Version: 2.1
2
+ Name: frameio
3
+ Version: 0.0.23
4
+ Summary:
5
+ Requires-Python: >=3.8,<4.0
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Operating System :: MacOS
8
+ Classifier: Operating System :: Microsoft :: Windows
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Operating System :: POSIX
11
+ Classifier: Operating System :: POSIX :: Linux
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Dist: httpx (>=0.21.2)
22
+ Requires-Dist: pydantic (>=2.0.0)
23
+ Requires-Dist: pydantic-core (>=2.18.2)
24
+ Requires-Dist: typing_extensions (>=4.0.0)
25
+ Description-Content-Type: text/markdown
26
+
27
+ # Frameio Python Library
28
+
29
+ [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FFrameio%2Fpython-sdk)
30
+ [![pypi](https://img.shields.io/pypi/v/frameio)](https://pypi.python.org/pypi/frameio)
31
+
32
+ The Frameio Python library provides convenient access to the Frameio APIs from Python.
33
+
34
+ ## Installation
35
+
36
+ ```sh
37
+ pip install frameio
38
+ ```
39
+
40
+ ## Reference
41
+
42
+ A full reference for this library is available [here](https://github.com/Frameio/python-sdk/blob/HEAD/./reference.md).
43
+
44
+ ## Usage
45
+
46
+ Instantiate and use the client with the following:
47
+
48
+ ```python
49
+ from frameio import (
50
+ Frameio,
51
+ SelectDefinitionParamsFieldConfiguration,
52
+ SelectDefinitionParamsFieldConfigurationOptionsItem,
53
+ )
54
+ from frameio.metadata_fields import CreateFieldDefinitionParamsData_Select
55
+
56
+ client = Frameio(
57
+ token="YOUR_TOKEN",
58
+ )
59
+ client.metadata_fields.metadata_field_definitions_create(
60
+ account_id="b2702c44-c6da-4bb6-8bbd-be6e547ccf1b",
61
+ data=CreateFieldDefinitionParamsData_Select(
62
+ field_configuration=SelectDefinitionParamsFieldConfiguration(
63
+ enable_add_new=False,
64
+ options=[
65
+ SelectDefinitionParamsFieldConfigurationOptionsItem(
66
+ display_name="Option 1",
67
+ ),
68
+ SelectDefinitionParamsFieldConfigurationOptionsItem(
69
+ display_name="Option 2",
70
+ ),
71
+ ],
72
+ ),
73
+ name="Fields definition name",
74
+ ),
75
+ )
76
+ ```
77
+
78
+ ## Async Client
79
+
80
+ The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
81
+
82
+ ```python
83
+ import asyncio
84
+
85
+ from frameio import (
86
+ AsyncFrameio,
87
+ SelectDefinitionParamsFieldConfiguration,
88
+ SelectDefinitionParamsFieldConfigurationOptionsItem,
89
+ )
90
+ from frameio.metadata_fields import CreateFieldDefinitionParamsData_Select
91
+
92
+ client = AsyncFrameio(
93
+ token="YOUR_TOKEN",
94
+ )
95
+
96
+
97
+ async def main() -> None:
98
+ await client.metadata_fields.metadata_field_definitions_create(
99
+ account_id="b2702c44-c6da-4bb6-8bbd-be6e547ccf1b",
100
+ data=CreateFieldDefinitionParamsData_Select(
101
+ field_configuration=SelectDefinitionParamsFieldConfiguration(
102
+ enable_add_new=False,
103
+ options=[
104
+ SelectDefinitionParamsFieldConfigurationOptionsItem(
105
+ display_name="Option 1",
106
+ ),
107
+ SelectDefinitionParamsFieldConfigurationOptionsItem(
108
+ display_name="Option 2",
109
+ ),
110
+ ],
111
+ ),
112
+ name="Fields definition name",
113
+ ),
114
+ )
115
+
116
+
117
+ asyncio.run(main())
118
+ ```
119
+
120
+ ## Exception Handling
121
+
122
+ When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
123
+ will be thrown.
124
+
125
+ ```python
126
+ from frameio.core.api_error import ApiError
127
+
128
+ try:
129
+ client.metadata_fields.metadata_field_definitions_create(...)
130
+ except ApiError as e:
131
+ print(e.status_code)
132
+ print(e.body)
133
+ ```
134
+
135
+ ## Pagination
136
+
137
+ Paginated requests will return a `SyncPager` or `AsyncPager`, which can be used as generators for the underlying object.
138
+
139
+ ```python
140
+ from frameio import Frameio
141
+
142
+ client = Frameio(
143
+ token="YOUR_TOKEN",
144
+ )
145
+ response = client.project_permissions.index(
146
+ account_id="b2702c44-c6da-4bb6-8bbd-be6e547ccf1b",
147
+ project_id="b2702c44-c6da-4bb6-8bbd-be6e547ccf1b",
148
+ page_size=10,
149
+ include_total_count=False,
150
+ )
151
+ for item in response:
152
+ yield item
153
+ # alternatively, you can paginate page-by-page
154
+ for page in response.iter_pages():
155
+ yield page
156
+ ```
157
+
158
+ ## Advanced
159
+
160
+ ### Access Raw Response Data
161
+
162
+ The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
163
+ The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
164
+
165
+ ```python
166
+ from frameio import Frameio
167
+
168
+ client = Frameio(
169
+ ...,
170
+ )
171
+ response = (
172
+ client.metadata_fields.with_raw_response.metadata_field_definitions_create(
173
+ ...
174
+ )
175
+ )
176
+ print(response.headers) # access the response headers
177
+ print(response.data) # access the underlying object
178
+ pager = client.project_permissions.index(...)
179
+ print(pager.response.headers) # access the response headers for the first page
180
+ for item in pager:
181
+ print(item) # access the underlying object(s)
182
+ for page in pager.iter_pages():
183
+ print(page.response.headers) # access the response headers for each page
184
+ for item in page:
185
+ print(item) # access the underlying object(s)
186
+ ```
187
+
188
+ ### Retries
189
+
190
+ The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
191
+ as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
192
+ retry limit (default: 2).
193
+
194
+ A request is deemed retryable when any of the following HTTP status codes is returned:
195
+
196
+ - [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
197
+ - [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
198
+ - [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
199
+
200
+ Use the `max_retries` request option to configure this behavior.
201
+
202
+ ```python
203
+ client.metadata_fields.metadata_field_definitions_create(..., request_options={
204
+ "max_retries": 1
205
+ })
206
+ ```
207
+
208
+ ### Timeouts
209
+
210
+ The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
211
+
212
+ ```python
213
+
214
+ from frameio import Frameio
215
+
216
+ client = Frameio(
217
+ ...,
218
+ timeout=20.0,
219
+ )
220
+
221
+
222
+ # Override timeout for a specific method
223
+ client.metadata_fields.metadata_field_definitions_create(..., request_options={
224
+ "timeout_in_seconds": 1
225
+ })
226
+ ```
227
+
228
+ ### Custom Client
229
+
230
+ You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
231
+ and transports.
232
+
233
+ ```python
234
+ import httpx
235
+ from frameio import Frameio
236
+
237
+ client = Frameio(
238
+ ...,
239
+ httpx_client=httpx.Client(
240
+ proxy="http://my.test.proxy.example.com",
241
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
242
+ ),
243
+ )
244
+ ```
245
+
246
+ ## Contributing
247
+
248
+ While we value open-source contributions to this SDK, this library is generated programmatically.
249
+ Additions made directly to this library would have to be moved over to our generation code,
250
+ otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
251
+ a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
252
+ an issue first to discuss with us!
253
+
254
+ On the other hand, contributions to the README are always very welcome!
255
+
@@ -0,0 +1,363 @@
1
+ frameio/__init__.py,sha256=ibKAii_GTkyalOH2IYwz8bRML_qqJX0kZJ_yG59lknE,42982
2
+ frameio/account_permissions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
3
+ frameio/account_permissions/client.py,sha256=kD66UeWtC1jKrbtLFXoTFnSxlTstg_LctgLNaXIDTOc,5832
4
+ frameio/account_permissions/raw_client.py,sha256=PGe57F-dTdkAGeb3O5ffCF0M0KZ9Mst7Rmnm8LFUlfc,12039
5
+ frameio/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
6
+ frameio/accounts/client.py,sha256=_SNqH-npWPmoutjyWKH0yd4sgg6__8A9Wb85Gz_LBdU,4689
7
+ frameio/accounts/raw_client.py,sha256=jGw2KuyGagH6Ks6bjAulQL-G5cZxEuhq_NBGdTr2Zmw,11155
8
+ frameio/client.py,sha256=N9sTYGiL3AQap36nCkSwmxV6CRRpScQb06qRc34wV7k,17449
9
+ frameio/comments/__init__.py,sha256=rzmTZihoFYfPp8rCJqC3Sap7aZMLm99VQcWTMPQZdaY,1178
10
+ frameio/comments/client.py,sha256=HKdHz2mH3-L6aRshPaSNcjphnLsq9P_WJxhZucx1V18,16170
11
+ frameio/comments/raw_client.py,sha256=eAJsV0Bi1tmqh-wBa_oaU9c5WZ-djJcNo_XdBy0SN1U,47604
12
+ frameio/comments/types/__init__.py,sha256=EJ8ASFYqfuT7qpsnabBg7LlPzdXcjU7nuV7fLQvHfvI,1295
13
+ frameio/comments/types/create_comment_params_data.py,sha256=HMMsYTyU1P68dVKVAZJVjkeQ1Zl8kBU6el0UtvDbSGw,747
14
+ frameio/comments/types/update_comment_params_data.py,sha256=TgZ1XA19Qx9ZRDO14npWPz6H8WXeK7bcgohGUTXqkzw,765
15
+ frameio/core/__init__.py,sha256=LS5PHdFxqIeDNAKS0etuTxkpIkpm7Xi6gnJhhaUK49Q,3774
16
+ frameio/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
17
+ frameio/core/client_wrapper.py,sha256=B9eBUlmv7Pk_ZiVhKzPq9Um8DzCN7Ita5f6Ui8KnpmA,2813
18
+ frameio/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
19
+ frameio/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
20
+ frameio/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
21
+ frameio/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
22
+ frameio/core/http_response.py,sha256=A6URkoTBCiryctAA-m9EiDWOsHgM5oYAlcYVc_YOiiI,1330
23
+ frameio/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
24
+ frameio/core/pagination.py,sha256=SpDs3pQ1WiHcSLqV56r6Tc3h7qAneBO5vQUoMYeN6rU,2864
25
+ frameio/core/pydantic_utilities.py,sha256=kdepxVbqP7nmMhh9rttKiMF3bQEYRZiiS2-JIyTLfAc,10824
26
+ frameio/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
27
+ frameio/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
28
+ frameio/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
29
+ frameio/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
30
+ frameio/environment.py,sha256=9YNZEb81tWR5vXyjHCnDNHILZ0J08C2EWejNQN73j5Q,153
31
+ frameio/errors/__init__.py,sha256=J133Se5dUUV1x7oEnY30SSfkPRcE0vu-WrnIimLNvkg,1761
32
+ frameio/errors/bad_request_error.py,sha256=nTFOOw_8efVVdC5M5A14z6wvsRpB-gPl7H-p9U73pis,364
33
+ frameio/errors/forbidden_error.py,sha256=uV3BLIKyC83TfMJgC54Sbs8lvNE1mJH4u9ajLdBCZIk,359
34
+ frameio/errors/not_found_error.py,sha256=bIq7EIzxebVPyUiCdJmLRETdwJ13-kAwwBmDx0HUuMA,356
35
+ frameio/errors/too_many_requests_error.py,sha256=OXs3iBjCWfk72tx1hFYL_MR8u1D9hSlZeUcpNUSQdn4,385
36
+ frameio/errors/unauthorized_error.py,sha256=35BDLSn2TzEcJakrYLIOImYHnfanouT0XX9q1HkALvg,371
37
+ frameio/errors/unprocessable_entity_error.py,sha256=JqxtzIhvjkpQDqbT9Q-go1n-gyv9PsYqq0ng_ZYyBMo,347
38
+ frameio/files/__init__.py,sha256=M9ELVm51f1BnZuRfJaNjlNInH3A6yL6qAZGn7NBlobE,1648
39
+ frameio/files/client.py,sha256=sFT0YkkFw_EKibs4zIqOgGd-3qCn9ANI5p2ba6C9Q80,32443
40
+ frameio/files/raw_client.py,sha256=4MKJSUZzIwI9VRDev24jx8xh-_j1OcHQpNeHHMycCPI,96042
41
+ frameio/files/types/__init__.py,sha256=BJuvaUdRhhB-0MJ_CwxoEAPKrz3TQ3FdyWd_IbRGGW4,1963
42
+ frameio/files/types/file_copy_params_data.py,sha256=QpWa0sMxVy0KrYeJpP3pJ19Pmhx_WDlBHPAQV0OgGM4,476
43
+ frameio/files/types/file_create_local_upload_params_data.py,sha256=CM7qZLoahtQvPhEGUn3a9BRn14P_DNHG5wiqMeKrkl8,504
44
+ frameio/files/types/file_create_params_data.py,sha256=178C-1k2vp7OzfbMu1fqG1jrdvuE_v5PC6434VNkedU,748
45
+ frameio/files/types/file_create_remote_upload_params_data.py,sha256=ITVK39Ere5OrCIow7apSNCgoibBPoRvmqywguNcI7ao,536
46
+ frameio/files/types/file_move_params_data.py,sha256=Z_hK3fifuvRbRNUfmU4Z3H15kZ71Pc--uirwDClcpyY,464
47
+ frameio/files/types/file_update_params_data.py,sha256=lauQ2_MwldTSw3DklD8LBfct0Uj8aSJLQZgB_nT9lHY,432
48
+ frameio/folders/__init__.py,sha256=fmnE_LuF9vD9Zl3TNmLu_VhAAVUO7HvXq9tYwLUTw7E,1351
49
+ frameio/folders/client.py,sha256=JnSqNFtTnoDSebFc4wgYIM0npYuh2HdzhWUixPi1r90,28080
50
+ frameio/folders/raw_client.py,sha256=SATIupsBixWuGP1g6kxr8pv9tZEjITpMn87l5dFbQIk,78711
51
+ frameio/folders/types/__init__.py,sha256=fAmbv4B7l0YjstBI8nWZnnTGYweEtQ5S4Gpg7ombIic,1569
52
+ frameio/folders/types/folder_copy_params_data.py,sha256=r-3EjZKmyf2v6a0jaYM4Bqu7c4anP4OH9e85FcFnI5E,480
53
+ frameio/folders/types/folder_create_params_data.py,sha256=6AUfNn1Ri-V9e92G08MTmkciPlXfdlWjonDAnxGb-kU,436
54
+ frameio/folders/types/folder_move_params_data.py,sha256=v0mGQ30e4A_7WTcU1zkK0AFCtlylIc6tlthmor6M9Xo,449
55
+ frameio/folders/types/folder_update_params_data.py,sha256=v1VVk_u1FkCAyRiHJyByHlBeOLIggSw7fg9K1a5b9PQ,436
56
+ frameio/metadata/__init__.py,sha256=5rcFdceuro7TYHXm8xoCFRhnIFDqvqdCgOUw2TrGBRk,1249
57
+ frameio/metadata/client.py,sha256=Yqay9Y8Omq5U3nbXiJGYHulpm4ML5VDzC7WLmhM_zPA,8427
58
+ frameio/metadata/raw_client.py,sha256=o73SA7h4f0-vftLJQlj9U291ysajHo06e3WQStV4aec,19136
59
+ frameio/metadata/types/__init__.py,sha256=nbZisYe8NCAEx1j12kiMfHWKkMfECmM03ti7krRblkI,1403
60
+ frameio/metadata/types/bulk_update_metadata_params_data.py,sha256=M6wx1JWd5UZd3KoBEZFrfTjmxYP4GQe9yVrrLJ64-0w,963
61
+ frameio/metadata/types/bulk_update_metadata_params_data_values_item.py,sha256=nupqMlL4EVLXWGjtf10M2hswR8Pq3WTSUREa3IoZQ7I,433
62
+ frameio/metadata_fields/__init__.py,sha256=1IvMCuRpWhCbpTj3wG6xMSQWphI5UkQjc5mK4vtUbRk,4333
63
+ frameio/metadata_fields/client.py,sha256=x8nYa0Jip2XE_g4YNU046zKqSfsmviG5di4umlGKtDA,17326
64
+ frameio/metadata_fields/raw_client.py,sha256=Vpud0SBWljXXfXeFG9GY5ld5GaftHvZQykJi7mMALRM,39401
65
+ frameio/metadata_fields/types/__init__.py,sha256=0BnbgmiUViX1zzfwhhVpsVWDUBrZ5EufQXIdTPx2vpw,5084
66
+ frameio/metadata_fields/types/create_field_definition_params_data.py,sha256=lawWpTmQHOwDAwuWzcFbGm4OWoxrsF22_sq7xwKoJ_g,4871
67
+ frameio/metadata_fields/types/update_field_definition_params_data.py,sha256=SLa81gPTbcMY5_Sirib3jPmzB1Q9RFILLZaB0bh5inQ,5458
68
+ frameio/project_permissions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
69
+ frameio/project_permissions/client.py,sha256=aaHoKOfo-U5bUx_Fegb3vbrTec7z_M5Cgbzs6P3oOzg,12037
70
+ frameio/project_permissions/raw_client.py,sha256=aMt2EQNYJ_3L9n2Kj5pGwggJwCR9NlmFB46CnXuhzpU,30293
71
+ frameio/projects/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
72
+ frameio/projects/client.py,sha256=z4pcXoqQz7fStNug2qicp0mV-6C0m9gdm-7JBBUmZvU,15679
73
+ frameio/projects/raw_client.py,sha256=vm_ZcaehhOimh7JgrXzElCya0qwMDTicp5eBhaS0FtE,47517
74
+ frameio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ frameio/shares/__init__.py,sha256=6rduyfp2-oS7p6ajVQGbDtGV36V27H_bTbVXrfUXkk8,2053
76
+ frameio/shares/client.py,sha256=3SmA5QPsJPshGYW_NWPB1EJBfLJ676cmC-kfPiANluA,33152
77
+ frameio/shares/raw_client.py,sha256=9upd9EDbVmArWpOJJHJjEjFA6rSXka8HCfzRqMKQeFI,92959
78
+ frameio/shares/types/__init__.py,sha256=bHgzOUXsdupkebQm_7LFn9Vmwn4C4pl_1LkJ8iJnhuI,2549
79
+ frameio/shares/types/add_asset_params_data.py,sha256=GTLtelfM8LKlHlLTwSTTCW5QvDvFDJaRQKoXGgF-DFM,420
80
+ frameio/shares/types/add_reviewers_to_share_params_data.py,sha256=m4mHkAoBv6aRSguS1H9uHT1F1x4pYMduObczWn3nzWI,590
81
+ frameio/shares/types/add_reviewers_to_share_params_data_reviewers.py,sha256=UadhN2QSuUP-SLt-UyDGc3GeFCParrS_DOKomwlMyOA,769
82
+ frameio/shares/types/create_share_params_data.py,sha256=mVdJ0w7T6Gb8zqMbk1aMjOZ8V_B1YryG7uvZnRz6_g4,819
83
+ frameio/shares/types/remove_reviewer_params_data.py,sha256=KJWsdJvURSkZi5KouxYMrl4Hh_DcdE_9DEwjthmFNOo,478
84
+ frameio/shares/types/remove_reviewer_params_data_reviewers.py,sha256=NZFKj1WHm_C5XOu_RR_XYPp0I4mP81_rZLwNmtMyl2w,786
85
+ frameio/shares/types/update_share_params_data.py,sha256=cPtYzxNdVBxn1ISXgGEKKDXEPe_6qWyM1d3s1VSm50E,1116
86
+ frameio/shares/types/update_share_params_data_access.py,sha256=OxO5svrbZqkljY-rPCKKeI35LLhzF5iN7R_RGrrbcfA,171
87
+ frameio/types/__init__.py,sha256=tCeyLuLAhuJ4P_EFFy-CqYX5b3SSLkYLMW7tlsqGKE0,51222
88
+ frameio/types/account.py,sha256=Dw8_rQZosRVNhHBJsmlHssjw5qAXtSC2nGWWm3BFfLo,1540
89
+ frameio/types/account_roles_item.py,sha256=u1Po8aBlnD5SjGEtq1xN-B5v31zK3N465Q8R09wrHSw,168
90
+ frameio/types/account_user_role.py,sha256=8MrGF_oDGn6AlBa0b5_KE_sef-CVOgz0zEwoA6lbqPg,593
91
+ frameio/types/account_user_role_role.py,sha256=AbxJhLnHhpAKl5VnEbU6ISp0i5LAXozLL7rzg1aGH9A,183
92
+ frameio/types/account_user_roles_response.py,sha256=b3L7ZGDL23SdSDBk2NSSwDj9crFs8e8UbJOHsRf1nic,687
93
+ frameio/types/accounts_response.py,sha256=pdvA9gwK5FZLa-nN2zx0U8jVd9jSUOtYRxzLe4eFcEE,587
94
+ frameio/types/add_asset_response.py,sha256=aFiPai1LyPkcpAm9xQlwPEQ1QzmkhpkOfB8blfEMs-I,424
95
+ frameio/types/add_asset_response_data.py,sha256=_si4lhFMu2GxLmolVRMNLvlNr5P91frsu1o7W_JmlqE,373
96
+ frameio/types/asset_common.py,sha256=FAKdtZ_Rc5pymXVFOIQxntfqyWxO4uHCcFKQZhYD53A,1061
97
+ frameio/types/asset_common_type.py,sha256=x8Ox4WZwSyu3xy5iWFYylRUJFCaRDSkuw2HYjiFvZYE,174
98
+ frameio/types/asset_common_with_includes.py,sha256=VDhbq6_9HGOn8hzD8uePmq-D033l7SyjE0toitsk9IM,1345
99
+ frameio/types/asset_include.py,sha256=nhW9TCEuj9Us2HOgJjJPUnMfUpi7R3E2SDlOoK-bRXs,170
100
+ frameio/types/asset_share_params.py,sha256=OAoBlcHPoHOxWefK4n5NbRl58oJWNhcM2I_uRTfBt_0,1193
101
+ frameio/types/asset_share_params_access.py,sha256=0wRAhZHAyW2jKjLdTG_D8t2_aLBVmAuNEGqg_9BGU74,166
102
+ frameio/types/asset_with_includes.py,sha256=LTx9MY3j_9KVVEvM9Gpu3mOBoSrdUHRnejaluyMYpE4,2537
103
+ frameio/types/assets_with_includes_response.py,sha256=icv6n-6e7PnQ3VK5EQL_2dCPfG9dV_P1cB_J7pshCmc,627
104
+ frameio/types/bad_request.py,sha256=96rHnJq6H3styzxilUHSv8ztvotoHfRjYFOmCvau6d8,433
105
+ frameio/types/bad_request_errors_item.py,sha256=bVEezlNjw4kOOEujZcZy-0HBeMklM_9hDY2045j_o-Y,528
106
+ frameio/types/bad_request_errors_item_source.py,sha256=xdTtcJLg8VScX0MFFU9iZ82UTHE5uWEO3baDXgthey0,386
107
+ frameio/types/boolean_value.py,sha256=pHUNXZMNRyPUIBNKdKdY2LgQoqGDdjCPuZjHHkxBF38,361
108
+ frameio/types/children_type.py,sha256=JFANp64SH1fo4-w49ObQdcBfXn_vgcAGYVvYtsWHlQg,84
109
+ frameio/types/comment.py,sha256=Nd4SsQaks7cIpuCRtw9SY1GzP6QFgwnPVUOxqobGEtg,1099
110
+ frameio/types/comment_include.py,sha256=lSk74XUz5jbPTO0bB5-G7mpo95sWzWuh87pnDuC85Fs,158
111
+ frameio/types/comment_response.py,sha256=pvN1bms1__gSPnkiSIqZdVORDFvjcfpdCN46Tqf5YRk,381
112
+ frameio/types/comment_with_includes.py,sha256=d7VtvxP6WewiT7QsLaCJdV2gzQ2BTSR5cTQoU0NpUnI,472
113
+ frameio/types/comment_with_includes_response.py,sha256=IkeC7YkUysmSRXIahsvoca0ZXiIAbCfOV4S5BBglwLM,431
114
+ frameio/types/comments_with_includes_response.py,sha256=GE2jMnSJe_CrXpdadekvOxNXldInh9bAFKHzq7nyq7U,637
115
+ frameio/types/date_definition.py,sha256=Rzqoo2RW52FIulGAVH6UzPugoLbyZmoUXf82n9AmslM,1021
116
+ frameio/types/date_definition_field_configuration.py,sha256=9F4gnjpVSNXepVZxudcJfBqpWrcciiovcccypM66kNo,859
117
+ frameio/types/date_definition_field_configuration_display_format.py,sha256=Y4ibwxr13JU3j-AHmYyWxnUA0jmvcZ13ikFOij5aJZs,218
118
+ frameio/types/date_definition_field_configuration_time_format.py,sha256=GLQgbvXfZbllPJP4tJVOrNBenYZTsZfkWXOUDbwF3nQ,201
119
+ frameio/types/date_definition_params.py,sha256=PIPSFTeyITek8_yXlxQK61uaHRwI0vC11hHNFj44oto,573
120
+ frameio/types/date_definition_params_field_configuration.py,sha256=MSdfBUNJVwycFujl3Ld9hg2QQNsAEk1XbC312GYeexM,912
121
+ frameio/types/date_definition_params_field_configuration_display_format.py,sha256=NuZyjSYS_YmOSI5kULgXZvQhPN1JK-VlbrKX-ciJtNY,224
122
+ frameio/types/date_definition_params_field_configuration_time_format.py,sha256=ohuxZkS-v9jW6ys3N7v09YwjkPfz3oNThjZtraH9xEQ,213
123
+ frameio/types/date_definition_with_includes.py,sha256=etBSOz120KAQ1DDMD3sbhRKUR0tEKliq1sIUVw8usIs,393
124
+ frameio/types/date_value.py,sha256=55HNkuzoh5e1CKZ7t9jKzq5KUvgJg5d53Gli8D_XLTY,357
125
+ frameio/types/email.py,sha256=AY1iypxRYBYMfasDmpPkmvTYPktZtppVPacN5Wb2K_4,77
126
+ frameio/types/field_definition.py,sha256=-7cbW7HRlVP-sIl1OPv_AC1CzCfiAgrsYZ358KKYaXM,5669
127
+ frameio/types/field_definition_include.py,sha256=aHkHx8g6R0axmp7Jp5jvBhjXKBrtZRdSEzf_8nrYHKU,131
128
+ frameio/types/field_definition_response.py,sha256=u_8Le-Yo-zhopnnBhCmgydELflwzI12gjczoFMA0JZI,414
129
+ frameio/types/field_definition_with_includes.py,sha256=lnGvZeWfam4hqqEqkn_k6fymMd4m4021ptLUxN8Grws,6364
130
+ frameio/types/field_definitions_with_includes_response.py,sha256=xtvlVWIw_VckU7RNgblRf61XztNynvSMtNDhwTgjy3w,726
131
+ frameio/types/field_value_common.py,sha256=qvzhXw1bIampoMoJf0MhPRyqTNDoJvY8hg0mntvpH1s,676
132
+ frameio/types/file.py,sha256=jLzI_c8A71sffhqDWsb-9QKxClCgwKbzkn-g0W94PsY,1289
133
+ frameio/types/file_copy_response.py,sha256=wH6gyD7RhIU_D6JCTS5gwMW5nbICxTvAzH-MQTXEoSE,373
134
+ frameio/types/file_remote_upload_response.py,sha256=yD1L3CfNuYWFy7RO42KPCRwyaVbVNEufx9m9uw-Ihbw,508
135
+ frameio/types/file_response.py,sha256=Bqy4mJhA-BacXuSlaF9V28w2OfMZTV6GgqScya2cinc,369
136
+ frameio/types/file_status.py,sha256=7Vbpx5-w9RUIesDyiCCgO7U7qxIy-CZ-SsGhzWba18k,171
137
+ frameio/types/file_upload_status.py,sha256=twzDU3akPIeM9qIPh8_c3pQ-5dML1h7TfnnBwIW_jYI,965
138
+ frameio/types/file_upload_status_response.py,sha256=bjLK4XDdbdRG90K4YE65q1tgm8qxywxx4BaUAOp2ukM,419
139
+ frameio/types/file_with_includes.py,sha256=jD_LivXO7aNx4ev_CImzaTX84UKsqj8ZfYGfEIWKCsY,717
140
+ frameio/types/file_with_includes_response.py,sha256=7-x77FXxI8bR7og6gAO5eqWAuwpgjeJvXi_qRHrd6tw,419
141
+ frameio/types/file_with_includes_status.py,sha256=LoZa4xPvdf-Zc9zLELOyJlX2L0kkq9kmEBopnkPbYBw,183
142
+ frameio/types/file_with_media_links_include.py,sha256=Blx-mbN9BnTPc8LMoueFskNifMAvkGG8XUpj8Ee74nY,445
143
+ frameio/types/file_with_upload_urls.py,sha256=_EUqKfR0pASAZrU2HPsKZfS0V58OIh0wG5-Ei1cvdNI,511
144
+ frameio/types/file_with_upload_urls_response.py,sha256=SfnuIIeohfSOiDmI7FvLsowVfTZ5JBv_rftZVy9RkhU,428
145
+ frameio/types/folder.py,sha256=DV3dQkLD-JFF4ZcE6OPeLWX-5I607yvWuM1PjR0yGy4,405
146
+ frameio/types/folder_copy_response.py,sha256=Nfo4id_1uSFMXyP4Kx4E5maGkivzOKcnm-oFKF0o3gM,381
147
+ frameio/types/folder_response.py,sha256=bk8fPQLvbfqm8JmKH32qzCyKnNl6IrtwFny7M-v4pf8,377
148
+ frameio/types/folder_with_includes.py,sha256=KIhkZTm4nIGeUWI2-kDB9ItzdBOG1BC-CW3_IVEeCZ8,1430
149
+ frameio/types/folder_with_includes_response.py,sha256=97oHq0BRs_Lmhv9Geyl5aXKdIYmxb4HsuBAopSALTZY,427
150
+ frameio/types/folders_with_includes_response.py,sha256=N_dZNePYaneEc6b5t_eroP1NXwcS3xQnr85t91fxeKc,632
151
+ frameio/types/forbidden.py,sha256=dGi_KFwiqndX67iH4bGAvXyPIdSw54YyjllTJnMCnLY,428
152
+ frameio/types/forbidden_errors_item.py,sha256=hZ_W0b-l0VUc_Fd7RD_VJdpEzkpMEFcSiWwLoMGRp7Q,523
153
+ frameio/types/forbidden_errors_item_source.py,sha256=s2vzjZ4b95u-HISPL9i5C4Zkwoh7d6YisxMmNVU_l5U,385
154
+ frameio/types/include.py,sha256=6DMTsj7rCvneHanxTAPBuvuB8W36nWvT_6_nlrRLBSM,116
155
+ frameio/types/include_total_count.py,sha256=B5n2oEmkio7rrf4gsIhJ0s6d0hliZE4GfmEWnTGO_Yg,90
156
+ frameio/types/integer_value.py,sha256=bBTgvPZ4NifRV4JKPlcMdwSy-qdR6bMFfWlgbaYzQ8A,360
157
+ frameio/types/json_error_response.py,sha256=k_3DL50HUsU-RIcvzpbc0RN9IizAcmmD0pth29PDTxY,462
158
+ frameio/types/json_error_response_errors_item.py,sha256=Um1SuwqYqNzuAkBYcXeaCgriFsDpBpg2xk7S1CtvLIk,509
159
+ frameio/types/json_error_response_errors_item_source.py,sha256=EcOkBerKsla7c_vDC9tr7yY3uzgZiNryFa0Z-aT5HBo,369
160
+ frameio/types/links.py,sha256=CHUL8S8ndavDa6fO2G9zUgLK9fqlkThvbpWLekkk6nU,712
161
+ frameio/types/long_text_definition.py,sha256=tSfGSEPeSJ0lkrD0e4mosr3PyIPUjeypJ9m757yYr3A,1038
162
+ frameio/types/long_text_definition_field_configuration.py,sha256=lISctbsSqTs3VkSagsymr6e9sc-6IlM1n38_qSFS4Ts,354
163
+ frameio/types/long_text_definition_params.py,sha256=6w2OEjUaepgm-rp4HC0iTYx5BTzBmDB0lvEwgZ1D7Fw,418
164
+ frameio/types/long_text_definition_with_includes.py,sha256=cgYr4lFR3TQF5KeWDflq5tlJdC_xUsnXHPLcdtWp7eU,410
165
+ frameio/types/media_link_common.py,sha256=NHuPZvAjlS8WUJJTqRq-3Xx92A1ji0X2RTy4wzE5Rew,659
166
+ frameio/types/media_links_collection.py,sha256=WdRMqhPgNsS1DYHPuljhPAdSHigEiZHBoQrnXhzIDTY,935
167
+ frameio/types/metadata_field.py,sha256=aIUPazXvZIwzgII5halme7tOvfJZHTndDD-tVyOINl8,5385
168
+ frameio/types/metadata_response.py,sha256=8SOe_M6jwi87bt33BIr0WrQZWKCh6Z_6Yk2kajW0QZQ,429
169
+ frameio/types/metadata_with_definition.py,sha256=bMSZquV5uwz3Zpomdf96wVMWSYe-IFCiF00Q1N__D5E,551
170
+ frameio/types/multi_select_value.py,sha256=vQLX0tpq6gmA0s2JDO-rPpHFdbLIP4TMrwdCPVfiCnk,495
171
+ frameio/types/multi_user_value.py,sha256=DjLjERUuQWVa-xSnd0aJ7KuBV7VQqILFpox223Nu4tU,777
172
+ frameio/types/multi_user_value_member_options_type.py,sha256=2ibSjdphKulOOjHKnDhBQKVtzakLv7OkmUlXkiL2UBY,188
173
+ frameio/types/no_content.py,sha256=hkA-QMTPKKeNzNfDuEwu_aI3CYPyPt5MrOE53scnOBw,81
174
+ frameio/types/not_found.py,sha256=8areXl-WEpkZ2F4jJ2ffI0m6ot-qf5u4S4roiX_66Io,425
175
+ frameio/types/not_found_errors_item.py,sha256=r4JARDEqEIh9VT2JU_cMfEZLGcL8PpGiwe7NMmY8h0Y,520
176
+ frameio/types/not_found_errors_item_source.py,sha256=2DmFi6p_8uoQYHPjPTLnXqUmSMAS6E1VwmAFUcF_yqE,384
177
+ frameio/types/number_definition.py,sha256=0I-XkByH8nLP6_nqf_Gy4SirNMHWbFkM-ETLgC66fx0,1029
178
+ frameio/types/number_definition_field_configuration.py,sha256=5yuGz5ZArWUowTzT9rG6Khrk8KLr2Ksj3x5DFo_ontY,755
179
+ frameio/types/number_definition_field_configuration_number_format.py,sha256=Efy_qht-p3rAwsoxO3Siab7twLrdCG2eX3mxf0BqmXw,256
180
+ frameio/types/number_definition_params.py,sha256=UZiqGZo6Gu5Cil9O-kOD2LQAgD7RQf1BMvQ2SwPMCr8,581
181
+ frameio/types/number_definition_params_field_configuration.py,sha256=eoMAMm-L9jaq1BMsxaKmVvLXS7mL_ajk3W9qdGbCumo,789
182
+ frameio/types/number_definition_params_field_configuration_number_format.py,sha256=mIDGHBG3HpqcILtXRe3HdQuO7U7T09n8mPPqBXD4AII,262
183
+ frameio/types/number_definition_with_includes.py,sha256=o8xK6Gap0U6ihDEoiKepRVhKq0HUC_byG_ml3WeP10c,401
184
+ frameio/types/number_value.py,sha256=i5Mnqj4pU1C-rq2jFsmqnf83eDI5Fdrf1CrpiB5CkJs,361
185
+ frameio/types/original_media_link.py,sha256=eOVdAwtaQh9wA1Lr-894FVLELpUP0uaroacVC4gNOpw,597
186
+ frameio/types/profile.py,sha256=Pa39JZCMxwrDRccIaMqE-z2tfv7FHBLpCqa_ymbs3fo,660
187
+ frameio/types/profile_response.py,sha256=3R92w5wUwe0f_HbwXzwNUDdNXokNQal04R2-rv5VmhI,415
188
+ frameio/types/project.py,sha256=HLtZcrDKzBHdh5GU5RKZ6NcLZEnidCTKk9__yg9eb5k,1026
189
+ frameio/types/project_include.py,sha256=oRgbS1deDFn7ZFjunD1wjvRPBGejbm6whEEmBhSObPg,121
190
+ frameio/types/project_params.py,sha256=upRJxEZS6feFawbaC3gRn17wh3px9L4XEELc4ZAHMMg,473
191
+ frameio/types/project_params_data.py,sha256=LNNWR7WG-wNoDhVcNIVhiJfTTfPPpRjOiHoI7qEWApU,402
192
+ frameio/types/project_response.py,sha256=EnMN4CbR6BtTFsIelXrfFRyQq_Q5MVzSuG7To73y_t4,427
193
+ frameio/types/project_with_includes.py,sha256=iUZJnGJ1Yy-h6Uo99s4Q3DBt3nVjMpOKiocWLvokShI,472
194
+ frameio/types/project_with_includes_response.py,sha256=79rA9Gvnb-mki0SwV42mzPkC9DRoQe1fPb1_Df0lDGU,477
195
+ frameio/types/projects_with_includes_response.py,sha256=yS_jp8xzQR-OaLU9cVm0QWCyiqMNwLDpNDuuqPeq6m4,676
196
+ frameio/types/rating_definition.py,sha256=bksGk2goSy04g-RP8tDH0nhyGq2FLgBy668GrbOC8rc,1029
197
+ frameio/types/rating_definition_field_configuration.py,sha256=3SxH2jPoY8bQHwsW5msVp_dZSMi2g1lupu5jNG5eHNI,746
198
+ frameio/types/rating_definition_field_configuration_style.py,sha256=--_ma-ety9JDw8oVeALKjOZURHtcRJxmDMu1URs9m4k,193
199
+ frameio/types/rating_definition_params.py,sha256=SkJxX7RV_4nMpFUKWlHYUxLuwk7GPY6xxgBQiWkhRDU,581
200
+ frameio/types/rating_definition_params_field_configuration.py,sha256=ZyqUX7hO9Jpuvk3keir_V-Pb-jMuFbBj-d_haMw3UVg,771
201
+ frameio/types/rating_definition_params_field_configuration_style.py,sha256=wT3t5-XX0SiUSVA4Exri2X-x0lwBvS7HdSwypfCW3OE,199
202
+ frameio/types/rating_definition_with_includes.py,sha256=4cF5VSpyR2tl5O1iP-uxhAzkAYgNa2vuiTef-WomYsw,401
203
+ frameio/types/remove_asset_response.py,sha256=8G5Bbjwfk2xTbllPU0Ef_p_ALA4dAC8ZVSVl8jnqE-o,436
204
+ frameio/types/remove_asset_response_data.py,sha256=2imitZIU0WRCo8AoaYXHzEGljZEdo5LJrlDHNtOEd7w,378
205
+ frameio/types/rendition_media_link.py,sha256=rU9qL6aRjOC-4WffzIKjc6-FC5OtOc5nVDjh49HfVCk,849
206
+ frameio/types/request_after_opaque_cursor.py,sha256=PPysaPMZubbwPMVnHjaJZNXgquSbEQ5hLVBW99OS884,128
207
+ frameio/types/request_page_size.py,sha256=vF-4rZBF5ittN_Se7KhBIoEczgWr4_Oh0R1Jmqxhkd0,87
208
+ frameio/types/select_definition.py,sha256=d4egXV7hYqa5kCMsU-tBqd2P_oFJ0xf8xjtgkrs-G8Y,1029
209
+ frameio/types/select_definition_field_configuration.py,sha256=CwkJy79pvBgyatoAGdvOwctlAv_Sxjjpfw2EZrRUWBo,695
210
+ frameio/types/select_definition_field_configuration_options_item.py,sha256=tp6npBcx9fv_T2dfaf6oFzRqnuy0j2Fb0bxJRqxW7dU,623
211
+ frameio/types/select_definition_params.py,sha256=Vh6GBdWYO2VajWC1Huve7ChHdpLbuvgsqo5GA4k3AP0,581
212
+ frameio/types/select_definition_params_field_configuration.py,sha256=pSCkuA4DIzYtHoRjoVD33QqxKggNk20OasXhNyFGduk,729
213
+ frameio/types/select_definition_params_field_configuration_options_item.py,sha256=GfeKryUpuaVewqCCByQTTL1nNe4UmoId8dpeIyzdO2w,592
214
+ frameio/types/select_definition_with_includes.py,sha256=EoCFnL8AK3A9klVdE1eJxkjD3_FubjLZwaHLSPlpO4Y,401
215
+ frameio/types/select_multi_definition.py,sha256=Eb7M6j68s64jkr-31C3P12kmf65DqwHrmw8-l11Ekz0,1050
216
+ frameio/types/select_multi_definition_field_configuration.py,sha256=X2ymlz-WsYHxC_74avsXevpXlf1dzXFnaeHjSz6Pexg,716
217
+ frameio/types/select_multi_definition_field_configuration_options_item.py,sha256=m_WiKcAa3VfIuJhyrVyc78n4Vo19CPuvtlwUODQDbsw,628
218
+ frameio/types/select_multi_definition_params.py,sha256=PazPS7ZRDiOLVKhgA4qEvdyO9Vra01t9Pzrr0AqVOog,602
219
+ frameio/types/select_multi_definition_params_field_configuration.py,sha256=-bMmenAyQdKrJXtMIPMCGo2twXu9QY5BlbIEUdmkUaQ,750
220
+ frameio/types/select_multi_definition_params_field_configuration_options_item.py,sha256=xdwbbZea-910T5bYlp5_dt9pOrYl5L9qIr5E6xAZXqY,597
221
+ frameio/types/select_multi_definition_with_includes.py,sha256=nDpALWc3amEwybah05sygrD45ajawC9bPmB7hGVXOMs,422
222
+ frameio/types/select_option.py,sha256=ejSlpJR-yRqEBvl54lq0vUE-V2zvgtIvqh31x0Veasc,474
223
+ frameio/types/select_value.py,sha256=XRxEuzM3h6fcwTUiRxk8TU5Tb25ppQ7Md0wMjbVzvnI,490
224
+ frameio/types/share.py,sha256=aNjol3vAAVciPN7H-2HjEE7jWkmeviksdGetL9STl1c,1513
225
+ frameio/types/share_access.py,sha256=1YTculMFwRAOXT0BR4uHALDLGTKJDw4ScbUz0DwHWaE,155
226
+ frameio/types/share_response.py,sha256=8JXJ3Tne5eB-wIfJ2QTspWKPZbTCIstFNln6oH6P_NM,373
227
+ frameio/types/share_reviewers_response.py,sha256=r1ltBbNCk5R9fhrxYqEgcvp4VV1ux8yG0GxCb4kZAwo,635
228
+ frameio/types/shares_response.py,sha256=6OBl0XXpYRMAnkpEkXz2ckaLD598ozJAezPXgYVDrqA,618
229
+ frameio/types/single_user_value.py,sha256=CY60X1xoJNVAz3TseYqa80j2C_lYJLFz7xTcOwnqx0w,781
230
+ frameio/types/single_user_value_member_options_type.py,sha256=b59nrC9Is5flMsqV-5Azfsm8NVQE8XesRojf9sdlEj0,189
231
+ frameio/types/text_definition.py,sha256=YPbn6hd5DNXIHNm9pi2uMN3WoiFwOdFHng8RtiZOaGE,1021
232
+ frameio/types/text_definition_field_configuration.py,sha256=5uK6uk2Ahj7wF-Nid-HsVx1dNn2ty1hagcZ8tN39Dt0,350
233
+ frameio/types/text_definition_params.py,sha256=YM6MXceneoVQiNusiUUPBYFZeBDx__M2V9kNyqVQwoM,414
234
+ frameio/types/text_definition_with_includes.py,sha256=G4HcnUfPxCzG8pq2O3_V6al__1O-kKmQ9COEl0AF0a4,393
235
+ frameio/types/text_value.py,sha256=vpPEWRYHBpcU_O1pqnlh7Hz6R_inRLrjTycFJPfBBNU,357
236
+ frameio/types/toggle_definition.py,sha256=nzH4A4_j-Iu19GQpx5Wzec5IbxX_ylxHOu5IuiomTs4,1029
237
+ frameio/types/toggle_definition_field_configuration.py,sha256=nFp4xFCFFjPxFR7qKphQJn9u4w54QqUh3n2LOmK2XMw,470
238
+ frameio/types/toggle_definition_params.py,sha256=drlNCKZ2GE_VuNInurxAM4IBdtW1gd3tjGTcSZ0pSO0,605
239
+ frameio/types/toggle_definition_params_field_configuration.py,sha256=SdS9mwXlRotk-DWVXyGTSG-e3dePbOrUcafjVZOciFU,476
240
+ frameio/types/toggle_definition_with_includes.py,sha256=o9Nmt_9ciG0Dri6H_-qvWaMMubZHUpUzqRlgkYZXdc8,401
241
+ frameio/types/too_many_requests.py,sha256=cCVqE4ByhcjVeTUol1WlItFxXhEwlfX0AKz6Iq49ynU,454
242
+ frameio/types/too_many_requests_errors_item.py,sha256=Y3HVcYssvggGqJGXPO_nL6EmtWGIxHWlXDG_bV7Xx_E,549
243
+ frameio/types/too_many_requests_errors_item_source.py,sha256=6y7L7dUxZpaaaYSVaE7cmJcoGJO6JF3GUCBN79XuRig,391
244
+ frameio/types/unauthorized.py,sha256=HJ3xQI1wVT8WZ7iA80VLi0DDLv_CGlTH24a2kzq1boA,440
245
+ frameio/types/unauthorized_errors_item.py,sha256=y6zeFamlz-w7nO696hTCBWzrBv3GpsxCU0Z4nraC4Gk,535
246
+ frameio/types/unauthorized_errors_item_source.py,sha256=071dVh6MMi-UY5Ne9ozvyGFFSn7zfICYIo5syLFRAG4,388
247
+ frameio/types/unprocessable_entity.py,sha256=10968b5btuaegkHKMY2yWLud9mhEydOmRa-72AGkFfM,469
248
+ frameio/types/unprocessable_entity_errors_item.py,sha256=T1PV6mhbOtmNwr8y-SY_5t7cn_Wwfkidl8Y2z0ZDRRA,564
249
+ frameio/types/unprocessable_entity_errors_item_source.py,sha256=o6upGV_tn526WrD4qrEa5xhzcGLmw7YoHn23VvmLJ9Y,395
250
+ frameio/types/update_date_definition_params.py,sha256=tWv5OIkYZdWFcAbgc7UX0XYKJsG2sfqz6BoI8J4LnOM,651
251
+ frameio/types/update_date_definition_params_field_configuration.py,sha256=apGTZwgo1E42WrTM-3aA3tf9JWgvGRFUzz5RPHeBhnc,989
252
+ frameio/types/update_date_definition_params_field_configuration_display_format.py,sha256=17Bcw-rYqRQe1O0_EpFdyMWnbd188ltQ-O9y0LwgvI0,230
253
+ frameio/types/update_date_definition_params_field_configuration_time_format.py,sha256=lB6CcGDmfFbVDY6MEPenZBJG4Uad3pQhVoWFqYHU7ao,219
254
+ frameio/types/update_long_text_definition_params.py,sha256=U__wFzTkBWew3xU3uOOHcsp06l6X6mlaGs0nUtA-LsM,453
255
+ frameio/types/update_number_definition_params.py,sha256=MZ62ESrM433xaNg_I0SpWEh8JuvEpYEHmgoZd9EusN8,659
256
+ frameio/types/update_number_definition_params_field_configuration.py,sha256=MldxRY_W99gmD3E5GkOGkaNzO7ebguKth_dwNmgkHvw,857
257
+ frameio/types/update_number_definition_params_field_configuration_number_format.py,sha256=2OPs-I2e-F5xu8jXoLqV35Qm1siYnhBH7Z7Ye_pJ884,268
258
+ frameio/types/update_rating_definition_params.py,sha256=yK5RrFW4FIO8zSxXRq-hu47RaZTGOYwoq32hkYChucU,659
259
+ frameio/types/update_rating_definition_params_field_configuration.py,sha256=WqyhdvjCiqGPkOsgOQYJNQ2FBkkxobOrtlmz6xAA3sQ,829
260
+ frameio/types/update_rating_definition_params_field_configuration_style.py,sha256=QmmlZvVtIiYKTpO8VhriarARKaebn0LBTBmx7fHKQow,211
261
+ frameio/types/update_select_definition_params.py,sha256=veeIdWr8ubf4oyn1z-IWXiiz72MyKx1FmaetGLGIlZ8,659
262
+ frameio/types/update_select_definition_params_field_configuration.py,sha256=0LO4Gjmm-d5XDeEEQSsDulJddDLIvaydmF-KE_0Evv0,778
263
+ frameio/types/update_select_definition_params_field_configuration_options_item.py,sha256=rc-DEBD83x8buKBVLN-V8V_Pf-qa9I8JTuUKppCpDFM,598
264
+ frameio/types/update_select_multi_definition_params.py,sha256=6a775Y0f3_skLQTi0pxf8I4Biiww59QuIiBr8Ff7Mm4,689
265
+ frameio/types/update_select_multi_definition_params_field_configuration.py,sha256=y9pC0SAMqKNP70sYgS_mshmfUahkr7RQ61Trm1GNtUk,799
266
+ frameio/types/update_select_multi_definition_params_field_configuration_options_item.py,sha256=1U5Co-N9gtl2rxw5aEhVZ0Do0TlaDwzkcdt_HLItpGg,603
267
+ frameio/types/update_text_definition_params.py,sha256=UDdQ00SWSlEoxI4egyOVC4VqXS4QY6ah4WYimsvhDAA,449
268
+ frameio/types/update_toggle_definition_params.py,sha256=b1KMoscx6SLMbMfwdq-9wxBdfmBjMXLljYTAwcQCZvY,659
269
+ frameio/types/update_toggle_definition_params_field_configuration.py,sha256=qoMqFXk_ZTSkAVpfXf0gus8zQ2QCLkL1sJkjdOcgB0g,482
270
+ frameio/types/update_user_multi_definition_params.py,sha256=V2hOQkX8RSLiRFGNUxsAYrQxCn58uTK2HtqoiuaclGA,672
271
+ frameio/types/update_user_multi_definition_params_field_configuration.py,sha256=jiWjanbpnaglXW59BxRoC9wxqGC6iF9TQ3YVwMAv-po,995
272
+ frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item.py,sha256=Px7cyCFheEaixl4GJg296UCdK5_2iAY_SMguHi80ZG4,700
273
+ frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item_type.py,sha256=7nvXyKyIEbyLWGcCV0ogD_81kZ9PTfDe9v5x9sAmJlU,230
274
+ frameio/types/update_user_multi_definition_params_field_configuration_member_options_type.py,sha256=4dFToJBq7zc7ZLgVmmqTau50Q0Z9ddK_xctqz21gQSo,229
275
+ frameio/types/update_user_roles_params.py,sha256=l4Xml2bjd89NLmUpYMsPm4waMsWl4gijAPsivr2Dcqg,491
276
+ frameio/types/update_user_roles_params_data.py,sha256=3eRz__6siZTdegNpTKog0xGB_VramtCtyC7laabA82s,462
277
+ frameio/types/update_user_roles_params_data_role.py,sha256=YvBSqrjPuKTlkIGFMygdJuF3LDHsZFWxmTNlimsztHY,220
278
+ frameio/types/update_user_roles_response.py,sha256=JSsnhgAb26AKLHfTiviPKiFG8dA_-bBc8g7Cix1zkoA,453
279
+ frameio/types/update_user_roles_response_data.py,sha256=HLEgvEUq-E13AAYxdsSEfMjeVeZcw2SW-KJdI6UsN5o,494
280
+ frameio/types/update_user_roles_response_data_role.py,sha256=-TshiRVgPYk3lbq9jgR1hePg74bMRQAHm8P4indxbRA,222
281
+ frameio/types/update_user_single_definition_params.py,sha256=djALKvj2zg9D2kiTVWlMZI3pfIDMm5o6ZYJ9YyZOKwk,676
282
+ frameio/types/update_user_single_definition_params_field_configuration.py,sha256=-axvf8m0_p0cH33MOAfnvI2XFvaj7ZEQgeUHMIEe5d4,1000
283
+ frameio/types/update_user_single_definition_params_field_configuration_custom_members_item.py,sha256=1hWhrwt14dJUWJJzrzxlBwpDxePn-SpyOu_qptTt1J0,704
284
+ frameio/types/update_user_single_definition_params_field_configuration_custom_members_item_type.py,sha256=4c8jK_zZmD0bVgAOcneyuKGFaTGEJ7biiopbTx914xc,231
285
+ frameio/types/update_user_single_definition_params_field_configuration_member_options_type.py,sha256=nGRxgzPguQa40O-dEgW7uC8cHXh1fs2ePAG9RWaANSg,230
286
+ frameio/types/upload_url.py,sha256=-BAZdoydH1ayTbj8LXIbbqw3veatI6zq2DwyTArthuM,601
287
+ frameio/types/user.py,sha256=U4W6I-6MxxExeyOclDvGqT6LgTLm3ccBsuqst_LE0Hc,980
288
+ frameio/types/user_multi_definition.py,sha256=vh5YjOklHXrWv3MQ3MHdvyTslg70TdfuLJAtZ7eux-g,1042
289
+ frameio/types/user_multi_definition_field_configuration.py,sha256=txQWjb0T0RqddmO9utqXL9Fl2BsO9yJmoc1lDNCzYmA,867
290
+ frameio/types/user_multi_definition_field_configuration_custom_members_item.py,sha256=8f222aRqiwg5nY1w_AMY38DKcM3Z_l7U2MTblEGLsUQ,650
291
+ frameio/types/user_multi_definition_field_configuration_custom_members_item_type.py,sha256=TEZg7gYBv8b9RSYZfCno7Or8cJ85a0zuuNKc8-W1WNU,218
292
+ frameio/types/user_multi_definition_field_configuration_member_options_type.py,sha256=Xndzuz7VUNOZtaS4yQQU5cegc2q0x8z_s2mtEvKSvdA,217
293
+ frameio/types/user_multi_definition_params.py,sha256=-470Wj7pD15eT4aUzFC-rD7LvQ66d_Qk4pfWo2JO8B0,594
294
+ frameio/types/user_multi_definition_params_field_configuration.py,sha256=lxj4k9CHJvsUksKrn0DCo8ZkIDwYqb2RX0uAcJTDaY0,935
295
+ frameio/types/user_multi_definition_params_field_configuration_custom_members_item.py,sha256=Jg0uXwblREy68Z8Cww_H940uv8QVo7lpTeaujrbmXRU,675
296
+ frameio/types/user_multi_definition_params_field_configuration_custom_members_item_type.py,sha256=0luGJU3C4C8hjCmIBG2jYVQeg_po7oeDz37cugBxzFQ,224
297
+ frameio/types/user_multi_definition_params_field_configuration_member_options_type.py,sha256=mUdSMgAVxioyWXgLM6mv41ZMD808cQwtd-uEu5pOtHk,223
298
+ frameio/types/user_multi_definition_with_includes.py,sha256=L-GpzcFLX7GvQbNdMYrCEFpJXGJZI32Ffd8DSBd_9_0,414
299
+ frameio/types/user_role.py,sha256=TjgBw6t7W3wVjYYbymho6TmoBnF2nampWj9n4eOfUyE,469
300
+ frameio/types/user_role_role.py,sha256=3DlwW5w-VsPVkaiCou7SGNpJXQijKrghryQXIyyz3lg,221
301
+ frameio/types/user_roles_response.py,sha256=8rm-pf08jFQdQNPKTOLSCnvH4jF_m3f5qC8vmA7DuvQ,642
302
+ frameio/types/user_single_definition.py,sha256=nS7JyLHKhAgxYvf9nNnUDJDvS8zJxSe5Uwxnkzuns2o,1046
303
+ frameio/types/user_single_definition_field_configuration.py,sha256=A1dc2qmquNOu0qp6FhIi7h8bWaLvkvZvS8Vv9B77Lfk,874
304
+ frameio/types/user_single_definition_field_configuration_custom_members_item.py,sha256=cwFU7yRZlzmamiOwyqKV2_oSFWl5c-1GrAuAzjyxkMM,654
305
+ frameio/types/user_single_definition_field_configuration_custom_members_item_type.py,sha256=CAI4tR6kvCKX0amH6S1rshzxd0M1RyFvCWYMTq9Rok8,219
306
+ frameio/types/user_single_definition_field_configuration_member_options_type.py,sha256=vqSW4Tq2Y-xZmQ8LRKevv5mY5nUNJjYHuKYiN5vGKS4,218
307
+ frameio/types/user_single_definition_params.py,sha256=0eHpdbCsxPxm8JSAmEEbTE-Zd2pWM3rXRDC7vMlHJYc,598
308
+ frameio/types/user_single_definition_params_field_configuration.py,sha256=GvHaaZ8IQ54ZRiAoyMIhwuZeurg5vWQb5h96v-4h7xw,942
309
+ frameio/types/user_single_definition_params_field_configuration_custom_members_item.py,sha256=cBrfbWRqh4uQb4Zna73C_eUugryg__Qx0Ps7f0o3YKk,679
310
+ frameio/types/user_single_definition_params_field_configuration_custom_members_item_type.py,sha256=0lA1HaB5PQoV50WAVXF78Ekb_CTUpaoNVYRl2zhD4FA,225
311
+ frameio/types/user_single_definition_params_field_configuration_member_options_type.py,sha256=K2hD9jwEvZiXNHmk5yOz_xrm-Wd6Z9USTvKTTqqu9_0,224
312
+ frameio/types/user_single_definition_with_includes.py,sha256=E9eG3H5Vm-XLWTxMvrnOxJxFtOuLAex5jzOVJYZq4Bs,418
313
+ frameio/types/user_value.py,sha256=zoH7ErbJV6uQmZkjoyp2EalUj6ZZgbKtMDDP4qpSw30,480
314
+ frameio/types/user_value_type.py,sha256=SkCeZCToRZ7Imzmh49sN-klmhnWcAidU2NkIb5Rgp5w,167
315
+ frameio/types/uuid_.py,sha256=f_E8s4_PSBql8y7UtecDf75pYxyy2ubmTfBwYh-Q0Oo,76
316
+ frameio/types/version_stack.py,sha256=8ToJBXVkJ5BqOWqAiwxOruZC_j_cFzEajOt81SSkcbk,1091
317
+ frameio/types/version_stack_copy_response.py,sha256=LRz0gkPdASayZFSmw1WM9zo-SYtbSxhtcuJP9JnTa2o,406
318
+ frameio/types/version_stack_response.py,sha256=fF_rQ9TMlAS12GQJ4kzjb9BZpK-3x638QptXRX5krKU,402
319
+ frameio/types/version_stack_with_includes.py,sha256=frfKa48C2wWLmJINAGdJbd8G-qFedVva2iq7MIg1Te4,1413
320
+ frameio/types/version_stack_with_includes_response.py,sha256=SRUYOwuCtxAzvmsgWXWdNvH5Agx_TzLfdweRVyeXSzA,452
321
+ frameio/types/version_stacks_with_includes_response.py,sha256=whf4bTKMs55Y1ApibEmDTuzgPoSm3R0WivHW5JGZd0Q,609
322
+ frameio/types/webhook.py,sha256=lsAocUQw16f24Tkfi2yLmwebQkhRiO8Ao-GkKvLHR2s,826
323
+ frameio/types/webhook_create_response.py,sha256=wCH61UmFFx8TRkgdYChk-r-8YfQULpbV6f7HlPvE4gA,503
324
+ frameio/types/webhook_create_response_data.py,sha256=P82rwcq6NK7j_gDGX370Qmp36M-CQt9Ip6VVLcGC64M,471
325
+ frameio/types/webhook_events.py,sha256=BaJSMz4EW9vbLSUlfbkQvO9aRyEKPK8IIDAWc7hOoWs,113
326
+ frameio/types/webhook_response.py,sha256=OrJGvJhcoNuqt3dxmqAL6S9oChZLXVxTSQopdLx9w8w,381
327
+ frameio/types/webhook_with_includes.py,sha256=f-DkYJpWGGGNI7L6TaTexbeyfFIb-WOPBvs5z-kyRTQ,364
328
+ frameio/types/webhook_with_includes_response.py,sha256=PoEDnHdEXambhYcpxCPhx_Uoe0w3m-s02jJi49Zs9Ts,431
329
+ frameio/types/webhooks_with_includes_response.py,sha256=0Y6VcWlhuct46ffjiQ3lYKMxvwhMZQSFt0dgBtQUPIQ,627
330
+ frameio/types/workspace.py,sha256=F_HvZnTOOUYTDIgi_IIhu-op0njZXmiHPDVlzqfKUSI,766
331
+ frameio/types/workspace_include.py,sha256=rTVk9DpT-LkJRCbBzdouVVkiZWj133K7yxYGZfIcAPc,125
332
+ frameio/types/workspace_params.py,sha256=JXI3rSYY0iL9jJae-0ALeVImA1Xx5gfzRqe1DtjNx5g,457
333
+ frameio/types/workspace_params_data.py,sha256=5tYlTGWBn4e5RamBhYvwnjSIzmrdaDJ4a9DoO3WyTto,435
334
+ frameio/types/workspace_response.py,sha256=AmHSuSFzpyoBKs8AoBy6naC6oMWrjk8ETqNUIEqec7c,437
335
+ frameio/types/workspace_with_includes.py,sha256=K9Z-h0v9FQk00Ay9u4XfRVH8y17plZpxLr9jS_vROss,372
336
+ frameio/types/workspace_with_includes_response.py,sha256=X_IgWxTpJuBLtkuocK554XH360_r41LtpeK3Xa7LWuk,501
337
+ frameio/types/workspaces_with_includes_response.py,sha256=uQ7cIUtGyHDjVvreSavuWVTQP3F8aF_nbiuzguObTFo,695
338
+ frameio/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
339
+ frameio/users/client.py,sha256=SfASvtPo2Jqrc7HLL-5O1LsYVtvuYPjJtFLT1RlhuAY,2774
340
+ frameio/users/raw_client.py,sha256=nnsBJX37ASSi8NrJWB-nyXOw8Fdu0pDU5FIY_pMGoYU,9368
341
+ frameio/version.py,sha256=THw1Q906Kg6c2altRvWiQ44oPlj2x8MSNrPZWs2izlM,74
342
+ frameio/version_stacks/__init__.py,sha256=8WQs7d3hEtWCLZHPGUsmkC2IOLoD4_awFmIBxWGzjRw,1315
343
+ frameio/version_stacks/client.py,sha256=8KFEz99ekUp6vmGDX4lBmIBhz4Puvr7HzElTP_fcqRU,21741
344
+ frameio/version_stacks/raw_client.py,sha256=6v351Pqvh0M7pUexIUtvQexkUKJB_-46hPTXU3Jty_k,53437
345
+ frameio/version_stacks/types/__init__.py,sha256=lOluJfUhE2rdywBh9XnZnE9dw0ef_lcitMxasIrNIXE,1513
346
+ frameio/version_stacks/types/version_stack_copy_params_data.py,sha256=YYAKeR-uzSsj_FzOzB9sUnLgxVbG1VFRZ1zDOcKBBWY,493
347
+ frameio/version_stacks/types/version_stack_create_params_data.py,sha256=WCJEBGfgWhU0Z7gj9tYMZU9RvRBBZLfO4WA5n5MbFpc,809
348
+ frameio/version_stacks/types/version_stack_move_params_data.py,sha256=hviErRiJRgaj6QzXYpTXR0OjVLoEN_3ImMBFtwlbOio,455
349
+ frameio/webhooks/__init__.py,sha256=oEAzW_Cxe-GlFu4JnfRghTWvX-jN5EzNB-WYi11TFCY,1178
350
+ frameio/webhooks/client.py,sha256=qhck6ZDnvevnYI5qQ4XqcGnOZI54TuzvMOtXGO6UG08,23445
351
+ frameio/webhooks/raw_client.py,sha256=p8opOyVb7AvZACcx1miN5i24x5KP_mWfAOqdfC4Vjlc,49737
352
+ frameio/webhooks/types/__init__.py,sha256=xwiyliciFa4WMFzd5uh1Uv7oYLIdz27aH0NsIYJqHWk,1295
353
+ frameio/webhooks/types/webhook_create_params_data.py,sha256=JawetJfR9z1rZuH34K3nh_f5f0WhcGN4Q5xEuWMC0qk,511
354
+ frameio/webhooks/types/webhook_update_params_data.py,sha256=g_UFlgqwa6bhyacnlaniEkod4FO1B-Mo4rRW71wveNA,696
355
+ frameio/workspace_permissions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
356
+ frameio/workspace_permissions/client.py,sha256=TX-CLcVDqhUAzxtLDooT1rXDNdJfLD0QO9c15B-7cF0,12315
357
+ frameio/workspace_permissions/raw_client.py,sha256=PjjbyvEPlm0Jh0fsRvTZoGD88Qf4YbwbE5HEkUSm2Fc,30407
358
+ frameio/workspaces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
359
+ frameio/workspaces/client.py,sha256=DvgNCC385_qnNMtsvaVHEkd_S9U2P9QZYRsibN6bZPU,15235
360
+ frameio/workspaces/raw_client.py,sha256=llkaDCEOjJxjV1f4xp18DgNUbUCqCYCvoDuGPHLXIS0,47241
361
+ frameio-0.0.23.dist-info/METADATA,sha256=tNvpZtBvSqZiWz3522cBYIiUy4k-vt-OuuMHUC7VWfg,7864
362
+ frameio-0.0.23.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
363
+ frameio-0.0.23.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.6.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any