@putiikkipalvelu/storefront-sdk 0.4.2 → 0.4.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
@@ -57,16 +57,32 @@ interface StoreSeo {
57
57
  domain: string | null;
58
58
  /** Open Graph image URL */
59
59
  openGraphImageUrl: string | null;
60
+ /** Alt text for Open Graph image */
61
+ ogImageAlt: string | null;
60
62
  /** Twitter card image URL */
61
63
  twitterImageUrl: string | null;
64
+ /** Twitter handle (e.g., @storename) */
65
+ twitterHandle: string | null;
62
66
  /** Instagram profile URL */
63
67
  instagramUrl: string | null;
64
68
  /** Facebook page URL */
65
69
  facebookUrl: string | null;
70
+ /** TikTok profile URL */
71
+ tiktokUrl: string | null;
72
+ /** YouTube channel URL */
73
+ youtubeUrl: string | null;
74
+ /** Pinterest profile URL */
75
+ pinterestUrl: string | null;
76
+ /** LinkedIn page URL */
77
+ linkedinUrl: string | null;
66
78
  /** Price range indicator (e.g., "€€") */
67
79
  priceRange: string | null;
68
80
  /** Business type description */
69
81
  businessType: string | null;
82
+ /** Business founding date (ISO 8601) */
83
+ foundingDate: string | null;
84
+ /** Google Search Console verification code */
85
+ googleVerificationCode: string | null;
70
86
  }
71
87
  /**
72
88
  * Payment configuration
@@ -376,6 +392,10 @@ interface Category {
376
392
  name: string;
377
393
  /** URL-friendly slug */
378
394
  slug: string;
395
+ /** SEO meta title for search engines (max 60 chars) */
396
+ metaTitle: string | null;
397
+ /** SEO meta description for search engines (max 160 chars) */
398
+ metaDescription: string | null;
379
399
  /** Store ID this category belongs to */
380
400
  storeId: string;
381
401
  /** Parent category ID (null if root category) */
package/dist/index.d.ts CHANGED
@@ -57,16 +57,32 @@ interface StoreSeo {
57
57
  domain: string | null;
58
58
  /** Open Graph image URL */
59
59
  openGraphImageUrl: string | null;
60
+ /** Alt text for Open Graph image */
61
+ ogImageAlt: string | null;
60
62
  /** Twitter card image URL */
61
63
  twitterImageUrl: string | null;
64
+ /** Twitter handle (e.g., @storename) */
65
+ twitterHandle: string | null;
62
66
  /** Instagram profile URL */
63
67
  instagramUrl: string | null;
64
68
  /** Facebook page URL */
65
69
  facebookUrl: string | null;
70
+ /** TikTok profile URL */
71
+ tiktokUrl: string | null;
72
+ /** YouTube channel URL */
73
+ youtubeUrl: string | null;
74
+ /** Pinterest profile URL */
75
+ pinterestUrl: string | null;
76
+ /** LinkedIn page URL */
77
+ linkedinUrl: string | null;
66
78
  /** Price range indicator (e.g., "€€") */
67
79
  priceRange: string | null;
68
80
  /** Business type description */
69
81
  businessType: string | null;
82
+ /** Business founding date (ISO 8601) */
83
+ foundingDate: string | null;
84
+ /** Google Search Console verification code */
85
+ googleVerificationCode: string | null;
70
86
  }
71
87
  /**
72
88
  * Payment configuration
@@ -376,6 +392,10 @@ interface Category {
376
392
  name: string;
377
393
  /** URL-friendly slug */
378
394
  slug: string;
395
+ /** SEO meta title for search engines (max 60 chars) */
396
+ metaTitle: string | null;
397
+ /** SEO meta description for search engines (max 160 chars) */
398
+ metaDescription: string | null;
379
399
  /** Store ID this category belongs to */
380
400
  storeId: string;
381
401
  /** Parent category ID (null if root category) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putiikkipalvelu/storefront-sdk",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "description": "TypeScript SDK for Putiikkipalvelu Storefront API",
5
5
  "author": "Putiikkipalvelu",
6
6
  "license": "MIT",