airbyte-source-google-search-console 1.6.0.dev202503282247__py3-none-any.whl → 1.7.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 (22) hide show
  1. {airbyte_source_google_search_console-1.6.0.dev202503282247.dist-info → airbyte_source_google_search_console-1.7.0.dist-info}/METADATA +4 -4
  2. airbyte_source_google_search_console-1.7.0.dist-info/RECORD +22 -0
  3. {airbyte_source_google_search_console-1.6.0.dev202503282247.dist-info → airbyte_source_google_search_console-1.7.0.dist-info}/WHEEL +1 -1
  4. source_google_search_console/components.py +81 -0
  5. source_google_search_console/config_migrations.py +4 -1
  6. source_google_search_console/manifest.yaml +828 -0
  7. source_google_search_console/run.py +47 -9
  8. source_google_search_console/service_account_authenticator.py +3 -1
  9. source_google_search_console/source.py +23 -59
  10. source_google_search_console/spec.json +7 -0
  11. source_google_search_console/streams.py +1 -121
  12. airbyte_source_google_search_console-1.6.0.dev202503282247.dist-info/RECORD +0 -29
  13. source_google_search_console/schemas/search_analytics_by_country.json +0 -41
  14. source_google_search_console/schemas/search_analytics_keyword_page_report.json +0 -54
  15. source_google_search_console/schemas/search_analytics_keyword_page_report_minimal_dimensions.json +0 -54
  16. source_google_search_console/schemas/search_analytics_keyword_site_report_by_page.json +0 -50
  17. source_google_search_console/schemas/search_analytics_keyword_site_report_by_page_minimal_dimensions.json +0 -50
  18. source_google_search_console/schemas/search_analytics_keyword_site_report_by_site.json +0 -50
  19. source_google_search_console/schemas/search_analytics_keyword_site_report_by_site_minimal_dimensions.json +0 -50
  20. source_google_search_console/schemas/sitemaps.json +0 -61
  21. source_google_search_console/schemas/sites.json +0 -14
  22. {airbyte_source_google_search_console-1.6.0.dev202503282247.dist-info → airbyte_source_google_search_console-1.7.0.dist-info}/entry_points.txt +0 -0
@@ -1,50 +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 website for which the search analytics data is retrieved.",
8
- "type": ["null", "string"]
9
- },
10
- "search_type": {
11
- "description": "The type of search conducted (e.g., web, image, video).",
12
- "type": ["null", "string"]
13
- },
14
- "date": {
15
- "description": "The date when the search data was recorded.",
16
- "type": ["null", "string"],
17
- "format": "date"
18
- },
19
- "country": {
20
- "description": "The country from which the search query originated.",
21
- "type": ["null", "string"]
22
- },
23
- "device": {
24
- "description": "The device type used for the search query (e.g., desktop, mobile).",
25
- "type": ["null", "string"]
26
- },
27
- "query": {
28
- "description": "The search query used by the user.",
29
- "type": ["null", "string"]
30
- },
31
- "clicks": {
32
- "description": "The number of times users clicked on your website link in search results.",
33
- "type": ["null", "integer"]
34
- },
35
- "impressions": {
36
- "description": "The number of times your website link appeared in search results.",
37
- "type": ["null", "integer"]
38
- },
39
- "ctr": {
40
- "description": "Click-through rate: Number of clicks divided by the number of impressions.",
41
- "type": ["null", "number"],
42
- "multipleOf": 1e-25
43
- },
44
- "position": {
45
- "description": "The average position of your website link in search results.",
46
- "type": ["null", "number"],
47
- "multipleOf": 1e-25
48
- }
49
- }
50
- }
@@ -1,50 +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 for which the search analytics data is recorded.",
8
- "type": ["null", "string"]
9
- },
10
- "search_type": {
11
- "description": "The type of search (e.g., web search, image search) that generated the analytics data.",
12
- "type": ["null", "string"]
13
- },
14
- "date": {
15
- "description": "The date for which the search analytics data is recorded.",
16
- "type": ["null", "string"],
17
- "format": "date"
18
- },
19
- "country": {
20
- "description": "The country from which the search originated.",
21
- "type": ["null", "string"]
22
- },
23
- "device": {
24
- "description": "The type of device used by the user during the search (e.g., desktop, mobile).",
25
- "type": ["null", "string"]
26
- },
27
- "query": {
28
- "description": "The search query used by the user to find the site in search results.",
29
- "type": ["null", "string"]
30
- },
31
- "clicks": {
32
- "description": "The number of times users clicked on the search result linking to the site.",
33
- "type": ["null", "integer"]
34
- },
35
- "impressions": {
36
- "description": "The number of times the site was shown in search results to users.",
37
- "type": ["null", "integer"]
38
- },
39
- "ctr": {
40
- "description": "Click-through rate represents the percentage of users who clicked on the site's link after seeing it in search results.",
41
- "type": ["null", "number"],
42
- "multipleOf": 1e-25
43
- },
44
- "position": {
45
- "description": "The average ranking position of the site in search results.",
46
- "type": ["null", "number"],
47
- "multipleOf": 1e-25
48
- }
49
- }
50
- }
@@ -1,50 +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 for which the search analytics data is recorded.",
8
- "type": ["null", "string"]
9
- },
10
- "search_type": {
11
- "description": "The type of search (e.g., web search, image search) that generated the analytics data.",
12
- "type": ["null", "string"]
13
- },
14
- "date": {
15
- "description": "The date for which the search analytics data is recorded.",
16
- "type": ["null", "string"],
17
- "format": "date"
18
- },
19
- "country": {
20
- "description": "The country from which the search originated.",
21
- "type": ["null", "string"]
22
- },
23
- "device": {
24
- "description": "The type of device used by the user during the search (e.g., desktop, mobile).",
25
- "type": ["null", "string"]
26
- },
27
- "query": {
28
- "description": "The search query used by the user to find the site in search results.",
29
- "type": ["null", "string"]
30
- },
31
- "clicks": {
32
- "description": "The number of times users clicked on the search result linking to the site.",
33
- "type": ["null", "integer"]
34
- },
35
- "impressions": {
36
- "description": "The number of times the site was shown in search results to users.",
37
- "type": ["null", "integer"]
38
- },
39
- "ctr": {
40
- "description": "Click-through rate represents the percentage of users who clicked on the site's link after seeing it in search results.",
41
- "type": ["null", "number"],
42
- "multipleOf": 1e-25
43
- },
44
- "position": {
45
- "description": "The average ranking position of the site in search results.",
46
- "type": ["null", "number"],
47
- "multipleOf": 1e-25
48
- }
49
- }
50
- }
@@ -1,61 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "properties": {
5
- "path": {
6
- "description": "Path to the sitemap file",
7
- "type": ["null", "string"]
8
- },
9
- "lastSubmitted": {
10
- "description": "Timestamp when the sitemap was last submitted",
11
- "type": ["null", "string"],
12
- "format": "date-time"
13
- },
14
- "isPending": {
15
- "description": "Flag indicating if the sitemap is pending for processing",
16
- "type": ["null", "boolean"]
17
- },
18
- "isSitemapsIndex": {
19
- "description": "Flag indicating if the data represents a sitemap index",
20
- "type": ["null", "boolean"]
21
- },
22
- "type": {
23
- "description": "Type of the sitemap",
24
- "type": ["null", "string"]
25
- },
26
- "lastDownloaded": {
27
- "description": "Timestamp when the sitemap was last downloaded",
28
- "type": ["null", "string"],
29
- "format": "date-time"
30
- },
31
- "warnings": {
32
- "description": "Warnings encountered while processing the sitemaps",
33
- "type": ["null", "string"]
34
- },
35
- "errors": {
36
- "description": "Errors encountered while processing the sitemaps",
37
- "type": ["null", "string"]
38
- },
39
- "contents": {
40
- "description": "Data related to the sitemap contents",
41
- "type": "array",
42
- "items": {
43
- "type": "object",
44
- "properties": {
45
- "type": {
46
- "description": "Type of the sitemap content",
47
- "type": ["null", "string"]
48
- },
49
- "submitted": {
50
- "description": "Number of submitted sitemap URLs",
51
- "type": ["null", "string"]
52
- },
53
- "indexed": {
54
- "description": "Number of indexed sitemap URLs",
55
- "type": ["null", "string"]
56
- }
57
- }
58
- }
59
- }
60
- }
61
- }
@@ -1,14 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "properties": {
5
- "siteUrl": {
6
- "description": "The URL of the site data being fetched",
7
- "type": ["null", "string"]
8
- },
9
- "permissionLevel": {
10
- "description": "The user's permission level for the site (owner, full, restricted, etc.)",
11
- "type": ["null", "string"]
12
- }
13
- }
14
- }