@mitumba/sdk 0.24.0 → 0.25.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/dist/index.d.mts CHANGED
@@ -330,14 +330,21 @@ type SubscriptionTier = 'free' | 'pro' | 'premium';
330
330
  interface Store {
331
331
  id: string;
332
332
  owner_id: string;
333
+ seller_id: string;
333
334
  name: string;
334
335
  slug: string;
336
+ tagline: string | null;
335
337
  description: string | null;
338
+ category: string | null;
336
339
  logo_url: string | null;
337
340
  banner_url: string | null;
338
341
  city: string | null;
342
+ city_id: string | null;
339
343
  subscription_tier: SubscriptionTier;
344
+ is_verified: number;
340
345
  created_at: string;
346
+ updated_at: string;
347
+ sti_score?: number;
341
348
  follower_count?: number;
342
349
  is_following?: boolean;
343
350
  }
package/dist/index.d.ts CHANGED
@@ -330,14 +330,21 @@ type SubscriptionTier = 'free' | 'pro' | 'premium';
330
330
  interface Store {
331
331
  id: string;
332
332
  owner_id: string;
333
+ seller_id: string;
333
334
  name: string;
334
335
  slug: string;
336
+ tagline: string | null;
335
337
  description: string | null;
338
+ category: string | null;
336
339
  logo_url: string | null;
337
340
  banner_url: string | null;
338
341
  city: string | null;
342
+ city_id: string | null;
339
343
  subscription_tier: SubscriptionTier;
344
+ is_verified: number;
340
345
  created_at: string;
346
+ updated_at: string;
347
+ sti_score?: number;
341
348
  follower_count?: number;
342
349
  is_following?: boolean;
343
350
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mitumba/sdk",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "The official TypeScript SDK for the Mitumba marketplace platform.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",