math-main-components 0.0.117 → 0.0.119

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.ts CHANGED
@@ -40,8 +40,6 @@ export * from './types/marketing/Pricing';
40
40
  export * from './types/marketing/WebsiteData';
41
41
  export * from './types/Calculator';
42
42
  export * from './types/Category';
43
- export * from './types/Concept';
44
- export * from './types/Content';
45
43
  export * from './types/Course';
46
44
  export * from './types/CourseAnnouncement';
47
45
  export * from './types/CourseAnnouncementAsset';
@@ -58,11 +56,13 @@ export * from './types/Material';
58
56
  export * from './types/Movie';
59
57
  export * from './types/Organization';
60
58
  export * from './types/OrganizationMember';
61
- export * from './types/Page';
62
59
  export * from './types/Product';
63
60
  export * from './types/ProductLimit';
64
61
  export * from './types/Subscription';
65
62
  export * from './types/UploadSignature';
66
63
  export * from './types/Usage';
67
64
  export * from './types/User';
65
+ export * from './types/marketing/Concept';
66
+ export * from './types/marketing/Content';
68
67
  export * from './types/marketing/Faq';
68
+ export * from './types/marketing/Page';
@@ -0,0 +1,7 @@
1
+ export interface Concept {
2
+ _id: string;
3
+ title: string;
4
+ subtitle: string;
5
+ description: string;
6
+ iconName: string;
7
+ }
@@ -0,0 +1,22 @@
1
+ import { PortableTextBlock } from "sanity";
2
+ export interface Content {
3
+ _id: string;
4
+ priority: number;
5
+ title: string;
6
+ subtitle: string;
7
+ iconName: string;
8
+ description: PortableTextBlock[];
9
+ isComingSoon: boolean;
10
+ contentBuckets: Array<ContentBucket>;
11
+ }
12
+ export interface ContentBucket {
13
+ title: string;
14
+ description: string;
15
+ bucket: string;
16
+ image?: {
17
+ asset: {
18
+ _ref: string;
19
+ _type: string;
20
+ };
21
+ };
22
+ }
@@ -0,0 +1,8 @@
1
+ import { PortableTextBlock } from "sanity";
2
+ export interface Page {
3
+ title: string;
4
+ slug: {
5
+ current: string;
6
+ };
7
+ content: PortableTextBlock[];
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "math-main-components",
3
- "version": "0.0.117",
3
+ "version": "0.0.119",
4
4
  "author": "Emilian Scheel",
5
5
  "files": [
6
6
  "dist/**/*"