wordlift-client 1.133.0__tar.gz → 1.135.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/PKG-INFO +1 -1
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/README.md +11 -3
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/pyproject.toml +1 -1
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/setup.py +1 -1
- wordlift_client-1.135.0/test/test_analyze_content_request.py +55 -0
- wordlift_client-1.135.0/test/test_automation_issue.py +58 -0
- wordlift_client-1.135.0/test/test_bot_status.py +54 -0
- wordlift_client-1.135.0/test/test_content_freshness.py +56 -0
- wordlift_client-1.135.0/test/test_detected_schema.py +53 -0
- wordlift_client-1.135.0/test/test_html_semantics.py +53 -0
- wordlift_client-1.135.0/test/test_internal_linking.py +53 -0
- wordlift_client-1.135.0/test/test_quick_wins_result.py +59 -0
- wordlift_client-1.135.0/test/test_schema_recommendation.py +53 -0
- wordlift_client-1.135.0/test/test_well_known_files.py +57 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/__init__.py +11 -3
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/audit_api.py +15 -3
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/query_fan_out_api.py +16 -16
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api_client.py +1 -1
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/configuration.py +1 -1
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/__init__.py +10 -2
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/ai_visibility_analysis_result.py +1 -3
- wordlift_client-1.135.0/wordlift_client/models/analyze_content_request.py +105 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/audit_data.py +27 -11
- wordlift_client-1.135.0/wordlift_client/models/automation_issue.py +110 -0
- wordlift_client-1.135.0/wordlift_client/models/automation_readiness.py +113 -0
- wordlift_client-1.135.0/wordlift_client/models/bot_status.py +102 -0
- wordlift_client-1.135.0/wordlift_client/models/content_freshness.py +106 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_structure.py +10 -6
- wordlift_client-1.135.0/wordlift_client/models/detected_schema.py +100 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/error_response.py +5 -3
- wordlift_client-1.133.0/wordlift_client/models/automation_readiness.py → wordlift_client-1.135.0/wordlift_client/models/html_semantics.py +10 -12
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/image_accessibility.py +9 -7
- wordlift_client-1.135.0/wordlift_client/models/internal_linking.py +100 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/js_rendering.py +8 -17
- wordlift_client-1.133.0/wordlift_client/models/structured_data.py → wordlift_client-1.135.0/wordlift_client/models/quick_wins_result.py +20 -16
- wordlift_client-1.135.0/wordlift_client/models/schema_recommendation.py +90 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/seo_fundamentals.py +6 -3
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/site_files.py +25 -10
- wordlift_client-1.135.0/wordlift_client/models/structured_data.py +129 -0
- wordlift_client-1.135.0/wordlift_client/models/well_known_files.py +98 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client.egg-info/PKG-INFO +1 -1
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client.egg-info/SOURCES.txt +20 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/LICENSE +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/setup.cfg +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_config.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_google_search_console_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_info.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_stats.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_stats_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_account_subscription.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_accounts_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_active_account.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_add_on_configuration.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_add_ons_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_agent_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_ai_visibility_analysis_result.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_ai_visibility_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analyses_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analyses_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analyses_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analyses_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analytics_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analytics_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analytics_sync.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analytics_sync_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analytics_syncs_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_analyze_url_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_anchor_text.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_annotation.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_ask_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_ask_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_audit_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_audit_data.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_audit_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_audit_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_author_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_authorization.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_authorization_status.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_authors_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_autocomplete_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_autocomplete_result.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_automation_readiness.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_batch_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_botify_crawl_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_botify_crawl_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_build_authorize_uri_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_build_authorize_uri_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_classification_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_classification_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_classifications_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_completion_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_metadata.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_metadata_performance.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_metadata_sentiment.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score_breakdown.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score_breakdown_content.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score_breakdown_readability.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score_breakdown_readability_complex_sentences.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score_breakdown_seo.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluation_response_quality_score_breakdown_seo_top_entities_value_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_evaluations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_expansion_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_expansion_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_expansions_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_completion_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_fields_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_models_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_presets_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_records_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_records_export_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_renders_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_stats.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_stats_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_syncs_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generation_word_biases_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_generations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_content_structure.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_create_embeddings_input.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_create_seo_score200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_create_seo_score_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_create_url_inspection_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_custom_domains_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_data_uri_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_dataset_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_default_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_diagnostic_plugin.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_diagnostic_plugin_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_domain_validation_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_duplicate_authorization_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_embedding_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_embedding_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_embeddings_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entities_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entity.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entity1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entity_gap_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entity_gaps_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entity_match.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_entity_patch_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_error_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_event.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_exchange_auth_code_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_exchange_auth_code_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_fact_check_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_filter.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_filter_value.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_generate_sitemap200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_generate_sitemap_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_get_entities200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_google_merchants_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_google_search_console_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_google_search_console_o_auth2_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_google_search_console_searches_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_google_search_console_websites_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_graph.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_graph_ql_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_graphql_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_html.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_http_validation_error.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_image.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_image_accessibility.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_image_to_text_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_image_to_text_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_image_to_text_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_include_exclude.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_include_exclude_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_include_excludes_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_include_excludes_word_press_plugin_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_inspect_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_inspector_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_internal_link.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_internal_link_destination.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_internal_link_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_internal_link_source.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_internal_links_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_js_rendering.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_kg_embedding_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_kg_embedding_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_level_enum.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_link_group.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_link_group_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_link_groups_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_location_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_long_tails_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_longtail_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchant.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchant_entry.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchant_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchant_sync.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchant_syncs_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchant_view.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_merchants_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_microdata_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_model.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_model1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_model_field.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_network_account_info.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_node_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_node_request_metadata_value.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_o_auth2_authorized_client.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_o_auth2_authorized_client_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_o_auth2_authorized_clients_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_active_account.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_add_on_configuration.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_content_generation.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_field.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_merchant_entry.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_merchant_sync.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_merchant_view.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_model.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_o_auth2_authorized_client.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_platform_limit.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_preset.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_record.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_rule.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_vector_search_query_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_vector_search_question_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_website.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_website_search.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_with_limits.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_page_word.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_platform_consumptions_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_platform_limit.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_platform_limit_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_platform_limits_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_plugin_diagnostics_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_plugin_events_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_preset.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_problem_detail.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_project_type.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_properties.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_properties1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_query_coverage.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_query_coverage_output.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_query_fan_out_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_question_and_answer.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_question_and_answer_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_questions_and_answers_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_quick_win.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_rank_entities.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_record.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_redeem_codes_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_render_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_request1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_request2.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_request3.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_response1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_response2.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_rule.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_rule_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_rules_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_scope.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_search_analytics_synchronizations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_seo_fundamentals.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_seo_scores_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_site_files.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_site_files_bot_access.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_sitemap_generator_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_sitemap_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_sitemap_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_smart_content.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_smart_content_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_structured_data.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_submit_fact_check200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_submit_fact_check_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_summarizations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_token_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_token_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_tokens.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_tokens_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_topic.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_update_account_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_update_question_and_answer_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_update_record_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_update_records_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_update_site_url_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_validation_error.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_validation_error1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_validation_error1_detail_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_validation_fix.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_validation_result.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_validation_type_enum.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_nodes_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_queries_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_query_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_query_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_query_response_item_fields_value_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_query_response_item_metadata_value.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_question_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_question_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_vector_search_questions_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_async.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_asyncs_metadata_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_asyncs_responses_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_page.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_page_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_page_import_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_pages_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_web_pages_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_webpage_properties.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_website.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_website_search.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_what_operand_lhs.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_what_operator.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_when_operator.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_with_limits.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_word.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_word_repetition_data.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/test/test_word_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/__init__.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/account_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/account_google_search_console_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/account_stats_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/accounts_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/add_ons_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/agent_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/ai_visibility_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/analyses_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/analytics_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/analytics_syncs_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/authors_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/autocomplete_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/botify_crawl_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/classifications_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_evaluations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_expansions_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_completion_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_fields_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_models_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_presets_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_records_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_records_export_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_renders_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_stats_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_syncs_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generation_word_biases_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/content_generations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/custom_domains_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/data_uri_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/dataset_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/default_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/embedding_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/embeddings_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/entities_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/entity_gaps_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/fact_check_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/google_merchants_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/google_search_console_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/google_search_console_o_auth2_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/google_search_console_searches_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/google_search_console_websites_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/graph_ql_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/image_to_text_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/include_excludes_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/include_excludes_word_press_plugin_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/inspector_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/internal_links_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/link_groups_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/long_tails_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/merchant_syncs_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/merchants_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/microdata_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/o_auth2_authorized_clients_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/platform_consumptions_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/platform_limits_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/plugin_diagnostics_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/plugin_events_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/questions_and_answers_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/redeem_codes_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/rules_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/search_analytics_synchronizations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/seo_scores_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/sitemap_generator_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/sitemap_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/summarizations_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/token_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/tokens_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/vector_search_nodes_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/vector_search_queries_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/vector_search_questions_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/web_asyncs_metadata_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/web_asyncs_responses_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/web_pages_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api/web_pages_imports_api.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/api_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/exceptions.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/account.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/account_config.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/account_info.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/account_stats.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/account_subscription.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/active_account.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/add_on_configuration.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analyses_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analyses_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analyses_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analytics_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analytics_sync.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analytics_sync_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/analyze_url_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/anchor_text.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/annotation.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/ask_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/ask_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/audit_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/audit_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/author_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/authorization.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/authorization_status.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/autocomplete_result.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/batch_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/botify_crawl_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/build_authorize_uri_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/build_authorize_uri_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/classification_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/classification_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/completion_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_metadata.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_metadata_performance.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_metadata_sentiment.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score_breakdown.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score_breakdown_content.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score_breakdown_readability.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score_breakdown_readability_complex_sentences.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score_breakdown_seo.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_evaluation_response_quality_score_breakdown_seo_top_entities_value_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_expansion_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_expansion_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_generation.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_generation_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/content_generation_stats.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/create_embeddings_input.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/create_seo_score200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/create_seo_score_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/create_url_inspection_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/diagnostic_plugin.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/diagnostic_plugin_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/domain_validation_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/duplicate_authorization_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/embedding_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/entity.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/entity1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/entity_gap_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/entity_match.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/entity_patch_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/event.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/exchange_auth_code_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/exchange_auth_code_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/filter.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/filter_value.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/generate_sitemap200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/generate_sitemap_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/get_entities200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/graph.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/graphql_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/html.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/http_validation_error.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/image.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/image_to_text_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/image_to_text_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/include_exclude.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/include_exclude_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/inspect_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/internal_link.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/internal_link_destination.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/internal_link_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/internal_link_source.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/kg_embedding_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/kg_embedding_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/level_enum.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/link_group.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/link_group_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/location_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/longtail_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/merchant.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/merchant_entry.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/merchant_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/merchant_sync.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/merchant_view.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/model.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/model1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/model_field.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/network_account_info.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/node_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/node_request_metadata_value.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/o_auth2_authorized_client.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/o_auth2_authorized_client_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_active_account.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_add_on_configuration.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_content_generation.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_field.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_merchant_entry.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_merchant_sync.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_merchant_view.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_model.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_o_auth2_authorized_client.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_platform_limit.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_preset.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_record.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_rule.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_vector_search_query_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_vector_search_question_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_website.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_website_search.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_with_limits.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/page_word.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/platform_limit.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/platform_limit_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/preset.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/problem_detail.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/project_type.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/properties.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/properties1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/query_coverage.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/query_coverage_output.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/question_and_answer.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/question_and_answer_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/quick_win.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/rank_entities.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/record.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/render_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/request1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/request2.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/request3.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/response1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/response2.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/rule.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/rule_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/scope.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/site_files_bot_access.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/sitemap_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/smart_content.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/smart_content_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/submit_fact_check200_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/submit_fact_check_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/token_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/tokens.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/topic.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/update_account_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/update_question_and_answer_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/update_record_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/update_records_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/update_site_url_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/validation_error.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/validation_error1.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/validation_error1_detail_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/validation_fix.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/validation_result.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/validation_type_enum.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/vector_search_query_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/vector_search_query_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/vector_search_query_response_item_fields_value_inner.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/vector_search_query_response_item_metadata_value.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/vector_search_question_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/vector_search_question_response_item.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/web_async.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/web_page.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/web_page_import_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/web_page_import_response.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/webpage_properties.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/website.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/website_search.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/what_operand_lhs.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/what_operator.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/when_operator.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/with_limits.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/word.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/word_repetition_data.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/models/word_request.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/py.typed +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client/rest.py +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client.egg-info/dependency_links.txt +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client.egg-info/requires.txt +0 -0
- {wordlift_client-1.133.0 → wordlift_client-1.135.0}/wordlift_client.egg-info/top_level.txt +0 -0
|
@@ -4,7 +4,7 @@ WordLift API
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
6
|
- API version: 1.0
|
|
7
|
-
- Package version: 1.
|
|
7
|
+
- Package version: 1.135.0
|
|
8
8
|
- Generator version: 7.6.0
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
For more information, please visit [https://wordlift.io](https://wordlift.io)
|
|
@@ -254,7 +254,7 @@ Class | Method | HTTP request | Description
|
|
|
254
254
|
- [AnalyticsImportRequest](docs/AnalyticsImportRequest.md)
|
|
255
255
|
- [AnalyticsSync](docs/AnalyticsSync.md)
|
|
256
256
|
- [AnalyticsSyncRequest](docs/AnalyticsSyncRequest.md)
|
|
257
|
-
- [
|
|
257
|
+
- [AnalyzeContentRequest](docs/AnalyzeContentRequest.md)
|
|
258
258
|
- [AnchorText](docs/AnchorText.md)
|
|
259
259
|
- [Annotation](docs/Annotation.md)
|
|
260
260
|
- [AskRequest](docs/AskRequest.md)
|
|
@@ -266,8 +266,10 @@ Class | Method | HTTP request | Description
|
|
|
266
266
|
- [Authorization](docs/Authorization.md)
|
|
267
267
|
- [AuthorizationStatus](docs/AuthorizationStatus.md)
|
|
268
268
|
- [AutocompleteResult](docs/AutocompleteResult.md)
|
|
269
|
+
- [AutomationIssue](docs/AutomationIssue.md)
|
|
269
270
|
- [AutomationReadiness](docs/AutomationReadiness.md)
|
|
270
271
|
- [BatchRequest](docs/BatchRequest.md)
|
|
272
|
+
- [BotStatus](docs/BotStatus.md)
|
|
271
273
|
- [BotifyCrawlImportRequest](docs/BotifyCrawlImportRequest.md)
|
|
272
274
|
- [BuildAuthorizeUriRequest](docs/BuildAuthorizeUriRequest.md)
|
|
273
275
|
- [BuildAuthorizeUriResponse](docs/BuildAuthorizeUriResponse.md)
|
|
@@ -288,12 +290,14 @@ Class | Method | HTTP request | Description
|
|
|
288
290
|
- [ContentEvaluationResponseQualityScoreBreakdownSeoTopEntitiesValueInner](docs/ContentEvaluationResponseQualityScoreBreakdownSeoTopEntitiesValueInner.md)
|
|
289
291
|
- [ContentExpansionRequest](docs/ContentExpansionRequest.md)
|
|
290
292
|
- [ContentExpansionResponse](docs/ContentExpansionResponse.md)
|
|
293
|
+
- [ContentFreshness](docs/ContentFreshness.md)
|
|
291
294
|
- [ContentGeneration](docs/ContentGeneration.md)
|
|
292
295
|
- [ContentGenerationRequest](docs/ContentGenerationRequest.md)
|
|
293
296
|
- [ContentGenerationStats](docs/ContentGenerationStats.md)
|
|
294
297
|
- [ContentStructure](docs/ContentStructure.md)
|
|
295
298
|
- [CreateEmbeddingsInput](docs/CreateEmbeddingsInput.md)
|
|
296
299
|
- [CreateUrlInspectionRequest](docs/CreateUrlInspectionRequest.md)
|
|
300
|
+
- [DetectedSchema](docs/DetectedSchema.md)
|
|
297
301
|
- [DiagnosticPlugin](docs/DiagnosticPlugin.md)
|
|
298
302
|
- [DiagnosticPluginRequest](docs/DiagnosticPluginRequest.md)
|
|
299
303
|
- [DomainValidationRequest](docs/DomainValidationRequest.md)
|
|
@@ -315,6 +319,7 @@ Class | Method | HTTP request | Description
|
|
|
315
319
|
- [GraphqlRequest](docs/GraphqlRequest.md)
|
|
316
320
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
317
321
|
- [Html](docs/Html.md)
|
|
322
|
+
- [HtmlSemantics](docs/HtmlSemantics.md)
|
|
318
323
|
- [Image](docs/Image.md)
|
|
319
324
|
- [ImageAccessibility](docs/ImageAccessibility.md)
|
|
320
325
|
- [IncludeExclude](docs/IncludeExclude.md)
|
|
@@ -324,6 +329,7 @@ Class | Method | HTTP request | Description
|
|
|
324
329
|
- [InternalLinkDestination](docs/InternalLinkDestination.md)
|
|
325
330
|
- [InternalLinkRequest](docs/InternalLinkRequest.md)
|
|
326
331
|
- [InternalLinkSource](docs/InternalLinkSource.md)
|
|
332
|
+
- [InternalLinking](docs/InternalLinking.md)
|
|
327
333
|
- [Item](docs/Item.md)
|
|
328
334
|
- [JsRendering](docs/JsRendering.md)
|
|
329
335
|
- [KgEmbeddingRequest](docs/KgEmbeddingRequest.md)
|
|
@@ -375,6 +381,7 @@ Class | Method | HTTP request | Description
|
|
|
375
381
|
- [QuestionAndAnswer](docs/QuestionAndAnswer.md)
|
|
376
382
|
- [QuestionAndAnswerRequest](docs/QuestionAndAnswerRequest.md)
|
|
377
383
|
- [QuickWin](docs/QuickWin.md)
|
|
384
|
+
- [QuickWinsResult](docs/QuickWinsResult.md)
|
|
378
385
|
- [RankEntities](docs/RankEntities.md)
|
|
379
386
|
- [Record](docs/Record.md)
|
|
380
387
|
- [RenderRequest](docs/RenderRequest.md)
|
|
@@ -387,10 +394,10 @@ Class | Method | HTTP request | Description
|
|
|
387
394
|
- [Response2](docs/Response2.md)
|
|
388
395
|
- [Rule](docs/Rule.md)
|
|
389
396
|
- [RuleRequest](docs/RuleRequest.md)
|
|
397
|
+
- [SchemaRecommendation](docs/SchemaRecommendation.md)
|
|
390
398
|
- [Scope](docs/Scope.md)
|
|
391
399
|
- [SeoFundamentals](docs/SeoFundamentals.md)
|
|
392
400
|
- [SiteFiles](docs/SiteFiles.md)
|
|
393
|
-
- [SiteFilesBotAccess](docs/SiteFilesBotAccess.md)
|
|
394
401
|
- [SitemapImportRequest](docs/SitemapImportRequest.md)
|
|
395
402
|
- [SmartContent](docs/SmartContent.md)
|
|
396
403
|
- [SmartContentRequest](docs/SmartContentRequest.md)
|
|
@@ -424,6 +431,7 @@ Class | Method | HTTP request | Description
|
|
|
424
431
|
- [WebpageProperties](docs/WebpageProperties.md)
|
|
425
432
|
- [Website](docs/Website.md)
|
|
426
433
|
- [WebsiteSearch](docs/WebsiteSearch.md)
|
|
434
|
+
- [WellKnownFiles](docs/WellKnownFiles.md)
|
|
427
435
|
- [WhatOperandLhs](docs/WhatOperandLhs.md)
|
|
428
436
|
- [WhatOperator](docs/WhatOperator.md)
|
|
429
437
|
- [WhenOperator](docs/WhenOperator.md)
|
|
@@ -22,7 +22,7 @@ from setuptools import setup, find_packages # noqa: H301
|
|
|
22
22
|
# prerequisite: setuptools
|
|
23
23
|
# http://pypi.python.org/pypi/setuptools
|
|
24
24
|
NAME = "wordlift-client"
|
|
25
|
-
VERSION = "1.
|
|
25
|
+
VERSION = "1.135.0"
|
|
26
26
|
PYTHON_REQUIRES = ">=3.7"
|
|
27
27
|
REQUIRES = [
|
|
28
28
|
"urllib3 >= 1.25.3, < 2.1.0",
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.analyze_content_request import AnalyzeContentRequest
|
|
19
|
+
|
|
20
|
+
class TestAnalyzeContentRequest(unittest.TestCase):
|
|
21
|
+
"""AnalyzeContentRequest unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> AnalyzeContentRequest:
|
|
30
|
+
"""Test AnalyzeContentRequest
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `AnalyzeContentRequest`
|
|
35
|
+
"""
|
|
36
|
+
model = AnalyzeContentRequest()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return AnalyzeContentRequest(
|
|
39
|
+
url = '0',
|
|
40
|
+
text = '',
|
|
41
|
+
num_queries = 1,
|
|
42
|
+
coverage_threshold = 0
|
|
43
|
+
)
|
|
44
|
+
else:
|
|
45
|
+
return AnalyzeContentRequest(
|
|
46
|
+
)
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
def testAnalyzeContentRequest(self):
|
|
50
|
+
"""Test AnalyzeContentRequest"""
|
|
51
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
52
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
53
|
+
|
|
54
|
+
if __name__ == '__main__':
|
|
55
|
+
unittest.main()
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.automation_issue import AutomationIssue
|
|
19
|
+
|
|
20
|
+
class TestAutomationIssue(unittest.TestCase):
|
|
21
|
+
"""AutomationIssue unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> AutomationIssue:
|
|
30
|
+
"""Test AutomationIssue
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `AutomationIssue`
|
|
35
|
+
"""
|
|
36
|
+
model = AutomationIssue()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return AutomationIssue(
|
|
39
|
+
priority = 'P1',
|
|
40
|
+
criterion = '',
|
|
41
|
+
what = '',
|
|
42
|
+
where = '',
|
|
43
|
+
why = '',
|
|
44
|
+
how = '',
|
|
45
|
+
compliance = ''
|
|
46
|
+
)
|
|
47
|
+
else:
|
|
48
|
+
return AutomationIssue(
|
|
49
|
+
)
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
def testAutomationIssue(self):
|
|
53
|
+
"""Test AutomationIssue"""
|
|
54
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
55
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
56
|
+
|
|
57
|
+
if __name__ == '__main__':
|
|
58
|
+
unittest.main()
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.bot_status import BotStatus
|
|
19
|
+
|
|
20
|
+
class TestBotStatus(unittest.TestCase):
|
|
21
|
+
"""BotStatus unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> BotStatus:
|
|
30
|
+
"""Test BotStatus
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `BotStatus`
|
|
35
|
+
"""
|
|
36
|
+
model = BotStatus()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return BotStatus(
|
|
39
|
+
name = '',
|
|
40
|
+
vendor = '',
|
|
41
|
+
status = 'Allowed'
|
|
42
|
+
)
|
|
43
|
+
else:
|
|
44
|
+
return BotStatus(
|
|
45
|
+
)
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
def testBotStatus(self):
|
|
49
|
+
"""Test BotStatus"""
|
|
50
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
51
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
52
|
+
|
|
53
|
+
if __name__ == '__main__':
|
|
54
|
+
unittest.main()
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.content_freshness import ContentFreshness
|
|
19
|
+
|
|
20
|
+
class TestContentFreshness(unittest.TestCase):
|
|
21
|
+
"""ContentFreshness unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> ContentFreshness:
|
|
30
|
+
"""Test ContentFreshness
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `ContentFreshness`
|
|
35
|
+
"""
|
|
36
|
+
model = ContentFreshness()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return ContentFreshness(
|
|
39
|
+
status = 'Unknown',
|
|
40
|
+
explanation = '',
|
|
41
|
+
category = '',
|
|
42
|
+
publication_date = '',
|
|
43
|
+
last_updated_date = ''
|
|
44
|
+
)
|
|
45
|
+
else:
|
|
46
|
+
return ContentFreshness(
|
|
47
|
+
)
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
def testContentFreshness(self):
|
|
51
|
+
"""Test ContentFreshness"""
|
|
52
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
53
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
54
|
+
|
|
55
|
+
if __name__ == '__main__':
|
|
56
|
+
unittest.main()
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.detected_schema import DetectedSchema
|
|
19
|
+
|
|
20
|
+
class TestDetectedSchema(unittest.TestCase):
|
|
21
|
+
"""DetectedSchema unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> DetectedSchema:
|
|
30
|
+
"""Test DetectedSchema
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `DetectedSchema`
|
|
35
|
+
"""
|
|
36
|
+
model = DetectedSchema()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return DetectedSchema(
|
|
39
|
+
type = '',
|
|
40
|
+
format = 'JSON-LD'
|
|
41
|
+
)
|
|
42
|
+
else:
|
|
43
|
+
return DetectedSchema(
|
|
44
|
+
)
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def testDetectedSchema(self):
|
|
48
|
+
"""Test DetectedSchema"""
|
|
49
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
50
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
unittest.main()
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.html_semantics import HtmlSemantics
|
|
19
|
+
|
|
20
|
+
class TestHtmlSemantics(unittest.TestCase):
|
|
21
|
+
"""HtmlSemantics unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> HtmlSemantics:
|
|
30
|
+
"""Test HtmlSemantics
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `HtmlSemantics`
|
|
35
|
+
"""
|
|
36
|
+
model = HtmlSemantics()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return HtmlSemantics(
|
|
39
|
+
status = 'Unknown',
|
|
40
|
+
explanation = ''
|
|
41
|
+
)
|
|
42
|
+
else:
|
|
43
|
+
return HtmlSemantics(
|
|
44
|
+
)
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def testHtmlSemantics(self):
|
|
48
|
+
"""Test HtmlSemantics"""
|
|
49
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
50
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
unittest.main()
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.internal_linking import InternalLinking
|
|
19
|
+
|
|
20
|
+
class TestInternalLinking(unittest.TestCase):
|
|
21
|
+
"""InternalLinking unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> InternalLinking:
|
|
30
|
+
"""Test InternalLinking
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `InternalLinking`
|
|
35
|
+
"""
|
|
36
|
+
model = InternalLinking()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return InternalLinking(
|
|
39
|
+
status = 'Unknown',
|
|
40
|
+
explanation = ''
|
|
41
|
+
)
|
|
42
|
+
else:
|
|
43
|
+
return InternalLinking(
|
|
44
|
+
)
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def testInternalLinking(self):
|
|
48
|
+
"""Test InternalLinking"""
|
|
49
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
50
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
unittest.main()
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.quick_wins_result import QuickWinsResult
|
|
19
|
+
|
|
20
|
+
class TestQuickWinsResult(unittest.TestCase):
|
|
21
|
+
"""QuickWinsResult unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> QuickWinsResult:
|
|
30
|
+
"""Test QuickWinsResult
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `QuickWinsResult`
|
|
35
|
+
"""
|
|
36
|
+
model = QuickWinsResult()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return QuickWinsResult(
|
|
39
|
+
status = 'Good',
|
|
40
|
+
explanation = '',
|
|
41
|
+
wins = [
|
|
42
|
+
wordlift_client.models.quick_win.QuickWin(
|
|
43
|
+
title = '',
|
|
44
|
+
description = '',
|
|
45
|
+
impact = 'High', )
|
|
46
|
+
]
|
|
47
|
+
)
|
|
48
|
+
else:
|
|
49
|
+
return QuickWinsResult(
|
|
50
|
+
)
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def testQuickWinsResult(self):
|
|
54
|
+
"""Test QuickWinsResult"""
|
|
55
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
56
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
57
|
+
|
|
58
|
+
if __name__ == '__main__':
|
|
59
|
+
unittest.main()
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.schema_recommendation import SchemaRecommendation
|
|
19
|
+
|
|
20
|
+
class TestSchemaRecommendation(unittest.TestCase):
|
|
21
|
+
"""SchemaRecommendation unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> SchemaRecommendation:
|
|
30
|
+
"""Test SchemaRecommendation
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `SchemaRecommendation`
|
|
35
|
+
"""
|
|
36
|
+
model = SchemaRecommendation()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return SchemaRecommendation(
|
|
39
|
+
title = '',
|
|
40
|
+
description = ''
|
|
41
|
+
)
|
|
42
|
+
else:
|
|
43
|
+
return SchemaRecommendation(
|
|
44
|
+
)
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
def testSchemaRecommendation(self):
|
|
48
|
+
"""Test SchemaRecommendation"""
|
|
49
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
50
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
51
|
+
|
|
52
|
+
if __name__ == '__main__':
|
|
53
|
+
unittest.main()
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
WordLift API
|
|
5
|
+
|
|
6
|
+
WordLift API
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Contact: hello@wordlift.io
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import unittest
|
|
17
|
+
|
|
18
|
+
from wordlift_client.models.well_known_files import WellKnownFiles
|
|
19
|
+
|
|
20
|
+
class TestWellKnownFiles(unittest.TestCase):
|
|
21
|
+
"""WellKnownFiles unit test stubs"""
|
|
22
|
+
|
|
23
|
+
def setUp(self):
|
|
24
|
+
pass
|
|
25
|
+
|
|
26
|
+
def tearDown(self):
|
|
27
|
+
pass
|
|
28
|
+
|
|
29
|
+
def make_instance(self, include_optional) -> WellKnownFiles:
|
|
30
|
+
"""Test WellKnownFiles
|
|
31
|
+
include_option is a boolean, when False only required
|
|
32
|
+
params are included, when True both required and
|
|
33
|
+
optional params are included """
|
|
34
|
+
# uncomment below to create an instance of `WellKnownFiles`
|
|
35
|
+
"""
|
|
36
|
+
model = WellKnownFiles()
|
|
37
|
+
if include_optional:
|
|
38
|
+
return WellKnownFiles(
|
|
39
|
+
ai_plugin = True,
|
|
40
|
+
ucp = True,
|
|
41
|
+
security = True,
|
|
42
|
+
asset_links = True,
|
|
43
|
+
apple_association = True,
|
|
44
|
+
llms_txt = True
|
|
45
|
+
)
|
|
46
|
+
else:
|
|
47
|
+
return WellKnownFiles(
|
|
48
|
+
)
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
def testWellKnownFiles(self):
|
|
52
|
+
"""Test WellKnownFiles"""
|
|
53
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
54
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
55
|
+
|
|
56
|
+
if __name__ == '__main__':
|
|
57
|
+
unittest.main()
|