@mitumba/sdk 0.28.0 → 0.29.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
@@ -56,6 +56,7 @@ interface Verify2FAInput {
56
56
  interface BecomeSellerInput {
57
57
  seller_type: 'individual' | 'business';
58
58
  sti_score: number;
59
+ business_name?: string;
59
60
  id_number?: string;
60
61
  kra_pin?: string;
61
62
  phone?: string;
@@ -372,6 +373,7 @@ interface CreateStoreInput {
372
373
  city_id?: string;
373
374
  logo_url?: string;
374
375
  banner_url?: string;
376
+ business_id?: string;
375
377
  }
376
378
  interface UpdateStoreInput {
377
379
  name?: string;
package/dist/index.d.ts CHANGED
@@ -56,6 +56,7 @@ interface Verify2FAInput {
56
56
  interface BecomeSellerInput {
57
57
  seller_type: 'individual' | 'business';
58
58
  sti_score: number;
59
+ business_name?: string;
59
60
  id_number?: string;
60
61
  kra_pin?: string;
61
62
  phone?: string;
@@ -372,6 +373,7 @@ interface CreateStoreInput {
372
373
  city_id?: string;
373
374
  logo_url?: string;
374
375
  banner_url?: string;
376
+ business_id?: string;
375
377
  }
376
378
  interface UpdateStoreInput {
377
379
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mitumba/sdk",
3
- "version": "0.28.0",
3
+ "version": "0.29.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",