@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/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/models/catalog.ts +3 -0
package/package.json
CHANGED
package/src/models/catalog.ts
CHANGED
|
@@ -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
|
}
|