@gymspace/sdk 1.7.1 → 1.7.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gymspace/sdk",
3
- "version": "1.7.1",
3
+ "version": "1.7.3",
4
4
  "description": "GymSpace TypeScript SDK for API integration",
5
5
  "author": "GymSpace Team",
6
6
  "license": "MIT",
@@ -88,6 +88,7 @@ export interface CatalogResponse {
88
88
  schedule: FormattedSchedule[];
89
89
  socialMedia: CatalogSocialMedia;
90
90
  location: CatalogLocation;
91
+ config: Record<string, any>;
91
92
  }
92
93
 
93
94
  /**
@@ -220,6 +221,7 @@ export interface GymCatalog {
220
221
  bannerFileId: string | null;
221
222
  heroMessage: string | null;
222
223
  ctaButtonText: string;
224
+ config: Record<string, any> | null;
223
225
  createdAt: string;
224
226
  updatedAt: string;
225
227
  }
@@ -233,4 +235,5 @@ export interface UpdateCatalogConfigDto {
233
235
  ctaButtonText?: string;
234
236
  logoFileId?: string;
235
237
  bannerFileId?: string;
238
+ config?: Record<string, any>;
236
239
  }