@gymspace/sdk 1.7.2 → 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/dist/index.d.mts
CHANGED
|
@@ -1671,6 +1671,7 @@ interface CatalogResponse {
|
|
|
1671
1671
|
schedule: FormattedSchedule[];
|
|
1672
1672
|
socialMedia: CatalogSocialMedia;
|
|
1673
1673
|
location: CatalogLocation;
|
|
1674
|
+
config: Record<string, any>;
|
|
1674
1675
|
}
|
|
1675
1676
|
/**
|
|
1676
1677
|
* City with gym count
|
|
@@ -1785,6 +1786,7 @@ interface GymCatalog {
|
|
|
1785
1786
|
bannerFileId: string | null;
|
|
1786
1787
|
heroMessage: string | null;
|
|
1787
1788
|
ctaButtonText: string;
|
|
1789
|
+
config: Record<string, any> | null;
|
|
1788
1790
|
createdAt: string;
|
|
1789
1791
|
updatedAt: string;
|
|
1790
1792
|
}
|
|
@@ -1797,6 +1799,7 @@ interface UpdateCatalogConfigDto {
|
|
|
1797
1799
|
ctaButtonText?: string;
|
|
1798
1800
|
logoFileId?: string;
|
|
1799
1801
|
bannerFileId?: string;
|
|
1802
|
+
config?: Record<string, any>;
|
|
1800
1803
|
}
|
|
1801
1804
|
|
|
1802
1805
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1671,6 +1671,7 @@ interface CatalogResponse {
|
|
|
1671
1671
|
schedule: FormattedSchedule[];
|
|
1672
1672
|
socialMedia: CatalogSocialMedia;
|
|
1673
1673
|
location: CatalogLocation;
|
|
1674
|
+
config: Record<string, any>;
|
|
1674
1675
|
}
|
|
1675
1676
|
/**
|
|
1676
1677
|
* City with gym count
|
|
@@ -1785,6 +1786,7 @@ interface GymCatalog {
|
|
|
1785
1786
|
bannerFileId: string | null;
|
|
1786
1787
|
heroMessage: string | null;
|
|
1787
1788
|
ctaButtonText: string;
|
|
1789
|
+
config: Record<string, any> | null;
|
|
1788
1790
|
createdAt: string;
|
|
1789
1791
|
updatedAt: string;
|
|
1790
1792
|
}
|
|
@@ -1797,6 +1799,7 @@ interface UpdateCatalogConfigDto {
|
|
|
1797
1799
|
ctaButtonText?: string;
|
|
1798
1800
|
logoFileId?: string;
|
|
1799
1801
|
bannerFileId?: string;
|
|
1802
|
+
config?: Record<string, any>;
|
|
1800
1803
|
}
|
|
1801
1804
|
|
|
1802
1805
|
/**
|