airbyte-source-google-search-console 1.6.0rc1__py3-none-any.whl → 1.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. {airbyte_source_google_search_console-1.6.0rc1.dist-info → airbyte_source_google_search_console-1.8.0.dist-info}/METADATA +1 -1
  2. airbyte_source_google_search_console-1.8.0.dist-info/RECORD +14 -0
  3. source_google_search_console/manifest.yaml +1269 -43
  4. source_google_search_console/source.py +2 -31
  5. source_google_search_console/spec.json +16 -0
  6. source_google_search_console/streams.py +0 -112
  7. airbyte_source_google_search_console-1.6.0rc1.dist-info/RECORD +0 -25
  8. source_google_search_console/schemas/search_analytics_all_fields.json +0 -53
  9. source_google_search_console/schemas/search_analytics_by_date.json +0 -37
  10. source_google_search_console/schemas/search_analytics_by_device.json +0 -41
  11. source_google_search_console/schemas/search_analytics_by_page.json +0 -41
  12. source_google_search_console/schemas/search_analytics_by_query.json +0 -41
  13. source_google_search_console/schemas/search_analytics_keyword_page_report.json +0 -54
  14. source_google_search_console/schemas/search_analytics_keyword_site_report_by_page.json +0 -50
  15. source_google_search_console/schemas/search_analytics_keyword_site_report_by_site.json +0 -50
  16. source_google_search_console/schemas/search_analytics_page_report.json +0 -50
  17. source_google_search_console/schemas/search_analytics_site_report_by_page.json +0 -46
  18. source_google_search_console/schemas/search_analytics_site_report_by_site.json +0 -46
  19. {airbyte_source_google_search_console-1.6.0rc1.dist-info → airbyte_source_google_search_console-1.8.0.dist-info}/WHEEL +0 -0
  20. {airbyte_source_google_search_console-1.6.0rc1.dist-info → airbyte_source_google_search_console-1.8.0.dist-info}/entry_points.txt +0 -0
@@ -1,46 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "additionalProperties": true,
5
- "properties": {
6
- "site_url": {
7
- "description": "The URL of the page on the site that is being reported.",
8
- "type": ["null", "string"]
9
- },
10
- "search_type": {
11
- "description": "The type of search query that led to the page being shown.",
12
- "type": ["null", "string"]
13
- },
14
- "date": {
15
- "description": "The date for which the data is being reported.",
16
- "type": ["null", "string"],
17
- "format": "date"
18
- },
19
- "country": {
20
- "description": "The country from which the search traffic originated.",
21
- "type": ["null", "string"]
22
- },
23
- "device": {
24
- "description": "The type of device used by the searcher (e.g., desktop, mobile).",
25
- "type": ["null", "string"]
26
- },
27
- "clicks": {
28
- "description": "The total number of clicks received by the page from search results.",
29
- "type": ["null", "integer"]
30
- },
31
- "impressions": {
32
- "description": "The total number of times the page appeared in search results.",
33
- "type": ["null", "integer"]
34
- },
35
- "ctr": {
36
- "description": "The click-through rate, i.e., the percentage of total impressions that resulted in clicks.",
37
- "type": ["null", "number"],
38
- "multipleOf": 1e-25
39
- },
40
- "position": {
41
- "description": "The average position at which the page appeared in search results.",
42
- "type": ["null", "number"],
43
- "multipleOf": 1e-25
44
- }
45
- }
46
- }
@@ -1,46 +0,0 @@
1
- {
2
- "$schema": "https://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "additionalProperties": true,
5
- "properties": {
6
- "site_url": {
7
- "description": "The URL of the site being analyzed",
8
- "type": ["null", "string"]
9
- },
10
- "search_type": {
11
- "description": "The type of search (e.g., web, image, video)",
12
- "type": ["null", "string"]
13
- },
14
- "date": {
15
- "description": "The date of the search analytics data",
16
- "type": ["null", "string"],
17
- "format": "date"
18
- },
19
- "country": {
20
- "description": "The country where the search took place",
21
- "type": ["null", "string"]
22
- },
23
- "device": {
24
- "description": "The type of device used for the search (e.g., mobile, desktop)",
25
- "type": ["null", "string"]
26
- },
27
- "clicks": {
28
- "description": "The number of times users clicked on a search result linking to the site",
29
- "type": ["null", "integer"]
30
- },
31
- "impressions": {
32
- "description": "The number of times the site appeared in search results",
33
- "type": ["null", "integer"]
34
- },
35
- "ctr": {
36
- "description": "Click-through rate calculated as clicks divided by impressions",
37
- "type": ["null", "number"],
38
- "multipleOf": 1e-25
39
- },
40
- "position": {
41
- "description": "The average position of the site in search results",
42
- "type": ["null", "number"],
43
- "multipleOf": 1e-25
44
- }
45
- }
46
- }