Skip to content

Commit ba95c8d

Browse files
Merge branch 'master' into fix/google-sheets-sdk-upgrade-v2
2 parents edb2054 + d7df4c6 commit ba95c8d

58 files changed

Lines changed: 9827 additions & 6703 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,19 @@
5858
# SALESFORCE_TEST_EVENT_ID=
5959

6060
# -- Xero --
61-
# (uses platform OAuth — tokens are short-lived, typically not set here)
61+
# XERO_ACCESS_TOKEN=
62+
# XERO_TENANT_ID=
63+
64+
# -- Coda --
65+
# CODA_API_KEY=
6266

6367
# -- Google Sheets --
6468
# GOOGLE_SHEETS_ACCESS_TOKEN=
6569
# GOOGLE_SHEETS_TEST_SPREADSHEET_ID=
6670

6771
# -- Gong --
68-
# GONG_ACCESS_KEY=
69-
# GONG_ACCESS_KEY_SECRET=
72+
# GONG_ACCESS_TOKEN=
73+
# GONG_API_BASE_URL=
7074

7175
# -- Float --
7276
# FLOAT_API_KEY=
@@ -76,3 +80,14 @@
7680

7781
# -- LinkedIn --
7882
# LINKEDIN_ACCESS_TOKEN=
83+
84+
# -- App Business Reviews --
85+
# APP_BUSINESS_REVIEWS_API_KEY=
86+
87+
# -- Harvest --
88+
# HARVEST_ACCESS_TOKEN=
89+
# HARVEST_ACCOUNT_ID=
90+
91+
# -- Gong --
92+
# GONG_ACCESS_KEY=
93+
# GONG_ACCESS_KEY_SECRET=

app-business-reviews/app_business_reviews.py

Lines changed: 120 additions & 64 deletions
Large diffs are not rendered by default.

app-business-reviews/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "App and Business Reviews",
33
"display_name": "App and Business Reviews",
4-
"version": "1.0.0",
4+
"version": "2.0.0",
55
"description": "Access reviews from App Store, Google Play Store, and Google Maps using SerpAPI",
66
"entry_point": "app_business_reviews.py",
77
"auth": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
autohive-integrations-sdk~=1.0.2
1+
autohive-integrations-sdk~=2.0.0
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
import sys
3+
4+
# Put the integration root on sys.path so test files can use plain imports
5+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))

app-business-reviews/tests/context.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

app-business-reviews/tests/test_app_business_reviews.py

Lines changed: 0 additions & 330 deletions
This file was deleted.

0 commit comments

Comments
 (0)