@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 +7 -4
- package/dist/index.d.ts +7 -4
- package/package.json +1 -1
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
|
|
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
|
-
|
|
161
|
-
|
|
162
|
-
|
|
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
|
|
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
|
-
|
|
161
|
-
|
|
162
|
-
|
|
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;
|