@pagesolver/sdk 1.3.2 → 1.4.0
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.
- package/README.md +18 -4
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/types.d.ts +12 -15
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,9 +27,12 @@ console.log(comparisons); // ComparisonImage[]
|
|
|
27
27
|
const showcases = await client.getShowcases();
|
|
28
28
|
console.log(showcases); // ShowcaseImage[]
|
|
29
29
|
|
|
30
|
-
// Google Business Profile
|
|
30
|
+
// Google Business Profile reviews
|
|
31
31
|
const reviews = await client.getGoogleReviews();
|
|
32
|
-
|
|
32
|
+
|
|
33
|
+
// Check which modules are enabled for this business
|
|
34
|
+
const modules = await client.getModules();
|
|
35
|
+
console.log(modules); // e.g. ["comparison_gallery", "google_review_display", ...]
|
|
33
36
|
|
|
34
37
|
// Latest social posts
|
|
35
38
|
const instagram = await client.getInstagramPosts();
|
|
@@ -65,10 +68,10 @@ new PageSolverClient(businessKey: string)
|
|
|
65
68
|
| `getComparisons()` | Fetch before/after comparison images | `ComparisonImage[]` |
|
|
66
69
|
| `getShowcases()` | Fetch showcase gallery images | `ShowcaseImage[]` |
|
|
67
70
|
| `getGoogleReviews()` | Fetch Google Business Profile reviews + metadata | `GoogleReviewsResponse` |
|
|
68
|
-
| `
|
|
71
|
+
| `getModules()` | Get list of activated modules for the business | `Module[]` |
|
|
69
72
|
| `getInstagramPosts()` | Fetch recent Instagram posts (requires connected account) | `SocialMediaResponse` |
|
|
70
73
|
| `getFacebookPosts()` | Fetch recent Facebook posts (requires connected account) | `SocialMediaResponse` |
|
|
71
|
-
| `contact(data)` | Submit a contact form payload (flat JSON object) | `ContactResponse`
|
|
74
|
+
| `contact(data)` | Submit a contact form payload (flat JSON object) | `ContactResponse` |
|
|
72
75
|
|
|
73
76
|
All methods throw an `Error` when the API responds with a non-2xx status, so wrap calls in `try/catch` if you want to handle failures gracefully.
|
|
74
77
|
|
|
@@ -137,6 +140,17 @@ interface SocialMediaResponse {
|
|
|
137
140
|
posts: FacebookPost[] | InstagramPost[];
|
|
138
141
|
platform: "facebook" | "instagram";
|
|
139
142
|
}
|
|
143
|
+
|
|
144
|
+
// Module types - used for feature detection
|
|
145
|
+
type Module =
|
|
146
|
+
| "comparison_gallery"
|
|
147
|
+
| "showcase_gallery"
|
|
148
|
+
| "smart_contact"
|
|
149
|
+
| "google_review_display"
|
|
150
|
+
| "google_review_requests"
|
|
151
|
+
| "facebook_feed_sync"
|
|
152
|
+
| "instagram_feed_sync"
|
|
153
|
+
| "xero_payment_notifications";
|
|
140
154
|
```
|
|
141
155
|
|
|
142
156
|
## License
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ComparisonImage, ContactData, ContactResponse,
|
|
1
|
+
import type { ComparisonImage, ContactData, ContactResponse, GoogleReviewsResponse, Module, ShowcaseImage, SocialMediaResponse } from "./types";
|
|
2
2
|
export declare class PageSolverClient {
|
|
3
3
|
private baseUrl;
|
|
4
4
|
private businessKey;
|
|
@@ -7,10 +7,10 @@ export declare class PageSolverClient {
|
|
|
7
7
|
getComparisons(): Promise<ComparisonImage[]>;
|
|
8
8
|
getShowcases(): Promise<ShowcaseImage[]>;
|
|
9
9
|
getGoogleReviews(): Promise<GoogleReviewsResponse>;
|
|
10
|
-
|
|
10
|
+
getModules(): Promise<Module[]>;
|
|
11
11
|
getInstagramPosts(): Promise<SocialMediaResponse>;
|
|
12
12
|
getFacebookPosts(): Promise<SocialMediaResponse>;
|
|
13
13
|
contact(data: ContactData): Promise<ContactResponse>;
|
|
14
14
|
}
|
|
15
|
-
export type { ComparisonImage, ComparisonsResponse, ShowcaseImage, ShowcasesResponse, ContactData, ContactResponse, GoogleReview, GoogleReviewsResponse,
|
|
15
|
+
export type { ComparisonImage, ComparisonsResponse, ShowcaseImage, ShowcasesResponse, ContactData, ContactResponse, GoogleReview, GoogleReviewsResponse, FacebookPost, InstagramPost, SocialMediaResponse, BusinessInfo, Module, ModulesResponse, } from "./types";
|
|
16
16
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,eAAe,EAEf,WAAW,EACX,eAAe,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,eAAe,EAEf,WAAW,EACX,eAAe,EAGf,qBAAqB,EAErB,MAAM,EAEN,aAAa,EAEb,mBAAmB,EACpB,MAAM,SAAS,CAAC;AAEjB,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,OAAO,CAAmC;IAClD,OAAO,CAAC,WAAW,CAAS;gBAEhB,WAAW,EAAE,MAAM;YAIjB,OAAO;IA0Cf,cAAc,IAAI,OAAO,CAAC,eAAe,EAAE,CAAC;IAQ5C,YAAY,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;IAQxC,gBAAgB,IAAI,OAAO,CAAC,qBAAqB,CAAC;IAOlD,UAAU,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAM/B,iBAAiB,IAAI,OAAO,CAAC,mBAAmB,CAAC;IAOjD,gBAAgB,IAAI,OAAO,CAAC,mBAAmB,CAAC;IAKhD,OAAO,CAAC,IAAI,EAAE,WAAW,GAAG,OAAO,CAAC,eAAe,CAAC;CAM3D;AAGD,YAAY,EACV,eAAe,EACf,mBAAmB,EACnB,aAAa,EACb,iBAAiB,EACjB,WAAW,EACX,eAAe,EACf,YAAY,EACZ,qBAAqB,EACrB,YAAY,EACZ,aAAa,EACb,mBAAmB,EACnB,YAAY,EACZ,MAAM,EACN,eAAe,GAChB,MAAM,SAAS,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
class B{baseUrl="https://pagesolver.com/api/v1";businessKey;constructor(j){this.businessKey=j}async request(j,w={}){try{let q=`${this.baseUrl}${j}`,z={"Content-Type":"application/json","x-business-key":this.businessKey,...w.headers},k=await fetch(q,{...w,headers:z}),v;if(k.headers.get("Content-Type")?.includes("application/json"))v=await k.json();else v=await k.text();if(!k.ok){let A=v?.error||"An unknown error occurred";throw Error(`API Error (${k.status}): ${A}`)}return v}catch(q){if(q instanceof Error)throw q;throw Error("Network error occurred")}}async getComparisons(){return(await this.request("/business/comparisons")).comparisons}async getShowcases(){return(await this.request("/business/showcases")).showcases}async getGoogleReviews(){return await this.request("/business/google/reviews")}async
|
|
1
|
+
class B{baseUrl="https://pagesolver.com/api/v1";businessKey;constructor(j){this.businessKey=j}async request(j,w={}){try{let q=`${this.baseUrl}${j}`,z={"Content-Type":"application/json","x-business-key":this.businessKey,...w.headers},k=await fetch(q,{...w,headers:z}),v;if(k.headers.get("Content-Type")?.includes("application/json"))v=await k.json();else v=await k.text();if(!k.ok){let A=v?.error||"An unknown error occurred";throw Error(`API Error (${k.status}): ${A}`)}return v}catch(q){if(q instanceof Error)throw q;throw Error("Network error occurred")}}async getComparisons(){return(await this.request("/business/comparisons")).comparisons}async getShowcases(){return(await this.request("/business/showcases")).showcases}async getGoogleReviews(){return await this.request("/business/google/reviews")}async getModules(){return(await this.request("/business/modules")).modules}async getInstagramPosts(){return await this.request("/business/social/instagram")}async getFacebookPosts(){return await this.request("/business/social/facebook")}async contact(j){return await this.request("/business/contact",{method:"POST",body:JSON.stringify(j)})}}export{B as PageSolverClient};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=FD76B09BB023C76364756E2164756E21
|
package/dist/index.js.map
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
4
|
"sourcesContent": [
|
|
5
|
-
"// Import all types from the types file\nimport type {\n ComparisonImage,\n ComparisonsResponse,\n ContactData,\n ContactResponse,\n FacebookPost,\n
|
|
5
|
+
"// Import all types from the types file\nimport type {\n ComparisonImage,\n ComparisonsResponse,\n ContactData,\n ContactResponse,\n FacebookPost,\n GoogleReview,\n GoogleReviewsResponse,\n InstagramPost,\n Module,\n ModulesResponse,\n ShowcaseImage,\n ShowcasesResponse,\n SocialMediaResponse,\n} from \"./types\";\n\nexport class PageSolverClient {\n private baseUrl = \"https://pagesolver.com/api/v1\";\n private businessKey: string;\n\n constructor(businessKey: string) {\n this.businessKey = businessKey;\n }\n\n private async request<T>(\n endpoint: string,\n options: RequestInit = {}\n ): Promise<T> {\n try {\n const url = `${this.baseUrl}${endpoint}`;\n\n const headers = {\n \"Content-Type\": \"application/json\",\n \"x-business-key\": this.businessKey,\n ...options.headers,\n };\n\n const response = await fetch(url, {\n ...options,\n headers,\n });\n\n let data: unknown;\n const contentType = response.headers.get(\"Content-Type\");\n if (contentType?.includes(\"application/json\")) {\n data = await response.json();\n } else {\n data = await response.text();\n }\n\n if (!response.ok) {\n const errorMessage =\n (data as { error?: string })?.error || \"An unknown error occurred\";\n throw new Error(`API Error (${response.status}): ${errorMessage}`);\n }\n\n return data as T;\n } catch (error) {\n if (error instanceof Error) {\n throw error;\n }\n throw new Error(\"Network error occurred\");\n }\n }\n\n // Comparison Images\n async getComparisons(): Promise<ComparisonImage[]> {\n const response = await this.request<ComparisonsResponse>(\n \"/business/comparisons\"\n );\n return response.comparisons;\n }\n\n // Showcase Images\n async getShowcases(): Promise<ShowcaseImage[]> {\n const response = await this.request<ShowcasesResponse>(\n \"/business/showcases\"\n );\n return response.showcases;\n }\n\n // Google Reviews\n async getGoogleReviews(): Promise<GoogleReviewsResponse> {\n return await this.request<GoogleReviewsResponse>(\n \"/business/google/reviews\"\n );\n }\n\n // Modules - Get all activated modules for the business\n async getModules(): Promise<Module[]> {\n const response = await this.request<ModulesResponse>(\"/business/modules\");\n return response.modules;\n }\n\n // Social Media - Instagram\n async getInstagramPosts(): Promise<SocialMediaResponse> {\n return await this.request<SocialMediaResponse>(\n \"/business/social/instagram\"\n );\n }\n\n // Social Media - Facebook\n async getFacebookPosts(): Promise<SocialMediaResponse> {\n return await this.request<SocialMediaResponse>(\"/business/social/facebook\");\n }\n\n // Contact\n async contact(data: ContactData): Promise<ContactResponse> {\n return await this.request<ContactResponse>(\"/business/contact\", {\n method: \"POST\",\n body: JSON.stringify(data),\n });\n }\n}\n\n// Re-export all types for consumers\nexport type {\n ComparisonImage,\n ComparisonsResponse,\n ShowcaseImage,\n ShowcasesResponse,\n ContactData,\n ContactResponse,\n GoogleReview,\n GoogleReviewsResponse,\n FacebookPost,\n InstagramPost,\n SocialMediaResponse,\n BusinessInfo,\n Module,\n ModulesResponse,\n} from \"./types\";\n"
|
|
6
6
|
],
|
|
7
|
-
"mappings": "
|
|
8
|
-
"debugId": "
|
|
7
|
+
"mappings": "AAiBO,MAAM,CAAiB,CACpB,QAAU,gCACV,YAER,WAAW,CAAC,EAAqB,CAC/B,KAAK,YAAc,OAGP,QAAU,CACtB,EACA,EAAuB,CAAC,EACZ,CACZ,GAAI,CACF,IAAM,EAAM,GAAG,KAAK,UAAU,IAExB,EAAU,CACd,eAAgB,mBAChB,iBAAkB,KAAK,eACpB,EAAQ,OACb,EAEM,EAAW,MAAM,MAAM,EAAK,IAC7B,EACH,SACF,CAAC,EAEG,EAEJ,GADoB,EAAS,QAAQ,IAAI,cAAc,GACtC,SAAS,kBAAkB,EAC1C,EAAO,MAAM,EAAS,KAAK,EAE3B,OAAO,MAAM,EAAS,KAAK,EAG7B,GAAI,CAAC,EAAS,GAAI,CAChB,IAAM,EACH,GAA6B,OAAS,4BACzC,MAAU,MAAM,cAAc,EAAS,YAAY,GAAc,EAGnE,OAAO,EACP,MAAO,EAAO,CACd,GAAI,aAAiB,MACnB,MAAM,EAER,MAAU,MAAM,wBAAwB,QAKtC,eAAc,EAA+B,CAIjD,OAHiB,MAAM,KAAK,QAC1B,uBACF,GACgB,iBAIZ,aAAY,EAA6B,CAI7C,OAHiB,MAAM,KAAK,QAC1B,qBACF,GACgB,eAIZ,iBAAgB,EAAmC,CACvD,OAAO,MAAM,KAAK,QAChB,0BACF,OAII,WAAU,EAAsB,CAEpC,OADiB,MAAM,KAAK,QAAyB,mBAAmB,GACxD,aAIZ,kBAAiB,EAAiC,CACtD,OAAO,MAAM,KAAK,QAChB,4BACF,OAII,iBAAgB,EAAiC,CACrD,OAAO,MAAM,KAAK,QAA6B,2BAA2B,OAItE,QAAO,CAAC,EAA6C,CACzD,OAAO,MAAM,KAAK,QAAyB,oBAAqB,CAC9D,OAAQ,OACR,KAAM,KAAK,UAAU,CAAI,CAC3B,CAAC,EAEL",
|
|
8
|
+
"debugId": "FD76B09BB023C76364756E2164756E21",
|
|
9
9
|
"names": []
|
|
10
10
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -5,6 +5,14 @@ export interface BusinessInfo {
|
|
|
5
5
|
phone?: string;
|
|
6
6
|
website?: string;
|
|
7
7
|
}
|
|
8
|
+
export type Module = "comparison_gallery" | "showcase_gallery" | "smart_contact" | "google_review_display" | "google_review_requests" | "facebook_feed_sync" | "instagram_feed_sync" | "xero_payment_notifications";
|
|
9
|
+
export interface ModulesResponse {
|
|
10
|
+
modules: Module[];
|
|
11
|
+
}
|
|
12
|
+
export interface Collection {
|
|
13
|
+
id: string;
|
|
14
|
+
name: string;
|
|
15
|
+
}
|
|
8
16
|
export interface ComparisonImage {
|
|
9
17
|
id: string;
|
|
10
18
|
business_id: number;
|
|
@@ -14,9 +22,11 @@ export interface ComparisonImage {
|
|
|
14
22
|
description: string | null;
|
|
15
23
|
updated_at: string;
|
|
16
24
|
created_at: string;
|
|
25
|
+
collection: Collection | null;
|
|
17
26
|
}
|
|
18
27
|
export interface ComparisonsResponse {
|
|
19
28
|
comparisons: ComparisonImage[];
|
|
29
|
+
collections: Collection[];
|
|
20
30
|
}
|
|
21
31
|
export interface ShowcaseImage {
|
|
22
32
|
id: string;
|
|
@@ -26,9 +36,11 @@ export interface ShowcaseImage {
|
|
|
26
36
|
description: string | null;
|
|
27
37
|
updated_at: string;
|
|
28
38
|
created_at: string;
|
|
39
|
+
collection: Collection | null;
|
|
29
40
|
}
|
|
30
41
|
export interface ShowcasesResponse {
|
|
31
42
|
showcases: ShowcaseImage[];
|
|
43
|
+
collections: Collection[];
|
|
32
44
|
}
|
|
33
45
|
export type ContactData = Record<string, unknown>;
|
|
34
46
|
export interface ContactResponse {
|
|
@@ -48,21 +60,6 @@ export interface GoogleReviewsResponse {
|
|
|
48
60
|
totalReviews: number;
|
|
49
61
|
reviews: GoogleReview[];
|
|
50
62
|
}
|
|
51
|
-
export interface BusinessHours {
|
|
52
|
-
day: string;
|
|
53
|
-
hours: string;
|
|
54
|
-
}
|
|
55
|
-
export interface CurrentTime {
|
|
56
|
-
day: string;
|
|
57
|
-
time: string;
|
|
58
|
-
}
|
|
59
|
-
export interface GoogleHoursResponse {
|
|
60
|
-
business: BusinessInfo;
|
|
61
|
-
status: string;
|
|
62
|
-
isOpenNow: boolean;
|
|
63
|
-
hours: BusinessHours[];
|
|
64
|
-
currentTime: CurrentTime;
|
|
65
|
-
}
|
|
66
63
|
export interface FacebookPost {
|
|
67
64
|
id: string;
|
|
68
65
|
message?: string;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAGD,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|