frameio 0.0.28__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.
- frameio/__init__.py +1158 -0
- frameio/account_permissions/__init__.py +4 -0
- frameio/account_permissions/client.py +193 -0
- frameio/account_permissions/raw_client.py +333 -0
- frameio/accounts/__init__.py +4 -0
- frameio/accounts/client.py +162 -0
- frameio/accounts/raw_client.py +309 -0
- frameio/client.py +439 -0
- frameio/comments/__init__.py +38 -0
- frameio/comments/client.py +654 -0
- frameio/comments/raw_client.py +1316 -0
- frameio/comments/types/__init__.py +40 -0
- frameio/comments/types/comments_show_request_include.py +5 -0
- frameio/comments/types/create_comment_params_data.py +33 -0
- frameio/comments/types/update_comment_params_data.py +33 -0
- frameio/core/__init__.py +122 -0
- frameio/core/api_error.py +23 -0
- frameio/core/client_wrapper.py +95 -0
- frameio/core/custom_pagination.py +152 -0
- frameio/core/datetime_utils.py +28 -0
- frameio/core/file.py +67 -0
- frameio/core/force_multipart.py +18 -0
- frameio/core/http_client.py +663 -0
- frameio/core/http_response.py +55 -0
- frameio/core/http_sse/__init__.py +42 -0
- frameio/core/http_sse/_api.py +112 -0
- frameio/core/http_sse/_decoders.py +61 -0
- frameio/core/http_sse/_exceptions.py +7 -0
- frameio/core/http_sse/_models.py +17 -0
- frameio/core/jsonable_encoder.py +100 -0
- frameio/core/pagination.py +82 -0
- frameio/core/pydantic_utilities.py +361 -0
- frameio/core/query_encoder.py +58 -0
- frameio/core/remove_none_from_dict.py +11 -0
- frameio/core/request_options.py +35 -0
- frameio/core/serialization.py +276 -0
- frameio/core/unchecked_base_model.py +376 -0
- frameio/environment.py +7 -0
- frameio/errors/__init__.py +53 -0
- frameio/errors/bad_request_error.py +11 -0
- frameio/errors/forbidden_error.py +11 -0
- frameio/errors/not_found_error.py +11 -0
- frameio/errors/too_many_requests_error.py +11 -0
- frameio/errors/unauthorized_error.py +11 -0
- frameio/errors/unprocessable_entity_error.py +10 -0
- frameio/files/__init__.py +58 -0
- frameio/files/client.py +1171 -0
- frameio/files/raw_client.py +2517 -0
- frameio/files/types/__init__.py +56 -0
- frameio/files/types/file_copy_params_data.py +15 -0
- frameio/files/types/file_create_local_upload_params_data.py +20 -0
- frameio/files/types/file_create_params_data.py +31 -0
- frameio/files/types/file_create_remote_upload_params_data.py +20 -0
- frameio/files/types/file_move_params_data.py +15 -0
- frameio/files/types/file_update_params_data.py +15 -0
- frameio/files/types/files_copy_request_copy_comments.py +5 -0
- frameio/folders/__init__.py +39 -0
- frameio/folders/client.py +1004 -0
- frameio/folders/raw_client.py +2074 -0
- frameio/folders/types/__init__.py +42 -0
- frameio/folders/types/folder_copy_params_data.py +15 -0
- frameio/folders/types/folder_create_params_data.py +15 -0
- frameio/folders/types/folder_move_params_data.py +15 -0
- frameio/folders/types/folder_update_params_data.py +15 -0
- frameio/metadata/__init__.py +37 -0
- frameio/metadata/client.py +293 -0
- frameio/metadata/raw_client.py +509 -0
- frameio/metadata/types/__init__.py +38 -0
- frameio/metadata/types/bulk_update_metadata_params_data.py +23 -0
- frameio/metadata/types/bulk_update_metadata_params_data_values_item.py +13 -0
- frameio/metadata_fields/__init__.py +103 -0
- frameio/metadata_fields/client.py +536 -0
- frameio/metadata_fields/raw_client.py +996 -0
- frameio/metadata_fields/types/__init__.py +105 -0
- frameio/metadata_fields/types/create_field_definition_params_data.py +112 -0
- frameio/metadata_fields/types/update_field_definition_params_data.py +118 -0
- frameio/project_permissions/__init__.py +4 -0
- frameio/project_permissions/client.py +426 -0
- frameio/project_permissions/raw_client.py +824 -0
- frameio/projects/__init__.py +38 -0
- frameio/projects/client.py +604 -0
- frameio/projects/raw_client.py +1286 -0
- frameio/projects/types/__init__.py +40 -0
- frameio/projects/types/project_params_data.py +20 -0
- frameio/projects/types/project_update_params_data.py +26 -0
- frameio/projects/types/project_update_params_data_status.py +5 -0
- frameio/py.typed +0 -0
- frameio/shares/__init__.py +64 -0
- frameio/shares/client.py +1217 -0
- frameio/shares/raw_client.py +2511 -0
- frameio/shares/types/__init__.py +61 -0
- frameio/shares/types/add_asset_params_data.py +15 -0
- frameio/shares/types/add_reviewers_to_share_params_data.py +18 -0
- frameio/shares/types/add_reviewers_to_share_params_data_reviewers.py +27 -0
- frameio/shares/types/create_share_params_data.py +26 -0
- frameio/shares/types/remove_reviewer_params_data.py +13 -0
- frameio/shares/types/remove_reviewer_params_data_reviewers.py +27 -0
- frameio/shares/types/update_share_params_data.py +34 -0
- frameio/shares/types/update_share_params_data_access.py +5 -0
- frameio/types/__init__.py +983 -0
- frameio/types/account.py +70 -0
- frameio/types/account_roles_item.py +5 -0
- frameio/types/account_user_role.py +23 -0
- frameio/types/account_user_role_role.py +5 -0
- frameio/types/account_user_roles_response.py +27 -0
- frameio/types/accounts_response.py +23 -0
- frameio/types/add_asset_response.py +13 -0
- frameio/types/add_asset_response_data.py +15 -0
- frameio/types/asset_common.py +48 -0
- frameio/types/asset_common_type.py +5 -0
- frameio/types/asset_common_with_includes.py +58 -0
- frameio/types/asset_common_with_includes_type.py +5 -0
- frameio/types/asset_include.py +5 -0
- frameio/types/asset_share_params.py +39 -0
- frameio/types/asset_share_params_access.py +5 -0
- frameio/types/asset_with_includes.py +76 -0
- frameio/types/assets_with_includes_response.py +23 -0
- frameio/types/bad_request.py +13 -0
- frameio/types/bad_request_errors_item.py +15 -0
- frameio/types/bad_request_errors_item_source.py +12 -0
- frameio/types/boolean_value.py +12 -0
- frameio/types/children_type.py +3 -0
- frameio/types/comment.py +59 -0
- frameio/types/comment_include.py +5 -0
- frameio/types/comment_response.py +13 -0
- frameio/types/comment_with_includes.py +17 -0
- frameio/types/comment_with_includes_response.py +13 -0
- frameio/types/comments_with_includes_response.py +23 -0
- frameio/types/date_definition.py +49 -0
- frameio/types/date_definition_field_configuration.py +21 -0
- frameio/types/date_definition_field_configuration_display_format.py +7 -0
- frameio/types/date_definition_field_configuration_time_format.py +5 -0
- frameio/types/date_definition_field_type.py +10 -0
- frameio/types/date_definition_params.py +17 -0
- frameio/types/date_definition_params_field_configuration.py +23 -0
- frameio/types/date_definition_params_field_configuration_display_format.py +7 -0
- frameio/types/date_definition_params_field_configuration_time_format.py +7 -0
- frameio/types/date_definition_with_includes.py +13 -0
- frameio/types/date_value.py +12 -0
- frameio/types/email.py +3 -0
- frameio/types/empty_json.py +5 -0
- frameio/types/field_definition.py +167 -0
- frameio/types/field_definition_include.py +5 -0
- frameio/types/field_definition_response.py +13 -0
- frameio/types/field_definition_with_includes.py +178 -0
- frameio/types/field_definitions_with_includes_response.py +27 -0
- frameio/types/field_value_common.py +29 -0
- frameio/types/file.py +60 -0
- frameio/types/file_copy_response.py +13 -0
- frameio/types/file_remote_upload_response.py +17 -0
- frameio/types/file_response.py +13 -0
- frameio/types/file_status.py +5 -0
- frameio/types/file_upload_status.py +41 -0
- frameio/types/file_upload_status_response.py +13 -0
- frameio/types/file_with_includes.py +25 -0
- frameio/types/file_with_includes_response.py +13 -0
- frameio/types/file_with_includes_status.py +5 -0
- frameio/types/file_with_media_links_include.py +19 -0
- frameio/types/file_with_upload_urls.py +16 -0
- frameio/types/file_with_upload_urls_response.py +13 -0
- frameio/types/folder.py +15 -0
- frameio/types/folder_copy_response.py +13 -0
- frameio/types/folder_response.py +13 -0
- frameio/types/folder_with_includes.py +63 -0
- frameio/types/folder_with_includes_response.py +13 -0
- frameio/types/folders_with_includes_response.py +23 -0
- frameio/types/forbidden.py +13 -0
- frameio/types/forbidden_errors_item.py +15 -0
- frameio/types/forbidden_errors_item_source.py +12 -0
- frameio/types/include.py +5 -0
- frameio/types/include_total_count.py +3 -0
- frameio/types/integer_value.py +12 -0
- frameio/types/json_error_response.py +13 -0
- frameio/types/json_error_response_errors_item.py +15 -0
- frameio/types/json_error_response_errors_item_source.py +12 -0
- frameio/types/links.py +22 -0
- frameio/types/long_text_definition.py +49 -0
- frameio/types/long_text_definition_field_configuration.py +10 -0
- frameio/types/long_text_definition_field_type.py +10 -0
- frameio/types/long_text_definition_params.py +15 -0
- frameio/types/long_text_definition_with_includes.py +13 -0
- frameio/types/media_link_common.py +17 -0
- frameio/types/media_links_collection.py +24 -0
- frameio/types/metadata_field.py +149 -0
- frameio/types/metadata_response.py +13 -0
- frameio/types/metadata_with_definition.py +21 -0
- frameio/types/multi_select_value.py +14 -0
- frameio/types/multi_user_value.py +20 -0
- frameio/types/multi_user_value_member_options_type.py +5 -0
- frameio/types/no_content.py +3 -0
- frameio/types/not_found.py +13 -0
- frameio/types/not_found_errors_item.py +15 -0
- frameio/types/not_found_errors_item_source.py +12 -0
- frameio/types/number_definition.py +43 -0
- frameio/types/number_definition_field_configuration.py +21 -0
- frameio/types/number_definition_field_configuration_number_format.py +7 -0
- frameio/types/number_definition_params.py +17 -0
- frameio/types/number_definition_params_field_configuration.py +23 -0
- frameio/types/number_definition_params_field_configuration_number_format.py +7 -0
- frameio/types/number_definition_with_includes.py +13 -0
- frameio/types/number_value.py +12 -0
- frameio/types/original_media_link.py +16 -0
- frameio/types/profile.py +34 -0
- frameio/types/profile_response.py +17 -0
- frameio/types/project.py +66 -0
- frameio/types/project_include.py +5 -0
- frameio/types/project_response.py +17 -0
- frameio/types/project_status.py +5 -0
- frameio/types/project_with_includes.py +18 -0
- frameio/types/project_with_includes_response.py +17 -0
- frameio/types/projects_with_includes_response.py +27 -0
- frameio/types/rating_definition.py +43 -0
- frameio/types/rating_definition_field_configuration.py +22 -0
- frameio/types/rating_definition_field_configuration_style.py +5 -0
- frameio/types/rating_definition_params.py +17 -0
- frameio/types/rating_definition_params_field_configuration.py +22 -0
- frameio/types/rating_definition_params_field_configuration_style.py +5 -0
- frameio/types/rating_definition_with_includes.py +13 -0
- frameio/types/remove_asset_response.py +13 -0
- frameio/types/remove_asset_response_data.py +15 -0
- frameio/types/rendition_media_link.py +19 -0
- frameio/types/request_after_opaque_cursor.py +5 -0
- frameio/types/request_page_size.py +3 -0
- frameio/types/select_definition.py +43 -0
- frameio/types/select_definition_field_configuration.py +18 -0
- frameio/types/select_definition_field_configuration_options_item.py +22 -0
- frameio/types/select_definition_params.py +17 -0
- frameio/types/select_definition_params_field_configuration.py +20 -0
- frameio/types/select_definition_params_field_configuration_options_item.py +20 -0
- frameio/types/select_definition_with_includes.py +13 -0
- frameio/types/select_multi_definition.py +49 -0
- frameio/types/select_multi_definition_field_configuration.py +18 -0
- frameio/types/select_multi_definition_field_configuration_options_item.py +22 -0
- frameio/types/select_multi_definition_field_type.py +10 -0
- frameio/types/select_multi_definition_params.py +17 -0
- frameio/types/select_multi_definition_params_field_configuration.py +20 -0
- frameio/types/select_multi_definition_params_field_configuration_options_item.py +20 -0
- frameio/types/select_multi_definition_with_includes.py +13 -0
- frameio/types/select_option.py +20 -0
- frameio/types/select_value.py +14 -0
- frameio/types/share.py +66 -0
- frameio/types/share_access.py +5 -0
- frameio/types/share_response.py +13 -0
- frameio/types/share_reviewers_response.py +27 -0
- frameio/types/shares_response.py +27 -0
- frameio/types/single_user_value.py +20 -0
- frameio/types/single_user_value_member_options_type.py +5 -0
- frameio/types/text_definition.py +49 -0
- frameio/types/text_definition_field_configuration.py +10 -0
- frameio/types/text_definition_field_type.py +10 -0
- frameio/types/text_definition_params.py +15 -0
- frameio/types/text_definition_with_includes.py +13 -0
- frameio/types/text_value.py +12 -0
- frameio/types/time_stamp.py +5 -0
- frameio/types/toggle_definition.py +43 -0
- frameio/types/toggle_definition_field_configuration.py +15 -0
- frameio/types/toggle_definition_params.py +17 -0
- frameio/types/toggle_definition_params_field_configuration.py +15 -0
- frameio/types/toggle_definition_with_includes.py +13 -0
- frameio/types/too_many_requests.py +13 -0
- frameio/types/too_many_requests_errors_item.py +15 -0
- frameio/types/too_many_requests_errors_item_source.py +12 -0
- frameio/types/unauthorized.py +13 -0
- frameio/types/unauthorized_errors_item.py +15 -0
- frameio/types/unauthorized_errors_item_source.py +12 -0
- frameio/types/unprocessable_entity.py +13 -0
- frameio/types/unprocessable_entity_errors_item.py +15 -0
- frameio/types/unprocessable_entity_errors_item_source.py +12 -0
- frameio/types/update_date_definition_params.py +17 -0
- frameio/types/update_date_definition_params_field_configuration.py +25 -0
- frameio/types/update_date_definition_params_field_configuration_display_format.py +7 -0
- frameio/types/update_date_definition_params_field_configuration_time_format.py +7 -0
- frameio/types/update_long_text_definition_params.py +15 -0
- frameio/types/update_number_definition_params.py +17 -0
- frameio/types/update_number_definition_params_field_configuration.py +25 -0
- frameio/types/update_number_definition_params_field_configuration_number_format.py +7 -0
- frameio/types/update_rating_definition_params.py +17 -0
- frameio/types/update_rating_definition_params_field_configuration.py +24 -0
- frameio/types/update_rating_definition_params_field_configuration_style.py +7 -0
- frameio/types/update_select_definition_params.py +17 -0
- frameio/types/update_select_definition_params_field_configuration.py +20 -0
- frameio/types/update_select_definition_params_field_configuration_options_item.py +20 -0
- frameio/types/update_select_multi_definition_params.py +19 -0
- frameio/types/update_select_multi_definition_params_field_configuration.py +20 -0
- frameio/types/update_select_multi_definition_params_field_configuration_options_item.py +20 -0
- frameio/types/update_text_definition_params.py +15 -0
- frameio/types/update_toggle_definition_params.py +17 -0
- frameio/types/update_toggle_definition_params_field_configuration.py +15 -0
- frameio/types/update_user_multi_definition_params.py +17 -0
- frameio/types/update_user_multi_definition_params_field_configuration.py +25 -0
- frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item.py +20 -0
- frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item_type.py +7 -0
- frameio/types/update_user_multi_definition_params_field_configuration_member_options_type.py +7 -0
- frameio/types/update_user_roles_params.py +17 -0
- frameio/types/update_user_roles_params_data.py +13 -0
- frameio/types/update_user_roles_params_data_role.py +7 -0
- frameio/types/update_user_roles_response.py +13 -0
- frameio/types/update_user_roles_response_data.py +13 -0
- frameio/types/update_user_roles_response_data_role.py +7 -0
- frameio/types/update_user_single_definition_params.py +17 -0
- frameio/types/update_user_single_definition_params_field_configuration.py +25 -0
- frameio/types/update_user_single_definition_params_field_configuration_custom_members_item.py +20 -0
- frameio/types/update_user_single_definition_params_field_configuration_custom_members_item_type.py +7 -0
- frameio/types/update_user_single_definition_params_field_configuration_member_options_type.py +7 -0
- frameio/types/upload_url.py +20 -0
- frameio/types/user.py +44 -0
- frameio/types/user_multi_definition.py +49 -0
- frameio/types/user_multi_definition_field_configuration.py +23 -0
- frameio/types/user_multi_definition_field_configuration_custom_members_item.py +20 -0
- frameio/types/user_multi_definition_field_configuration_custom_members_item_type.py +7 -0
- frameio/types/user_multi_definition_field_configuration_member_options_type.py +7 -0
- frameio/types/user_multi_definition_field_type.py +10 -0
- frameio/types/user_multi_definition_params.py +17 -0
- frameio/types/user_multi_definition_params_field_configuration.py +23 -0
- frameio/types/user_multi_definition_params_field_configuration_custom_members_item.py +20 -0
- frameio/types/user_multi_definition_params_field_configuration_custom_members_item_type.py +7 -0
- frameio/types/user_multi_definition_params_field_configuration_member_options_type.py +7 -0
- frameio/types/user_multi_definition_with_includes.py +13 -0
- frameio/types/user_role.py +19 -0
- frameio/types/user_role_role.py +7 -0
- frameio/types/user_roles_response.py +27 -0
- frameio/types/user_single_definition.py +49 -0
- frameio/types/user_single_definition_field_configuration.py +23 -0
- frameio/types/user_single_definition_field_configuration_custom_members_item.py +20 -0
- frameio/types/user_single_definition_field_configuration_custom_members_item_type.py +7 -0
- frameio/types/user_single_definition_field_configuration_member_options_type.py +7 -0
- frameio/types/user_single_definition_field_type.py +10 -0
- frameio/types/user_single_definition_params.py +17 -0
- frameio/types/user_single_definition_params_field_configuration.py +23 -0
- frameio/types/user_single_definition_params_field_configuration_custom_members_item.py +20 -0
- frameio/types/user_single_definition_params_field_configuration_custom_members_item_type.py +7 -0
- frameio/types/user_single_definition_params_field_configuration_member_options_type.py +7 -0
- frameio/types/user_single_definition_with_includes.py +13 -0
- frameio/types/user_value.py +18 -0
- frameio/types/user_value_type.py +5 -0
- frameio/types/uuid_.py +3 -0
- frameio/types/version_stack.py +50 -0
- frameio/types/version_stack_copy_response.py +13 -0
- frameio/types/version_stack_response.py +13 -0
- frameio/types/version_stack_with_includes.py +60 -0
- frameio/types/version_stack_with_includes_response.py +13 -0
- frameio/types/version_stacks_with_includes_response.py +19 -0
- frameio/types/webhook.py +36 -0
- frameio/types/webhook_create_response.py +17 -0
- frameio/types/webhook_create_response_data.py +15 -0
- frameio/types/webhook_events.py +5 -0
- frameio/types/webhook_response.py +13 -0
- frameio/types/webhook_with_includes.py +13 -0
- frameio/types/webhook_with_includes_response.py +13 -0
- frameio/types/webhooks_with_includes_response.py +23 -0
- frameio/types/workspace.py +40 -0
- frameio/types/workspace_include.py +5 -0
- frameio/types/workspace_params.py +17 -0
- frameio/types/workspace_params_data.py +15 -0
- frameio/types/workspace_response.py +17 -0
- frameio/types/workspace_with_includes.py +13 -0
- frameio/types/workspace_with_includes_response.py +17 -0
- frameio/types/workspaces_with_includes_response.py +27 -0
- frameio/users/__init__.py +4 -0
- frameio/users/client.py +100 -0
- frameio/users/raw_client.py +234 -0
- frameio/version.py +3 -0
- frameio/version_stacks/__init__.py +49 -0
- frameio/version_stacks/client.py +818 -0
- frameio/version_stacks/raw_client.py +1614 -0
- frameio/version_stacks/types/__init__.py +47 -0
- frameio/version_stacks/types/version_stack_copy_params_data.py +15 -0
- frameio/version_stacks/types/version_stack_create_params_data.py +19 -0
- frameio/version_stacks/types/version_stack_move_params_data.py +15 -0
- frameio/version_stacks/types/version_stacks_show_request_include.py +19 -0
- frameio/webhooks/__init__.py +34 -0
- frameio/webhooks/client.py +793 -0
- frameio/webhooks/raw_client.py +1347 -0
- frameio/webhooks/types/__init__.py +38 -0
- frameio/webhooks/types/webhook_create_params_data.py +18 -0
- frameio/webhooks/types/webhook_update_params_data.py +23 -0
- frameio/workspace_permissions/__init__.py +4 -0
- frameio/workspace_permissions/client.py +430 -0
- frameio/workspace_permissions/raw_client.py +824 -0
- frameio/workspaces/__init__.py +4 -0
- frameio/workspaces/client.py +563 -0
- frameio/workspaces/raw_client.py +1259 -0
- frameio-0.0.28.dist-info/METADATA +259 -0
- frameio-0.0.28.dist-info/RECORD +385 -0
- frameio-0.0.28.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,385 @@
|
|
|
1
|
+
frameio/__init__.py,sha256=sQDl0WTBPF6iHw083PodQqC7ZHu5AKnc0NdKegvqXBY,44559
|
|
2
|
+
frameio/account_permissions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
3
|
+
frameio/account_permissions/client.py,sha256=6LHql2s69oXYz90h8nPnUYqo3E4L8AqWjCln94MvQGg,6387
|
|
4
|
+
frameio/account_permissions/raw_client.py,sha256=aYZN3LwJrmQEDTxDi7FJs6aD58vbuWN4AL6_X5jERns,13670
|
|
5
|
+
frameio/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
6
|
+
frameio/accounts/client.py,sha256=MYlzZ0Zc9mzY-90eAzyDBOm3lEbXNCIKmSnOzWsm9Ro,5194
|
|
7
|
+
frameio/accounts/raw_client.py,sha256=sXg5-1VkqR1zj-AUzAuAVW_zzjNoYl9fFSFz3zNGJ6I,12526
|
|
8
|
+
frameio/client.py,sha256=FrksHBG2m93NRYOqD1qhxe6AuBtZ1zvH9z_5CGvU4Rc,17367
|
|
9
|
+
frameio/comments/__init__.py,sha256=CQ5WsmzU9sGaJbEEbTQaE0Lb8WsdsZW4BWZJs0pJBfA,1291
|
|
10
|
+
frameio/comments/client.py,sha256=l9qkMqTGCDWqy5D4GXvg9KHDJxz_gLcMmpTXtfrJ-pU,19023
|
|
11
|
+
frameio/comments/raw_client.py,sha256=se6yhn5r2Tmh4MqHXx4P44Xjtc77DxySScAYTwJJwpY,50184
|
|
12
|
+
frameio/comments/types/__init__.py,sha256=cKGZAitcDa_SBftE9CDRjrSwxa3aGqBYMXZ0D_tueXw,1467
|
|
13
|
+
frameio/comments/types/comments_show_request_include.py,sha256=o3hziVm5kLSIWd60Wr7nx4EtyII8ekYXX5XvXbq8asw,170
|
|
14
|
+
frameio/comments/types/create_comment_params_data.py,sha256=BXlPT5kP5GCcWC5YEku9uisQgW4Dpmm2RYudRt9gjlE,954
|
|
15
|
+
frameio/comments/types/update_comment_params_data.py,sha256=pbLqdm809C_8gCaXAAyoTJAqfFQeByKqSVY0sOoGCqs,972
|
|
16
|
+
frameio/core/__init__.py,sha256=d2TCqYiNzxydW9n4QPKcw_axkB6ag5MtZuOTPhsymsQ,4282
|
|
17
|
+
frameio/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
18
|
+
frameio/core/client_wrapper.py,sha256=CcDFYnlGyrM3XVRypxZwtTLKKBarIfRvspdvA0QriC8,3097
|
|
19
|
+
frameio/core/custom_pagination.py,sha256=DUTKsXK-LhdaARE6mtKixYmJB9QKTB2uSj4Tv30zHhA,5234
|
|
20
|
+
frameio/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
21
|
+
frameio/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
22
|
+
frameio/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
|
|
23
|
+
frameio/core/http_client.py,sha256=cXuS6t54TJ-rSGIGvZlYEz4d_CY8ulJy1thx1hAHoX4,25726
|
|
24
|
+
frameio/core/http_response.py,sha256=A6URkoTBCiryctAA-m9EiDWOsHgM5oYAlcYVc_YOiiI,1330
|
|
25
|
+
frameio/core/http_sse/__init__.py,sha256=vE7RxBmzIfV9SmFDw4YCuDN9DaPuJb3FAnoFDo7bqww,1350
|
|
26
|
+
frameio/core/http_sse/_api.py,sha256=v7bcIkdawmL6Y39HxrM5OiEB1Ci3wzIdu21kCZII-mU,3920
|
|
27
|
+
frameio/core/http_sse/_decoders.py,sha256=tY3L5TZ0y-pgz0Lu1q8ro5Ljz43q4lYyuec73u9WfNw,1733
|
|
28
|
+
frameio/core/http_sse/_exceptions.py,sha256=o8Tp-e8Lvmtn_5MVSYbkW9rVrpwFg5pnKbOcHfrHH14,127
|
|
29
|
+
frameio/core/http_sse/_models.py,sha256=kKvCCm8e6gCilulJpiHv4f2OPVxo9CydLboEqMhplPI,397
|
|
30
|
+
frameio/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
|
|
31
|
+
frameio/core/pagination.py,sha256=Kt6JA2qGPoonOom-Md-5DyU4EjhrzEJktXZdmkmxAEY,2868
|
|
32
|
+
frameio/core/pydantic_utilities.py,sha256=8K1LsacgbMBxOUAexfIReSNql11LNVPEYifdHKxYNoI,15691
|
|
33
|
+
frameio/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
|
34
|
+
frameio/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
35
|
+
frameio/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
36
|
+
frameio/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
|
|
37
|
+
frameio/core/unchecked_base_model.py,sha256=crsvo0sm9pbRCKsAoSnX5UFxwExCBm2nQLvziZtID7U,14290
|
|
38
|
+
frameio/environment.py,sha256=9YNZEb81tWR5vXyjHCnDNHILZ0J08C2EWejNQN73j5Q,153
|
|
39
|
+
frameio/errors/__init__.py,sha256=J133Se5dUUV1x7oEnY30SSfkPRcE0vu-WrnIimLNvkg,1761
|
|
40
|
+
frameio/errors/bad_request_error.py,sha256=nTFOOw_8efVVdC5M5A14z6wvsRpB-gPl7H-p9U73pis,364
|
|
41
|
+
frameio/errors/forbidden_error.py,sha256=uV3BLIKyC83TfMJgC54Sbs8lvNE1mJH4u9ajLdBCZIk,359
|
|
42
|
+
frameio/errors/not_found_error.py,sha256=bIq7EIzxebVPyUiCdJmLRETdwJ13-kAwwBmDx0HUuMA,356
|
|
43
|
+
frameio/errors/too_many_requests_error.py,sha256=OXs3iBjCWfk72tx1hFYL_MR8u1D9hSlZeUcpNUSQdn4,385
|
|
44
|
+
frameio/errors/unauthorized_error.py,sha256=35BDLSn2TzEcJakrYLIOImYHnfanouT0XX9q1HkALvg,371
|
|
45
|
+
frameio/errors/unprocessable_entity_error.py,sha256=eGeoy9PFfnaN3BKSxcCVk7gdxZnStqOZAhU6eP1kkCA,330
|
|
46
|
+
frameio/files/__init__.py,sha256=ka6IbJRelQUDIRxreMNmLKkXZI5-43egK3HccoJC4C8,1768
|
|
47
|
+
frameio/files/client.py,sha256=UZn3pinjZhn4FL4dqP0yv2FbwEM5ZveWvB8026PeD4g,33684
|
|
48
|
+
frameio/files/raw_client.py,sha256=fbcixV64cjAEAk6_RBxNxnaVXqiBvDezR9QmVfsQ-9Y,96725
|
|
49
|
+
frameio/files/types/__init__.py,sha256=fIBVdG2dllOEGXhPKzZKWHDIFqB7p5cKKXmxEzyJmTk,2151
|
|
50
|
+
frameio/files/types/file_copy_params_data.py,sha256=Mc6g1okzq1-OgoMLbdaqozLnqLKHAXcewxdwhdR2BI4,448
|
|
51
|
+
frameio/files/types/file_create_local_upload_params_data.py,sha256=UR24ChMErcnzHQbEkcp7Dy_DfX1Z5lUBUpvgx3iedNg,476
|
|
52
|
+
frameio/files/types/file_create_params_data.py,sha256=Aq46ywiVZ0xjt15fX783K4VzvA6Ne-nNZV-nY95grEQ,720
|
|
53
|
+
frameio/files/types/file_create_remote_upload_params_data.py,sha256=OEgZ5piJIaOMEYdHyAzzUBIkSmXBAmcrPkVmuAEdw9k,508
|
|
54
|
+
frameio/files/types/file_move_params_data.py,sha256=Ct1pzE-O2gN2JyEbCEGUaMpjZzcLXZCVHQpe2MD1Cp0,436
|
|
55
|
+
frameio/files/types/file_update_params_data.py,sha256=2HuQg8b_QgG1YgCsflmoTzpW7q4eCRGuLAIFAixqTLQ,404
|
|
56
|
+
frameio/files/types/files_copy_request_copy_comments.py,sha256=vucr-WoMgknguyta8vGCGxMKQNwoFbPMUUmJy6dI5YQ,189
|
|
57
|
+
frameio/folders/__init__.py,sha256=fmnE_LuF9vD9Zl3TNmLu_VhAAVUO7HvXq9tYwLUTw7E,1351
|
|
58
|
+
frameio/folders/client.py,sha256=iswGIKS6XQ9F71OqSnP_IfASRq2Pyn6KINGgemJ4bHY,28966
|
|
59
|
+
frameio/folders/raw_client.py,sha256=7mCOGNr8x6tzqvO9vQqQ32vn4G1akraL_5WmeD3WNXc,79275
|
|
60
|
+
frameio/folders/types/__init__.py,sha256=fAmbv4B7l0YjstBI8nWZnnTGYweEtQ5S4Gpg7ombIic,1569
|
|
61
|
+
frameio/folders/types/folder_copy_params_data.py,sha256=vMxNJXBwre0yj--mbdHZfL150XjZhg_yKlEwq7_24fI,452
|
|
62
|
+
frameio/folders/types/folder_create_params_data.py,sha256=7xRI6pXOblPy2pQRNuocuQklMSr1G54bXfBxyFKGxm8,408
|
|
63
|
+
frameio/folders/types/folder_move_params_data.py,sha256=q5_XTkPzGj2JvMTL4_T-EPuxz-xbs_DWBp4NpDvxDp8,421
|
|
64
|
+
frameio/folders/types/folder_update_params_data.py,sha256=k3i_2e6SHSD3JOfowR4tc5MHvjySF-l6PnqZepikJNM,408
|
|
65
|
+
frameio/metadata/__init__.py,sha256=5rcFdceuro7TYHXm8xoCFRhnIFDqvqdCgOUw2TrGBRk,1249
|
|
66
|
+
frameio/metadata/client.py,sha256=IduuG7G1pZYAHWb1hMenEHY8lDZGDCTQ0mUufH2J2bM,8373
|
|
67
|
+
frameio/metadata/raw_client.py,sha256=lXW-8tIQIPGiDhmfIdsmuuITc1q9tQ9IXMlIsMhzC5A,19060
|
|
68
|
+
frameio/metadata/types/__init__.py,sha256=nbZisYe8NCAEx1j12kiMfHWKkMfECmM03ti7krRblkI,1403
|
|
69
|
+
frameio/metadata/types/bulk_update_metadata_params_data.py,sha256=zZsg251yCUHksYTkfnEPmtyWzbssSW4ktomm7jgK0Hc,933
|
|
70
|
+
frameio/metadata/types/bulk_update_metadata_params_data_values_item.py,sha256=TCQS6c-H6fQTR17ZtGSNqDe9SkihPBJpAMFlqF-A9sw,381
|
|
71
|
+
frameio/metadata_fields/__init__.py,sha256=1IvMCuRpWhCbpTj3wG6xMSQWphI5UkQjc5mK4vtUbRk,4333
|
|
72
|
+
frameio/metadata_fields/client.py,sha256=jbfgMRu6Yp98ELalQMJqWbZ20PfsJtGThYDk305YeIo,17334
|
|
73
|
+
frameio/metadata_fields/raw_client.py,sha256=B3k4PuixPdbIAExLRPH4vXn8rKVJJ-0ngime0MbyEEo,39249
|
|
74
|
+
frameio/metadata_fields/types/__init__.py,sha256=0BnbgmiUViX1zzfwhhVpsVWDUBrZ5EufQXIdTPx2vpw,5084
|
|
75
|
+
frameio/metadata_fields/types/create_field_definition_params_data.py,sha256=obQ_J5AFLIKbVtB1MY-6ezaESc6p7rc21KKTfBD_Szs,4739
|
|
76
|
+
frameio/metadata_fields/types/update_field_definition_params_data.py,sha256=VOCEQAQOfPLWhbgWhAZGANjp13LKxXs033uvaPqUXUg,5326
|
|
77
|
+
frameio/project_permissions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
78
|
+
frameio/project_permissions/client.py,sha256=_wEILXxAm1rYmePaL2eHkgLGV7eEH20tuNEB8SFd0MQ,12553
|
|
79
|
+
frameio/project_permissions/raw_client.py,sha256=Pc17xpjH5X03OrM1TZor-G6E85wt8y7MZXCU8mqU418,31942
|
|
80
|
+
frameio/projects/__init__.py,sha256=kYlTM4qDvnIMx3U2774QBsBaUAB2RrfyYkNLc-g6WSA,1282
|
|
81
|
+
frameio/projects/client.py,sha256=X-KNrMy8sCbTV81lz0zzHGdXMB7dba9Cs5By68JMN_w,16737
|
|
82
|
+
frameio/projects/raw_client.py,sha256=I2FMJ8QVARGH40H0Kb5PKU5n7wqCVVxxa9lIqPx2Wew,49218
|
|
83
|
+
frameio/projects/types/__init__.py,sha256=_T514cML7zzUnQIsRfo7WvlmcTsyWT5GOrnGLWbhfj4,1452
|
|
84
|
+
frameio/projects/types/project_params_data.py,sha256=F_o3ga3zSdCEVwmlsBSj-dng0Apy9Du1c04jxiMLsX0,506
|
|
85
|
+
frameio/projects/types/project_update_params_data.py,sha256=rfK7cHErp8_Hzmkwqd5ygoofRz6w57JXAFZ-lBnPiCs,744
|
|
86
|
+
frameio/projects/types/project_update_params_data_status.py,sha256=wkuYdql3Z_AEs-ykNjqe4SuLfwC4HWHf5XvWCc_XjoA,175
|
|
87
|
+
frameio/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
frameio/shares/__init__.py,sha256=6rduyfp2-oS7p6ajVQGbDtGV36V27H_bTbVXrfUXkk8,2053
|
|
89
|
+
frameio/shares/client.py,sha256=DkOFxMefW3EDLTPFhtORnlnvCXGrYAzVRQsCRbRfDrA,34248
|
|
90
|
+
frameio/shares/raw_client.py,sha256=RkvDWXmxe6RYEKviasEuULNCUHQQpyJaZfcOl_NLRXg,95723
|
|
91
|
+
frameio/shares/types/__init__.py,sha256=bHgzOUXsdupkebQm_7LFn9Vmwn4C4pl_1LkJ8iJnhuI,2549
|
|
92
|
+
frameio/shares/types/add_asset_params_data.py,sha256=qEVOTd8h1fkMD_4t5eJ34Q7B2KzepyJDm4ifhoYc8Zo,392
|
|
93
|
+
frameio/shares/types/add_reviewers_to_share_params_data.py,sha256=kaq_BX3xFQVIlQ1v4oP9tgr4uFm1103qYU6fSOLqrgU,562
|
|
94
|
+
frameio/shares/types/add_reviewers_to_share_params_data_reviewers.py,sha256=TkWxbbh2aWPciNFc25kNWX975kcVPh-nQONHlu8E2gE,741
|
|
95
|
+
frameio/shares/types/create_share_params_data.py,sha256=O2M9KS-bkg1TtDIyl_jMWbcxR_qO5qGgYbBEtnLCyz8,845
|
|
96
|
+
frameio/shares/types/remove_reviewer_params_data.py,sha256=v2JK786Z4OWmNXyJon4XhIUzZ4zGhXzLkTAatVXoPWE,450
|
|
97
|
+
frameio/shares/types/remove_reviewer_params_data_reviewers.py,sha256=kvdD89n4oxqdW66iQAy7iO0dtVHWvQVqbwzyuaH8rbU,758
|
|
98
|
+
frameio/shares/types/update_share_params_data.py,sha256=tiQw-aOJzGR4eizyn7Pnngv6nUeZTbJwcVYINUOt4YE,1142
|
|
99
|
+
frameio/shares/types/update_share_params_data_access.py,sha256=OxO5svrbZqkljY-rPCKKeI35LLhzF5iN7R_RGrrbcfA,171
|
|
100
|
+
frameio/types/__init__.py,sha256=DAhdHGwBwcjG5WbBYNohu9C5qtcia6VwC8T-hpCp_NY,52534
|
|
101
|
+
frameio/types/account.py,sha256=GlLggbxn5XXP4rRUQRVDdk-LK1zQ_K76ulxK_fxukXo,1691
|
|
102
|
+
frameio/types/account_roles_item.py,sha256=u1Po8aBlnD5SjGEtq1xN-B5v31zK3N465Q8R09wrHSw,168
|
|
103
|
+
frameio/types/account_user_role.py,sha256=5oWj3VSzFUTi5ZMPL0bZmu4Uh31el_AbklVtdizBfAc,565
|
|
104
|
+
frameio/types/account_user_role_role.py,sha256=AbxJhLnHhpAKl5VnEbU6ISp0i5LAXozLL7rzg1aGH9A,183
|
|
105
|
+
frameio/types/account_user_roles_response.py,sha256=eqT6V8XpDk3OCVzNz05689hrt8KwXJ4LyQBnbhmrWn8,659
|
|
106
|
+
frameio/types/accounts_response.py,sha256=MeSEvBDxRu8TmMB7q6WUKg8aI32ThM9npkMzHBKAWeU,559
|
|
107
|
+
frameio/types/add_asset_response.py,sha256=FZFzicWmf6SifN_bopeP-03aiHoJSFI4QI6bqAF3-Uw,396
|
|
108
|
+
frameio/types/add_asset_response_data.py,sha256=guCshGdwCWTHuAEYYaYW2yA2vWpxA0QDaYTqqkr_Sms,343
|
|
109
|
+
frameio/types/asset_common.py,sha256=MXgdlj5xw14cIRr74IQAYiVg1jana2oPGrCUbJ4bd_U,1033
|
|
110
|
+
frameio/types/asset_common_type.py,sha256=x8Ox4WZwSyu3xy5iWFYylRUJFCaRDSkuw2HYjiFvZYE,174
|
|
111
|
+
frameio/types/asset_common_with_includes.py,sha256=CSnkV6GD2kH4Z00BgknAUgyLXWy0Oe0FXIsbDbPtf40,1428
|
|
112
|
+
frameio/types/asset_common_with_includes_type.py,sha256=qWd9nnIkQSIwIDcASFAtwzWb8wEsUhuFzXE4XhBq1UM,186
|
|
113
|
+
frameio/types/asset_include.py,sha256=nhW9TCEuj9Us2HOgJjJPUnMfUpi7R3E2SDlOoK-bRXs,170
|
|
114
|
+
frameio/types/asset_share_params.py,sha256=6Pu6lClNcycKToUBR0uc_jh_TJZWi5UoN6CvKLW9PHs,1219
|
|
115
|
+
frameio/types/asset_share_params_access.py,sha256=0wRAhZHAyW2jKjLdTG_D8t2_aLBVmAuNEGqg_9BGU74,166
|
|
116
|
+
frameio/types/asset_with_includes.py,sha256=wKqkfzTteXGiY-whMAZl6NCImvAieuZHjE16qhZffT0,2565
|
|
117
|
+
frameio/types/assets_with_includes_response.py,sha256=yCLP_4bhpfoXlH7nWjGm7wJ7nmkp7YMmBlKW25AbH4s,599
|
|
118
|
+
frameio/types/bad_request.py,sha256=3hYNjEWDVP-l1E9i0tGWCzjFMMNSyPJ21VAHQAN1VoY,405
|
|
119
|
+
frameio/types/bad_request_errors_item.py,sha256=f738rxp2VE8OyBCZfvmHzVZqdK4Qu5-SSr4A603zkeM,500
|
|
120
|
+
frameio/types/bad_request_errors_item_source.py,sha256=GH-UZspm1XuC-Uo7ZnYSCUyZhcNbsPQoSI-VX6C4XIQ,358
|
|
121
|
+
frameio/types/boolean_value.py,sha256=zLpeiEsDZBwk6AIVN6ikcYb868vpv_lLcMyan07wDhs,331
|
|
122
|
+
frameio/types/children_type.py,sha256=JFANp64SH1fo4-w49ObQdcBfXn_vgcAGYVvYtsWHlQg,84
|
|
123
|
+
frameio/types/comment.py,sha256=nuVvVdJhzUx7BeeQ9M5ghoZcxzTAhQLLKgoGE409p6Q,1267
|
|
124
|
+
frameio/types/comment_include.py,sha256=lSk74XUz5jbPTO0bB5-G7mpo95sWzWuh87pnDuC85Fs,158
|
|
125
|
+
frameio/types/comment_response.py,sha256=QKSzb_hffQ-GIpZGFj36LLow-_iOMIKwGgw6uYhWuvU,353
|
|
126
|
+
frameio/types/comment_with_includes.py,sha256=cTWBw4eG6KRJI6vEswP-UsWFZuATPZaQxBcUVp34VOQ,442
|
|
127
|
+
frameio/types/comment_with_includes_response.py,sha256=f3p2VEeLIP7xlgxdKuNrlr3TM-YJMbnB2TewOY4RItk,403
|
|
128
|
+
frameio/types/comments_with_includes_response.py,sha256=2MttBY0Vma_wmcw8sCvAWMoDAIfuw7WbObP_zxH03MU,609
|
|
129
|
+
frameio/types/date_definition.py,sha256=3q1Oc6zzDa5rwffSROoDN2ZVtRNNle0VPmnsOSX3Rpw,1148
|
|
130
|
+
frameio/types/date_definition_field_configuration.py,sha256=A-UnNrPFae0i4HaTvR8VZU6Uk9Nt6hJGdhQDG98mqDg,831
|
|
131
|
+
frameio/types/date_definition_field_configuration_display_format.py,sha256=Y4ibwxr13JU3j-AHmYyWxnUA0jmvcZ13ikFOij5aJZs,218
|
|
132
|
+
frameio/types/date_definition_field_configuration_time_format.py,sha256=GLQgbvXfZbllPJP4tJVOrNBenYZTsZfkWXOUDbwF3nQ,201
|
|
133
|
+
frameio/types/date_definition_field_type.py,sha256=edRStBCTRddkpU0_x7-OuTBGvIZjUmKGhE74oNI0F30,286
|
|
134
|
+
frameio/types/date_definition_params.py,sha256=ZXYpErWXUHzbbaqmaX5oNUoB_Qpk2Ki88E6d1NoIu-8,545
|
|
135
|
+
frameio/types/date_definition_params_field_configuration.py,sha256=garZrwu0znAkScyVUAU1b3TSa6f2OTEoCQbUdFhnJN0,884
|
|
136
|
+
frameio/types/date_definition_params_field_configuration_display_format.py,sha256=NuZyjSYS_YmOSI5kULgXZvQhPN1JK-VlbrKX-ciJtNY,224
|
|
137
|
+
frameio/types/date_definition_params_field_configuration_time_format.py,sha256=ohuxZkS-v9jW6ys3N7v09YwjkPfz3oNThjZtraH9xEQ,213
|
|
138
|
+
frameio/types/date_definition_with_includes.py,sha256=kllDbSRH_Evc2M1qPT4XejMe8og_rTKYAjzZz-TAyfY,363
|
|
139
|
+
frameio/types/date_value.py,sha256=fw_Xsr9GOMjYrzr84b2kJjmFAEhpPzNQcLx9GDqePqM,327
|
|
140
|
+
frameio/types/email.py,sha256=AY1iypxRYBYMfasDmpPkmvTYPktZtppVPacN5Wb2K_4,77
|
|
141
|
+
frameio/types/empty_json.py,sha256=6c88enQPnicY4645ful8M2s8slbf1v7HgQDIW67Z7nk,121
|
|
142
|
+
frameio/types/field_definition.py,sha256=TI-H_gR0a8eTUZKaxs9w0Hp1XIG-eiWZgAlD3_9iUYE,5537
|
|
143
|
+
frameio/types/field_definition_include.py,sha256=aHkHx8g6R0axmp7Jp5jvBhjXKBrtZRdSEzf_8nrYHKU,131
|
|
144
|
+
frameio/types/field_definition_response.py,sha256=Db6UNJcIwNyDIL7FoQsiS-5PpisvLJc_BNnOExSsfA8,386
|
|
145
|
+
frameio/types/field_definition_with_includes.py,sha256=hca6OYzmA9vRDfk0cOr3M1mroEWX45xxJXldK9Erzmg,6232
|
|
146
|
+
frameio/types/field_definitions_with_includes_response.py,sha256=I7zhGSxWu2SbEOyYj8QJECaS25dI5hlW_90eiDheHc0,698
|
|
147
|
+
frameio/types/field_value_common.py,sha256=7uAjpW8sEYI6Nh4Nn-8MwanMP7xPb7KXkqcYaOhxukE,648
|
|
148
|
+
frameio/types/file.py,sha256=AVtygtxinARhcUmt-0YSyi-__no78HOP2sMRZVCOcFs,1261
|
|
149
|
+
frameio/types/file_copy_response.py,sha256=UaTRjvlr7EBfWCqRHBUVV1QjL9xezwpafQf_re6YSzw,345
|
|
150
|
+
frameio/types/file_remote_upload_response.py,sha256=aPGiavGvjQEguOMx6j-UL06QS4RP95nzuFkfCe4UMjQ,463
|
|
151
|
+
frameio/types/file_response.py,sha256=uNj113yaovqy5Uyc3poXeqmGonT7r361gGhwZazxhjI,341
|
|
152
|
+
frameio/types/file_status.py,sha256=7Vbpx5-w9RUIesDyiCCgO7U7qxIy-CZ-SsGhzWba18k,171
|
|
153
|
+
frameio/types/file_upload_status.py,sha256=BaifU78XjuyjrEWuOQef6nsB9OCzcRcVxyqUgsq5Mjk,937
|
|
154
|
+
frameio/types/file_upload_status_response.py,sha256=SDJRFfHIkbXheqI3cFGvDJtXeOpJlRk_uRii0pLQ5us,391
|
|
155
|
+
frameio/types/file_with_includes.py,sha256=O4-YQdHDrkpprbQP_DQGFUROo5PRuTfhnGFIzVQjt_g,687
|
|
156
|
+
frameio/types/file_with_includes_response.py,sha256=dI2tMIkelgNbdTivqYfpsxF9DjzXFt0lx6bhUZNc9bM,391
|
|
157
|
+
frameio/types/file_with_includes_status.py,sha256=LoZa4xPvdf-Zc9zLELOyJlX2L0kkq9kmEBopnkPbYBw,183
|
|
158
|
+
frameio/types/file_with_media_links_include.py,sha256=hxmqWpphpUTl4XtWSHfyvXVDtb9kimfw7SmEMwOF55c,466
|
|
159
|
+
frameio/types/file_with_upload_urls.py,sha256=7_-8vxPrX_L0O3ESJtWPpXMQS5DD5jNZboiz3NduVU8,481
|
|
160
|
+
frameio/types/file_with_upload_urls_response.py,sha256=1PDQCct4IiWNIg6I3wr6rqs2XsA1-Mx1Rd4maAAnsFc,400
|
|
161
|
+
frameio/types/folder.py,sha256=L_JAtU2_OhlhPFOLSlNKiI0Tp6S29fngoPU9R1LvDDM,375
|
|
162
|
+
frameio/types/folder_copy_response.py,sha256=R5N9CYfOBFKSDbwQ5D69FEC79sGtF8SFHv0ScCLlHgE,353
|
|
163
|
+
frameio/types/folder_response.py,sha256=MoeJlHZuEiATYAhfUYmoIriE7d2uxwn46IGGchZkzSU,349
|
|
164
|
+
frameio/types/folder_with_includes.py,sha256=S754JFWgtXVy3XBuo0jHdCkqnAPUGw8KbOwoURMD79g,1513
|
|
165
|
+
frameio/types/folder_with_includes_response.py,sha256=F4EaASEpcsMkfpqiA9PfLcmyPPHV4kh8LcexZgxsaEk,399
|
|
166
|
+
frameio/types/folders_with_includes_response.py,sha256=L1ara_Y1Tmwf4YrPADg-fYCeyvyTtymg1g6kBV0NvE8,604
|
|
167
|
+
frameio/types/forbidden.py,sha256=MLFLIzg3mJTsG6XCevO6FpVKVXfXVtXE4tibb9DAjTA,400
|
|
168
|
+
frameio/types/forbidden_errors_item.py,sha256=vhdLPRo4SkJoETlqRCTKDGwEZKKAj4Ka-BSe2qu2H8o,495
|
|
169
|
+
frameio/types/forbidden_errors_item_source.py,sha256=pl-RXHuRSGUGLb1hyWd8EXNjLPaPu2d4uujkkLx5HoE,357
|
|
170
|
+
frameio/types/include.py,sha256=6DMTsj7rCvneHanxTAPBuvuB8W36nWvT_6_nlrRLBSM,116
|
|
171
|
+
frameio/types/include_total_count.py,sha256=B5n2oEmkio7rrf4gsIhJ0s6d0hliZE4GfmEWnTGO_Yg,90
|
|
172
|
+
frameio/types/integer_value.py,sha256=FM5Tx3giWgXwMCez5XScU6007IWBuNsSb3VZ0_aY48k,330
|
|
173
|
+
frameio/types/json_error_response.py,sha256=oDOVj0SnbZ3LczVGfakgvLA4LEMo_N9xJ2gf5qnax0E,434
|
|
174
|
+
frameio/types/json_error_response_errors_item.py,sha256=VToqGbeMFZ6inYgZNkPLp92m5INdjCzA-iVrbCFeZ88,481
|
|
175
|
+
frameio/types/json_error_response_errors_item_source.py,sha256=HqHqByC1dDPbgGuA6Co7Sy_fFWGed_e4ntVb0meTDB8,341
|
|
176
|
+
frameio/types/links.py,sha256=3pNOdWztIkjM3rBJFaKW0rJ27Hic0T995WdzifqnvnQ,684
|
|
177
|
+
frameio/types/long_text_definition.py,sha256=NupOvAltcWZU7S-e1XKte_xPiemBDLXDp10XebBzfCw,1178
|
|
178
|
+
frameio/types/long_text_definition_field_configuration.py,sha256=0HX1FugnXpxf3G_vGaLBPT6iDz3KUMBfQd97AsqEJi4,326
|
|
179
|
+
frameio/types/long_text_definition_field_type.py,sha256=Xqpr3EY2l31JuzYfregPTAAdLhVPGFdNbnHV8KPsPj4,290
|
|
180
|
+
frameio/types/long_text_definition_params.py,sha256=pAUpM5k2Du_YfybZfHonq24w_fRGtXJXiEaaujLYXFU,390
|
|
181
|
+
frameio/types/long_text_definition_with_includes.py,sha256=r7IYXcQQCyiPCSWB8vR8mdMWAIo8AySnFHyLg-Ti-Lo,380
|
|
182
|
+
frameio/types/media_link_common.py,sha256=B1FKV6efyv8sI5sL-Nd3AaxPHvYPLVJ_7Divn7DathY,631
|
|
183
|
+
frameio/types/media_links_collection.py,sha256=siV9Ad67w651NvRJHXjyDfzhroiz4xsFOJTwgiuAn-Y,1026
|
|
184
|
+
frameio/types/metadata_field.py,sha256=kRiZ6hNUOmDwcaME7oc_GhVsEwqIum51TRVAUrb6dew,5227
|
|
185
|
+
frameio/types/metadata_response.py,sha256=sk9jl34gER4UAOovudm-Q1tMKGtVaHIVp9QWVsEKjuw,401
|
|
186
|
+
frameio/types/metadata_with_definition.py,sha256=jsRf7PHaXXUXBT_TWJDrlBoN8IRVJAGnAjiny4qUikU,523
|
|
187
|
+
frameio/types/multi_select_value.py,sha256=Ws7kEy5IeUT03BR4zxQHwbe_Qd_vqcCGIbsCiuUSNIY,465
|
|
188
|
+
frameio/types/multi_user_value.py,sha256=8tapqb-lTCYMBs6Hlb953GTZbKrffnctdx1myuUcDlE,747
|
|
189
|
+
frameio/types/multi_user_value_member_options_type.py,sha256=2ibSjdphKulOOjHKnDhBQKVtzakLv7OkmUlXkiL2UBY,188
|
|
190
|
+
frameio/types/no_content.py,sha256=hkA-QMTPKKeNzNfDuEwu_aI3CYPyPt5MrOE53scnOBw,81
|
|
191
|
+
frameio/types/not_found.py,sha256=wu3z0vFulY6wWFhUfkDGvPMUafkWrDGiR-OF_tvIFRQ,397
|
|
192
|
+
frameio/types/not_found_errors_item.py,sha256=fS7wyF0kx0KYxx4SAXxJM-T0IQDNS_kQTit8T8_CLgw,492
|
|
193
|
+
frameio/types/not_found_errors_item_source.py,sha256=6VYrP3Fcz4Zjx2KX1qmzQ-iNvbP5Q3gA9Ytfca-Xvas,356
|
|
194
|
+
frameio/types/number_definition.py,sha256=Cogq7Wh-NkMGerkX3PAwqPWrMx-BHna7DBqiOjZ0tzk,1001
|
|
195
|
+
frameio/types/number_definition_field_configuration.py,sha256=R2miDk8roUEfc2Knj3sCXu-e5lDLA025238FdY5dgfo,727
|
|
196
|
+
frameio/types/number_definition_field_configuration_number_format.py,sha256=Efy_qht-p3rAwsoxO3Siab7twLrdCG2eX3mxf0BqmXw,256
|
|
197
|
+
frameio/types/number_definition_params.py,sha256=GCWqD7SYPzWrmLuRe-LNcOZUrGlgVmy3vLAtkA_a8dE,553
|
|
198
|
+
frameio/types/number_definition_params_field_configuration.py,sha256=8szwQYDEQAB6Y4agKFsz-z_tf0PbjiFxJePvhfIMuR0,761
|
|
199
|
+
frameio/types/number_definition_params_field_configuration_number_format.py,sha256=mIDGHBG3HpqcILtXRe3HdQuO7U7T09n8mPPqBXD4AII,262
|
|
200
|
+
frameio/types/number_definition_with_includes.py,sha256=afjin5n-OUKzaUT5yLtNMjY6I8knaPwI9r94EvFEa78,371
|
|
201
|
+
frameio/types/number_value.py,sha256=3vBQXpsq87iZcN7pnHYj2iMv4OttKGQmiJQaLb80K8Q,331
|
|
202
|
+
frameio/types/original_media_link.py,sha256=kfCQlFfz_TmMiZWEhr0fuW6qmdq5yiQ-MBwelIhB_3Q,567
|
|
203
|
+
frameio/types/profile.py,sha256=UOOzQEjA2DH4aapTtTgxQr6GP_zuU0dgleL57c1nwqE,632
|
|
204
|
+
frameio/types/profile_response.py,sha256=q3jdFoJGkcYs0PcC1MzoF-EfZNBQBYYZ8grVS7iS0tY,387
|
|
205
|
+
frameio/types/project.py,sha256=BeE1-xWj6LoJ2SSR2w4zDAOzG5k1P7S8H1jqdYeh3ho,1252
|
|
206
|
+
frameio/types/project_include.py,sha256=oRgbS1deDFn7ZFjunD1wjvRPBGejbm6whEEmBhSObPg,121
|
|
207
|
+
frameio/types/project_response.py,sha256=rPxtP43FjmKwdo152C3wohkleMVofVpXUCXJ8ABcPiM,399
|
|
208
|
+
frameio/types/project_status.py,sha256=O3EO0otrOarRjQIVxXuDqRFR23CT2yqZJ9AXWBjNEuU,159
|
|
209
|
+
frameio/types/project_with_includes.py,sha256=AzOyPwj2PuDpAnjEDt2lOBebTND2tkJJfHfUE15hH7g,442
|
|
210
|
+
frameio/types/project_with_includes_response.py,sha256=XOxXZ_0BbHU6l3C-_8QYBxS-InRQWPZqC-ZCh8cviNA,449
|
|
211
|
+
frameio/types/projects_with_includes_response.py,sha256=4GwMZR305IbPyZV0fRGan_8dUryLFCzAiiCBMv4GA8c,648
|
|
212
|
+
frameio/types/rating_definition.py,sha256=OznFuthT0uZbAJLDdPYTI1dshKUcGWg4QAA5a5YZi9I,1001
|
|
213
|
+
frameio/types/rating_definition_field_configuration.py,sha256=TYrlItBfMoNdBbWqz-oGa1X1Ca9OTH4nsoX3atUd5Uo,718
|
|
214
|
+
frameio/types/rating_definition_field_configuration_style.py,sha256=--_ma-ety9JDw8oVeALKjOZURHtcRJxmDMu1URs9m4k,193
|
|
215
|
+
frameio/types/rating_definition_params.py,sha256=Xy791PKR1HUP9CsIwxD1DNL0YaLKtAVqJ0Onuefl9rM,553
|
|
216
|
+
frameio/types/rating_definition_params_field_configuration.py,sha256=1QQVu1Fqtzp8fo_1pqPdBmRemiy_lJnoM8UCa-6RmD8,743
|
|
217
|
+
frameio/types/rating_definition_params_field_configuration_style.py,sha256=wT3t5-XX0SiUSVA4Exri2X-x0lwBvS7HdSwypfCW3OE,199
|
|
218
|
+
frameio/types/rating_definition_with_includes.py,sha256=-Ng0wFtdN9y0Iu4c8-y2hWy808vhRMR0mXTiS3FoVs8,371
|
|
219
|
+
frameio/types/remove_asset_response.py,sha256=A_tO0OUbelsU3n0EPWE0xp9UvSM-UDZAGBd9vb1rUKs,408
|
|
220
|
+
frameio/types/remove_asset_response_data.py,sha256=h0Hver0Xlqw8MSScxae_eabfrYFMwCsUaGk-qKIbPMo,348
|
|
221
|
+
frameio/types/rendition_media_link.py,sha256=syhqROqpoRqmyk_JJAaRdjPFdEmsIH6eDi2sB7Rm9F4,819
|
|
222
|
+
frameio/types/request_after_opaque_cursor.py,sha256=PPysaPMZubbwPMVnHjaJZNXgquSbEQ5hLVBW99OS884,128
|
|
223
|
+
frameio/types/request_page_size.py,sha256=vF-4rZBF5ittN_Se7KhBIoEczgWr4_Oh0R1Jmqxhkd0,87
|
|
224
|
+
frameio/types/select_definition.py,sha256=KQg7b9LhFakKWU_do_jJibTcNQyPdTufSSlS6LgCtUs,1001
|
|
225
|
+
frameio/types/select_definition_field_configuration.py,sha256=NDfuVB4fINdDGKtkwU3L4KjzjBfjbcIqLRqfubJwmKQ,667
|
|
226
|
+
frameio/types/select_definition_field_configuration_options_item.py,sha256=OQhETB274E3mbIci_Gn5ezQD9evrE1wtbiaMOR2T-uI,595
|
|
227
|
+
frameio/types/select_definition_params.py,sha256=EhajRtaE3tbvc56z2s_xMbfm0mWTwzbcVDVCmTJB724,553
|
|
228
|
+
frameio/types/select_definition_params_field_configuration.py,sha256=gf0vfQcz_Ine_aK5SU8KpwBPqqZUeKMfmDaLa3O1Qlo,701
|
|
229
|
+
frameio/types/select_definition_params_field_configuration_options_item.py,sha256=xoziYDqy1PTcYftgk_tVfUotLyDYQWBKX90rPATG6NA,564
|
|
230
|
+
frameio/types/select_definition_with_includes.py,sha256=yLaUMKp_pQT2BcEHnuJa8wcOdLVGWL43MUDlytU8KSk,371
|
|
231
|
+
frameio/types/select_multi_definition.py,sha256=5cv4xDq9hZdr2elzTEE8JGE4wCBVdZEMdII2Hj0IwFk,1199
|
|
232
|
+
frameio/types/select_multi_definition_field_configuration.py,sha256=jcCgo_H8mckelQevFRYNYXpGOmU_O_I4gyh5DkH2b80,688
|
|
233
|
+
frameio/types/select_multi_definition_field_configuration_options_item.py,sha256=e5cRGW07QAg5qco7jA5SXxWpQjFZIIVvqaNQq7pd_2o,600
|
|
234
|
+
frameio/types/select_multi_definition_field_type.py,sha256=bNFUkhpBMJc6e5Zyi48Ol5vDmWYwRHQW_FBET9iVmkQ,293
|
|
235
|
+
frameio/types/select_multi_definition_params.py,sha256=edwGWv3hxHPBjyns5LDFaun7EoGSz9Dicd59QXdJWC8,574
|
|
236
|
+
frameio/types/select_multi_definition_params_field_configuration.py,sha256=RJuEdi9ez9RZI_teol4W2g7DZ8knHGQf_X5OQExCuq8,722
|
|
237
|
+
frameio/types/select_multi_definition_params_field_configuration_options_item.py,sha256=BzhuVGdFh5rRwwr4ThYkVLSxl93CwLzA_gspyE9E8I4,569
|
|
238
|
+
frameio/types/select_multi_definition_with_includes.py,sha256=up5A4Ortj7Ls6IJBsSEcFFz7lj81Ey5htcDFGikRnuE,392
|
|
239
|
+
frameio/types/select_option.py,sha256=eK3pKBeS5FpsVbQUDmsmT1Mj-5Y98WFi4ZUTrcPgPU8,446
|
|
240
|
+
frameio/types/select_value.py,sha256=V-Z2tPrzcyvCiehWqdv4x-gS-2fStX6BYSZsfkCvB68,460
|
|
241
|
+
frameio/types/share.py,sha256=yE_Dl188ozTrj5Ui-kl6tL2ueEGk2KXRIynFsH3Mj68,1485
|
|
242
|
+
frameio/types/share_access.py,sha256=1YTculMFwRAOXT0BR4uHALDLGTKJDw4ScbUz0DwHWaE,155
|
|
243
|
+
frameio/types/share_response.py,sha256=e1qTqRyX6quP-uNv3NoSh4r1E9ba6dSWYDzZapKAznU,345
|
|
244
|
+
frameio/types/share_reviewers_response.py,sha256=2lgIiGN0TYo9NZQeSBXp64dRwfTGX7PoBDJ0cHbg4kM,607
|
|
245
|
+
frameio/types/shares_response.py,sha256=hLUPgZVX_R9-tl60_24ztI3N3Z7ucC-k9ZRJvmrRlRU,590
|
|
246
|
+
frameio/types/single_user_value.py,sha256=hCpOW-Sl4I_6gZaqdMOufg0llDNjlcH2oBQwEDNsCcY,751
|
|
247
|
+
frameio/types/single_user_value_member_options_type.py,sha256=b59nrC9Is5flMsqV-5Azfsm8NVQE8XesRojf9sdlEj0,189
|
|
248
|
+
frameio/types/text_definition.py,sha256=8tdq4mLOmg8I0yE-bDEhPBvfVHRabiDtgsph8Nyr2C4,1148
|
|
249
|
+
frameio/types/text_definition_field_configuration.py,sha256=7x3-rhFKI_PItCjY48ArNwEYmyli7N_oU9a58nXdJUI,322
|
|
250
|
+
frameio/types/text_definition_field_type.py,sha256=8N_x17SLVN2STZB8J9FG41EqSWttHF_BCug0L-QtmLc,286
|
|
251
|
+
frameio/types/text_definition_params.py,sha256=guupEeNjGYEE22-Gm9W77sKlJr8stI16_5VumYuX2Sw,386
|
|
252
|
+
frameio/types/text_definition_with_includes.py,sha256=rGD7eXbmimEVE-Tv_Ws6obMmEHMFwlGl7Lp3Jtl8Dgg,363
|
|
253
|
+
frameio/types/text_value.py,sha256=khmhVdhPBOnybhP6qGOBDIoIiN2Ao76O65mtPsx_Rwo,327
|
|
254
|
+
frameio/types/time_stamp.py,sha256=Df3JSrRSR_Nf6BvxWqnOJEiNObA-zzCbCc3nEbN1WlE,149
|
|
255
|
+
frameio/types/toggle_definition.py,sha256=UhlH-9qkljfuSLa1BZ_TQeadHxvOQlKY0nlpWDImx-0,1001
|
|
256
|
+
frameio/types/toggle_definition_field_configuration.py,sha256=freeZG-909XXwghPU-qJHsOTp0jUSG9WOLMlGnWJOuI,442
|
|
257
|
+
frameio/types/toggle_definition_params.py,sha256=inmKbMlrwLIsWfEFTBKfESvRKVCJtHQ308FKUm6ekxo,577
|
|
258
|
+
frameio/types/toggle_definition_params_field_configuration.py,sha256=N6HPXFXRJLCwV3ST0sxSbm2KvP6Ums0n2_7qBUCtnUc,448
|
|
259
|
+
frameio/types/toggle_definition_with_includes.py,sha256=2mW-I-mx7gFzqJod4yAt6Akn1vlnET_NpgJi6F2f65w,371
|
|
260
|
+
frameio/types/too_many_requests.py,sha256=xFdX8tG4mQoUjoDbNm_FCTn1vbmVg-YHG8hAh-0MvkI,426
|
|
261
|
+
frameio/types/too_many_requests_errors_item.py,sha256=usBNFiXAaDmXFQrf85MvdVwheJFoTGNYQ7pLfCrWte0,521
|
|
262
|
+
frameio/types/too_many_requests_errors_item_source.py,sha256=A_QWPgTJv7JByMdJ3yntz0b5aIluhqOBpsJJffTIfEA,363
|
|
263
|
+
frameio/types/unauthorized.py,sha256=MSS-BQv1Y_Uhh20QLk0-XOyDTFHeEBMFvgD7HeIQfVk,412
|
|
264
|
+
frameio/types/unauthorized_errors_item.py,sha256=1pextnh-IMejrpaPbpG622ckT1MlgvM-S5MXcDI9zYI,507
|
|
265
|
+
frameio/types/unauthorized_errors_item_source.py,sha256=mIcKSdo6_qu1E468ucFvvQtADmXNl_n98bhyvbBvlgk,360
|
|
266
|
+
frameio/types/unprocessable_entity.py,sha256=vyZKUizt525Li2R1tOuvjAeOKJqxkxlb652h_50Rr7I,441
|
|
267
|
+
frameio/types/unprocessable_entity_errors_item.py,sha256=lSx_WJk9hJ_NvhV9-oQQwFfE_u4CTuSZulgMEb12pns,536
|
|
268
|
+
frameio/types/unprocessable_entity_errors_item_source.py,sha256=W0L8EVSVYo2f_hyXvxbfGYH6kzg-Pd_RhuFT9zwlvMA,367
|
|
269
|
+
frameio/types/update_date_definition_params.py,sha256=o04qY4aCAdieYZRehASCoC5gTV66bI2LZTSiATQM-mE,623
|
|
270
|
+
frameio/types/update_date_definition_params_field_configuration.py,sha256=0jblyMRy5XdGYdu6ScPmIaBhRiJ5PirUEAR9tG1Gfz8,961
|
|
271
|
+
frameio/types/update_date_definition_params_field_configuration_display_format.py,sha256=17Bcw-rYqRQe1O0_EpFdyMWnbd188ltQ-O9y0LwgvI0,230
|
|
272
|
+
frameio/types/update_date_definition_params_field_configuration_time_format.py,sha256=lB6CcGDmfFbVDY6MEPenZBJG4Uad3pQhVoWFqYHU7ao,219
|
|
273
|
+
frameio/types/update_long_text_definition_params.py,sha256=n7iQI7Xy46HoFm-yJebYNdXRMy3DwfdGhB2E4C6A0q4,425
|
|
274
|
+
frameio/types/update_number_definition_params.py,sha256=Aqp6PfDir14TFbIQcWhwpgPgTB93j-VkYnxDLws-H7s,631
|
|
275
|
+
frameio/types/update_number_definition_params_field_configuration.py,sha256=9C8rwtR4XrRExJCAyrLeYW8ObjWLeRzzCH8mk6ppyqE,829
|
|
276
|
+
frameio/types/update_number_definition_params_field_configuration_number_format.py,sha256=2OPs-I2e-F5xu8jXoLqV35Qm1siYnhBH7Z7Ye_pJ884,268
|
|
277
|
+
frameio/types/update_rating_definition_params.py,sha256=kG7M1IQkppqbu_Ai_a9q0RTESs4B9GwkP7K3nz1sOo8,631
|
|
278
|
+
frameio/types/update_rating_definition_params_field_configuration.py,sha256=OCErBxo5GBrCn-47wp2mrO76dnscHjanr0GnddhW_L0,801
|
|
279
|
+
frameio/types/update_rating_definition_params_field_configuration_style.py,sha256=QmmlZvVtIiYKTpO8VhriarARKaebn0LBTBmx7fHKQow,211
|
|
280
|
+
frameio/types/update_select_definition_params.py,sha256=kC_ZoezZ9pnP9J1NgzcA3XRHEl4-QARzTjVFuDe-ZLY,631
|
|
281
|
+
frameio/types/update_select_definition_params_field_configuration.py,sha256=cg1h2ho0zNHPRKSwhhV_EXTWyzxPYAsS8DFwabGeMYY,750
|
|
282
|
+
frameio/types/update_select_definition_params_field_configuration_options_item.py,sha256=TsVi7TALqgxUgz5FOXyh5pEBaY8ueZkJtmUdjJOH5yY,570
|
|
283
|
+
frameio/types/update_select_multi_definition_params.py,sha256=HAMpKokOci8JjoVyhVjnc07J7Zap7RKK_JhUfNdji7o,661
|
|
284
|
+
frameio/types/update_select_multi_definition_params_field_configuration.py,sha256=jiG4E1A9XORhJmFKJVaqEZViXrRRHlq5pZFNT2pb-zc,771
|
|
285
|
+
frameio/types/update_select_multi_definition_params_field_configuration_options_item.py,sha256=JaIQQmaoQxSCKIv5jc_Ji2pkaSQFpp9i4XPsX7vx7uw,575
|
|
286
|
+
frameio/types/update_text_definition_params.py,sha256=OlFdXC0iJRU9JAVPuCKvHltZ7VwR1S17w8kl-4Om40E,421
|
|
287
|
+
frameio/types/update_toggle_definition_params.py,sha256=TArHNIefA6M3eivtWwOhTrAOrbOnQVUzormq96Bw4G8,631
|
|
288
|
+
frameio/types/update_toggle_definition_params_field_configuration.py,sha256=VCIeLDZQBrkd9CEM3MB-aGwxNJ755FfosNDPqEtNwas,454
|
|
289
|
+
frameio/types/update_user_multi_definition_params.py,sha256=GVgiuIFQlJxmnYwexCebNSvNbYFUVI43_nWLKEXcmOA,644
|
|
290
|
+
frameio/types/update_user_multi_definition_params_field_configuration.py,sha256=d8PuFEc1CiEU1F5bwFSd-8mFlR5mtKnwV5tu9VdlOHY,967
|
|
291
|
+
frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item.py,sha256=op92D_xa8U0REehZatapiBVKPOToDlCsxiS_-yvQJOQ,672
|
|
292
|
+
frameio/types/update_user_multi_definition_params_field_configuration_custom_members_item_type.py,sha256=7nvXyKyIEbyLWGcCV0ogD_81kZ9PTfDe9v5x9sAmJlU,230
|
|
293
|
+
frameio/types/update_user_multi_definition_params_field_configuration_member_options_type.py,sha256=4dFToJBq7zc7ZLgVmmqTau50Q0Z9ddK_xctqz21gQSo,229
|
|
294
|
+
frameio/types/update_user_roles_params.py,sha256=mA4xUfKP6j5CAkAIMHEg6WViuf3KLEu4N96EXJwcpCY,463
|
|
295
|
+
frameio/types/update_user_roles_params_data.py,sha256=h9sB1aQDcfrvIuEY4s2L8l6XIQFG_Gz5ErKO_7hY1NM,434
|
|
296
|
+
frameio/types/update_user_roles_params_data_role.py,sha256=YvBSqrjPuKTlkIGFMygdJuF3LDHsZFWxmTNlimsztHY,220
|
|
297
|
+
frameio/types/update_user_roles_response.py,sha256=ifMZwqPWSjkTCqkNKsos7umqzpZnn8nMd1AY8JRhNYc,425
|
|
298
|
+
frameio/types/update_user_roles_response_data.py,sha256=Zc6gIATAG3Y0TPoDUOnXDitV8180BppLC3CE9DtIb8k,466
|
|
299
|
+
frameio/types/update_user_roles_response_data_role.py,sha256=-TshiRVgPYk3lbq9jgR1hePg74bMRQAHm8P4indxbRA,222
|
|
300
|
+
frameio/types/update_user_single_definition_params.py,sha256=K5_xWB3rDsq9RVmBznoPJPYcerO_2wW9QAiqRQv5baI,648
|
|
301
|
+
frameio/types/update_user_single_definition_params_field_configuration.py,sha256=TuUKX8HQcx3eHcjUquRyObjQlBS6rtYjrPmOjlnO84I,972
|
|
302
|
+
frameio/types/update_user_single_definition_params_field_configuration_custom_members_item.py,sha256=sH5FLf7fDFoQp5VZ4B52ELVqzGTRBimpgBbzrlLIo1M,676
|
|
303
|
+
frameio/types/update_user_single_definition_params_field_configuration_custom_members_item_type.py,sha256=4c8jK_zZmD0bVgAOcneyuKGFaTGEJ7biiopbTx914xc,231
|
|
304
|
+
frameio/types/update_user_single_definition_params_field_configuration_member_options_type.py,sha256=nGRxgzPguQa40O-dEgW7uC8cHXh1fs2ePAG9RWaANSg,230
|
|
305
|
+
frameio/types/upload_url.py,sha256=jhn48TY85XzZaVycuz90mflsUh6d55BhwGzuYrPIDiY,573
|
|
306
|
+
frameio/types/user.py,sha256=mN57Fd_StYguEQJWEVXhkH0uQ6DR-tsAeWEtA7c3fv0,952
|
|
307
|
+
frameio/types/user_multi_definition.py,sha256=mg9TVl-0oiofnNTh0XBZrhPcEVOqZROfTZ3Ic-PMANg,1185
|
|
308
|
+
frameio/types/user_multi_definition_field_configuration.py,sha256=_ctYJEPKLhLNfdjoyF2Xqg2B196KkreM5kbjHFzmbZw,839
|
|
309
|
+
frameio/types/user_multi_definition_field_configuration_custom_members_item.py,sha256=OtB6uqwSkssv2wCs1zc5ot3tuDIAtWrbQb4Rq2ftW3Y,622
|
|
310
|
+
frameio/types/user_multi_definition_field_configuration_custom_members_item_type.py,sha256=TEZg7gYBv8b9RSYZfCno7Or8cJ85a0zuuNKc8-W1WNU,218
|
|
311
|
+
frameio/types/user_multi_definition_field_configuration_member_options_type.py,sha256=Xndzuz7VUNOZtaS4yQQU5cegc2q0x8z_s2mtEvKSvdA,217
|
|
312
|
+
frameio/types/user_multi_definition_field_type.py,sha256=oWBfrJJ6SXvmdHoZOUW5oTFn4Q3k2DCs-6ikeUk0dS8,291
|
|
313
|
+
frameio/types/user_multi_definition_params.py,sha256=EXGu0VF3KtQhuD5Fl7gCnH8t3n68v2oJUUYS9BxGuKY,566
|
|
314
|
+
frameio/types/user_multi_definition_params_field_configuration.py,sha256=JGd1TAyFOWBn3wRECwHAv31ubgAK39ij7rjCcL0ZUtI,907
|
|
315
|
+
frameio/types/user_multi_definition_params_field_configuration_custom_members_item.py,sha256=P0ZCsdlvxJe29z2x8tTbHP75N7VQzqaF_GRaMqNCFxA,647
|
|
316
|
+
frameio/types/user_multi_definition_params_field_configuration_custom_members_item_type.py,sha256=0luGJU3C4C8hjCmIBG2jYVQeg_po7oeDz37cugBxzFQ,224
|
|
317
|
+
frameio/types/user_multi_definition_params_field_configuration_member_options_type.py,sha256=mUdSMgAVxioyWXgLM6mv41ZMD808cQwtd-uEu5pOtHk,223
|
|
318
|
+
frameio/types/user_multi_definition_with_includes.py,sha256=w3X3cCHvf2tjxaEvGEBv1v1jKjTQv4A7jk9ulY3lWek,384
|
|
319
|
+
frameio/types/user_role.py,sha256=V2cgr3_z2L_JLwUhCMlOkfSvf35fHVoiU7poAFYyqm0,441
|
|
320
|
+
frameio/types/user_role_role.py,sha256=3DlwW5w-VsPVkaiCou7SGNpJXQijKrghryQXIyyz3lg,221
|
|
321
|
+
frameio/types/user_roles_response.py,sha256=tmo7z9NFvNFB_kOH0_PBsMhvwzDplM-1N9gMaQpi6CE,614
|
|
322
|
+
frameio/types/user_single_definition.py,sha256=e-LXiybSR76IwfAvHELA1E0a-szPoJi0iMu864qdkFQ,1192
|
|
323
|
+
frameio/types/user_single_definition_field_configuration.py,sha256=FhdSYWhN5dwjwPREXOPkzbQG2DLRJmWaxWW-S7gaEic,846
|
|
324
|
+
frameio/types/user_single_definition_field_configuration_custom_members_item.py,sha256=4jJp7wHZVl_OewuUXOv87bGyGNtl60m-5Pvss7untF8,626
|
|
325
|
+
frameio/types/user_single_definition_field_configuration_custom_members_item_type.py,sha256=CAI4tR6kvCKX0amH6S1rshzxd0M1RyFvCWYMTq9Rok8,219
|
|
326
|
+
frameio/types/user_single_definition_field_configuration_member_options_type.py,sha256=vqSW4Tq2Y-xZmQ8LRKevv5mY5nUNJjYHuKYiN5vGKS4,218
|
|
327
|
+
frameio/types/user_single_definition_field_type.py,sha256=5bnafJZMSnNiL_K-E866dVZGqKEiw482cOpwVTa66vE,292
|
|
328
|
+
frameio/types/user_single_definition_params.py,sha256=ufwMt1azZzVCSDoIItIpl6jnjfRIs_QtOSh2sgzr1xI,570
|
|
329
|
+
frameio/types/user_single_definition_params_field_configuration.py,sha256=S69vtpxtFayZg6hLbE1ELgDln5WlnG0GcEFF_U7z-YY,914
|
|
330
|
+
frameio/types/user_single_definition_params_field_configuration_custom_members_item.py,sha256=-bdSQgF9bW1kT2eoW76VAFZwXj8Igua12GxOd5hBjjA,651
|
|
331
|
+
frameio/types/user_single_definition_params_field_configuration_custom_members_item_type.py,sha256=0lA1HaB5PQoV50WAVXF78Ekb_CTUpaoNVYRl2zhD4FA,225
|
|
332
|
+
frameio/types/user_single_definition_params_field_configuration_member_options_type.py,sha256=K2hD9jwEvZiXNHmk5yOz_xrm-Wd6Z9USTvKTTqqu9_0,224
|
|
333
|
+
frameio/types/user_single_definition_with_includes.py,sha256=YKmnx_nn3q0Jq7CasgPWMXtgRy-J_ED5qhHJG-GKJFQ,388
|
|
334
|
+
frameio/types/user_value.py,sha256=Jdu2icJSetlnAdRiZSjmxEZoM-UtXHt844VF5_k4v8E,452
|
|
335
|
+
frameio/types/user_value_type.py,sha256=SkCeZCToRZ7Imzmh49sN-klmhnWcAidU2NkIb5Rgp5w,167
|
|
336
|
+
frameio/types/uuid_.py,sha256=f_E8s4_PSBql8y7UtecDf75pYxyy2ubmTfBwYh-Q0Oo,76
|
|
337
|
+
frameio/types/version_stack.py,sha256=g2RdF0DuxuDqYqao_IH6BE_QtV-83XhrEdnZRAkAJs0,1063
|
|
338
|
+
frameio/types/version_stack_copy_response.py,sha256=qZNHb-Bs53Qmosy9GMZ74YQ1JZEmZjP7eyYZv8ImxkA,378
|
|
339
|
+
frameio/types/version_stack_response.py,sha256=8i6CZPJCYZH8Q10WQyU1I673xdWvLICTDH3EJJW-J70,374
|
|
340
|
+
frameio/types/version_stack_with_includes.py,sha256=PgS-gMlrFA3IkDPmYPWyFpTms94RF9P3sVliNlJgXPI,1496
|
|
341
|
+
frameio/types/version_stack_with_includes_response.py,sha256=kolkUac7s4iOAY0jUYNioZJxhd5sGZFwuBMnDvkKkf0,424
|
|
342
|
+
frameio/types/version_stacks_with_includes_response.py,sha256=IokwtIAgOrSg9QhaCRkWIwzxid4LcK_r83ppkCWq-MI,581
|
|
343
|
+
frameio/types/webhook.py,sha256=LMh-xkMEelKk0Suli2K_TBX6FbDpSfhsqgrzzYY1lyg,798
|
|
344
|
+
frameio/types/webhook_create_response.py,sha256=qPuZyL0hbJa--z70IkmFQ920zhZQcn06edTLKB4AKl4,475
|
|
345
|
+
frameio/types/webhook_create_response_data.py,sha256=mbv79T9TM_U1SlrIaTp5iV5K0BOwZalMaUMfQJJ-5yY,441
|
|
346
|
+
frameio/types/webhook_events.py,sha256=BaJSMz4EW9vbLSUlfbkQvO9aRyEKPK8IIDAWc7hOoWs,113
|
|
347
|
+
frameio/types/webhook_response.py,sha256=RwqyHZRqDgoXSUA7-aJjhi6mrKHMfj9eHtMGLvFZn2Y,353
|
|
348
|
+
frameio/types/webhook_with_includes.py,sha256=HX32K9haRqcknqhg3AYDwfUxWDwVooMLRFplnHvgDeU,334
|
|
349
|
+
frameio/types/webhook_with_includes_response.py,sha256=wKhJ9nK4oiJvW_D_SzaHKBDHhryr7KAxrBWH_7KURDs,403
|
|
350
|
+
frameio/types/webhooks_with_includes_response.py,sha256=xLqWQtmULAsb8T_DIEdtDGTA4O_Bx8eW1Q_9FDZLfiA,599
|
|
351
|
+
frameio/types/workspace.py,sha256=DBXFHdgocLDeCtlnGs2xEWIFwAnHBerxhcrQOehzENc,738
|
|
352
|
+
frameio/types/workspace_include.py,sha256=rTVk9DpT-LkJRCbBzdouVVkiZWj133K7yxYGZfIcAPc,125
|
|
353
|
+
frameio/types/workspace_params.py,sha256=oigDQBFGprsCVUtlYu_Ehf_6lkVqvyjr2j9_u3YOksE,429
|
|
354
|
+
frameio/types/workspace_params_data.py,sha256=J8S7mcF21ZTTO1t10C2n8obNx5Py1SfgBC4gdKpCLYE,407
|
|
355
|
+
frameio/types/workspace_response.py,sha256=HE28OucqMmKMtIHCFLbG87Bn_Vpo93f_MXImYzC4XGQ,409
|
|
356
|
+
frameio/types/workspace_with_includes.py,sha256=1QJkEzRlcsoF4H2-RmDFuRjN5zzkAYFgwQJnc3s29Tw,342
|
|
357
|
+
frameio/types/workspace_with_includes_response.py,sha256=7o6useCIYHw3k5qDkkUOjx1K4By8k4NWp6s0VVWDrzg,473
|
|
358
|
+
frameio/types/workspaces_with_includes_response.py,sha256=2bdWuE43lE8omFab4tCCPhjOt85nS_A57GmSOavnL-s,667
|
|
359
|
+
frameio/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
360
|
+
frameio/users/client.py,sha256=GTevyzcPlNXTouWBp_QGhkuqbgs6KlQ6dL9f8Pyj2Ig,2776
|
|
361
|
+
frameio/users/raw_client.py,sha256=r8EmH8itVFL1jADrlLYhGFyZAbNPnO0GoWsTal9yPPc,9334
|
|
362
|
+
frameio/version.py,sha256=THw1Q906Kg6c2altRvWiQ44oPlj2x8MSNrPZWs2izlM,74
|
|
363
|
+
frameio/version_stacks/__init__.py,sha256=_Hr7YsByAESCd-RPcGmmPzm0Prjm2CgP__8FeskFTpc,1492
|
|
364
|
+
frameio/version_stacks/client.py,sha256=CMHgm8rB1qgTmpoKsIy4cm4px_y49jcX_1JAQKLRXsM,25294
|
|
365
|
+
frameio/version_stacks/raw_client.py,sha256=zCapOqHtQyuAuDjzB1Nyg9JEmM3d15uDWwnilyu_6Nw,63093
|
|
366
|
+
frameio/version_stacks/types/__init__.py,sha256=shOLUByV7FAq9SlnYgVgZ-BBvdXbSSM1BbGRuBqR1AY,1731
|
|
367
|
+
frameio/version_stacks/types/version_stack_copy_params_data.py,sha256=boNcNmJyCXxbKIwNHtmzSwaith_VdiBgGlyLxppCWSc,465
|
|
368
|
+
frameio/version_stacks/types/version_stack_create_params_data.py,sha256=Sw1fsg13vT-v3ayP2665dyj3cZSaRiRZ4AsMlWN-TMg,752
|
|
369
|
+
frameio/version_stacks/types/version_stack_move_params_data.py,sha256=1dsvR4IWmrYEnxYByqnOaDuZL93iOeTTj7utdATmCoo,427
|
|
370
|
+
frameio/version_stacks/types/version_stacks_show_request_include.py,sha256=kfPLZYG1rBSj4Hhl87e6G2jfeCZaWfbZI1yf04b-B4c,472
|
|
371
|
+
frameio/webhooks/__init__.py,sha256=oEAzW_Cxe-GlFu4JnfRghTWvX-jN5EzNB-WYi11TFCY,1178
|
|
372
|
+
frameio/webhooks/client.py,sha256=_tHrtBMoC_DO9Bw0HBMpaHrjodIAmIAH040n35sIPEg,24030
|
|
373
|
+
frameio/webhooks/raw_client.py,sha256=BCXedVUC6UpdqqV5wN-M1iExKi2tH5RyVSB1SUmAhmU,51331
|
|
374
|
+
frameio/webhooks/types/__init__.py,sha256=xwiyliciFa4WMFzd5uh1Uv7oYLIdz27aH0NsIYJqHWk,1295
|
|
375
|
+
frameio/webhooks/types/webhook_create_params_data.py,sha256=jyHchpEgKI4dXcmzMZkjELPbA8j1V6OADTfhn8C9slY,483
|
|
376
|
+
frameio/webhooks/types/webhook_update_params_data.py,sha256=1d7CzocPTv5l_xMfRMktZQX7-O8D4XQiD28tao9aHa0,668
|
|
377
|
+
frameio/workspace_permissions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
378
|
+
frameio/workspace_permissions/client.py,sha256=sNZxXqGASkd_qmnrc8nu--D7DGDvsiWLvQNRfUV5dJ8,12831
|
|
379
|
+
frameio/workspace_permissions/raw_client.py,sha256=VbfizKsxRoov-TjxzhwgndCIPMP2EgBvFe6MCccPuIw,32060
|
|
380
|
+
frameio/workspaces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
381
|
+
frameio/workspaces/client.py,sha256=TTq270Tgi4TnPImT0vb-5ReuT06DOkUqwk5Srw37Hyg,15834
|
|
382
|
+
frameio/workspaces/raw_client.py,sha256=2h5IZ7ND5IABJcQQpLNsgN-H-YFpvC0ctoVNXsUOpzs,48769
|
|
383
|
+
frameio-0.0.28.dist-info/METADATA,sha256=NoSkNRUlO_pyUlrtmr1eXlmKlvKDaOjuDxeUNQN783g,8162
|
|
384
|
+
frameio-0.0.28.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
385
|
+
frameio-0.0.28.dist-info/RECORD,,
|