@autolink/sdk 0.2.2 → 0.2.4

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/dist/index.d.cts CHANGED
@@ -151,15 +151,18 @@ interface AutolinkProfile {
151
151
  name: string;
152
152
  slug: string;
153
153
  tagline?: string;
154
- description?: string;
154
+ /** Business description / about text */
155
+ about?: string;
155
156
  phone?: string;
157
+ whatsapp_number?: string;
156
158
  email?: string;
157
159
  address?: string;
158
160
  city?: string;
159
161
  country?: string;
160
- logo_url?: string;
161
- cover_url?: string;
162
- is_publicly_visible: boolean;
162
+ logo?: string;
163
+ banner?: string;
164
+ google_maps_url?: string;
165
+ is_publicly_visible?: boolean;
163
166
  }
164
167
  interface ArticleListFilters {
165
168
  page?: number;
package/dist/index.d.ts CHANGED
@@ -151,15 +151,18 @@ interface AutolinkProfile {
151
151
  name: string;
152
152
  slug: string;
153
153
  tagline?: string;
154
- description?: string;
154
+ /** Business description / about text */
155
+ about?: string;
155
156
  phone?: string;
157
+ whatsapp_number?: string;
156
158
  email?: string;
157
159
  address?: string;
158
160
  city?: string;
159
161
  country?: string;
160
- logo_url?: string;
161
- cover_url?: string;
162
- is_publicly_visible: boolean;
162
+ logo?: string;
163
+ banner?: string;
164
+ google_maps_url?: string;
165
+ is_publicly_visible?: boolean;
163
166
  }
164
167
  interface ArticleListFilters {
165
168
  page?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autolink/sdk",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Official Autolink SDK for Node.js — server-side inventory, inquiries, and dealer data",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",