-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
get rid of milestones, refactor for facts
- Loading branch information
Showing
20 changed files
with
59 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ import { type IContentItem, type Elements } from '@kontent-ai/delivery-sdk'; | |
import { type Block_EmojiGuideline } from '../content-type-snippets/Block_EmojiGuideline'; | ||
import { type Block_HeroUnit } from './Block_HeroUnit'; | ||
import { type Fact } from './fact'; | ||
import { type Milestone } from './milestone'; | ||
|
||
/** | ||
* Generated by '@kontent-ai/[email protected]' | ||
|
@@ -18,7 +17,7 @@ export type Block_VisualContainer = IContentItem<{ | |
* Id: 081f63c6-9589-5f8d-a9de-bc3b1ceb24e7 | ||
* Codename: items | ||
*/ | ||
items: Elements.LinkedItemsElement<Fact | Milestone | Block_HeroUnit>; | ||
items: Elements.LinkedItemsElement<Fact | Block_HeroUnit>; | ||
|
||
/** | ||
* Subtitle (text) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ import { type WSL_WebSpotlightRoot } from './WSL_WebSpotlightRoot'; | |
* Generated by '@kontent-ai/[email protected]' | ||
* | ||
* 💡 Page | ||
* Id: 2d783b04-c9ac-42f5-bd34-959340e8e2ac | ||
* Id: 0cb81f69-3f4b-46a1-8ce2-0aada4cdc358 | ||
* Codename: page | ||
*/ | ||
export type WSL_Page = IContentItem<{ | ||
/** | ||
* Content (modular_content) | ||
* Required: false | ||
* Id: dc3e831e-0157-41c8-b4a4-ff95b576a71e | ||
* Id: 27bc37be-796c-4219-a85d-cd61fc2e4f43 | ||
* Codename: content | ||
*/ | ||
content: Elements.LinkedItemsElement< | ||
|
@@ -28,23 +28,23 @@ export type WSL_Page = IContentItem<{ | |
/** | ||
* Subpages (subpages) | ||
* Required: false | ||
* Id: ce96b539-ab2f-4ddf-8e94-e79acf2aec1a | ||
* Id: 7e159b22-7b95-4a9b-9e2a-a79d407edd76 | ||
* Codename: subpages | ||
*/ | ||
subpages: Elements.LinkedItemsElement<WSL_Page | WSL_WebSpotlightRoot>; | ||
|
||
/** | ||
* Title (text) | ||
* Required: false | ||
* Id: aa8bd39c-ad1d-4557-ada1-7422f07a4f47 | ||
* Id: c2808c7e-9f57-4d0b-815c-f535752ed1cd | ||
* Codename: title | ||
*/ | ||
title: Elements.TextElement; | ||
|
||
/** | ||
* URL (url_slug) | ||
* Required: false | ||
* Id: 4e9acc07-f7e9-49ae-a992-88e791b07204 | ||
* Id: 434f911b-c645-46e1-a633-0c8a3b1e9207 | ||
* Codename: url | ||
*/ | ||
url: Elements.UrlSlugElement; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,14 +12,14 @@ import { type WSL_Page } from './WSL_Page'; | |
* Generated by '@kontent-ai/[email protected]' | ||
* | ||
* 💡 Web spotlight root | ||
* Id: 746e489b-4dbe-403a-a9db-0876fddfb68b | ||
* Id: eba96027-914d-48f7-a7f8-38502fa7e869 | ||
* Codename: web_spotlight_root | ||
*/ | ||
export type WSL_WebSpotlightRoot = IContentItem<{ | ||
/** | ||
* Content (modular_content) | ||
* Required: false | ||
* Id: 376309cf-f65e-43ab-a104-118f5c143413 | ||
* Id: 0273c87b-86ae-4c9b-8e49-d064f25d1417 | ||
* Codename: content | ||
*/ | ||
content: Elements.LinkedItemsElement< | ||
|
@@ -37,15 +37,15 @@ export type WSL_WebSpotlightRoot = IContentItem<{ | |
/** | ||
* Subpages (subpages) | ||
* Required: false | ||
* Id: a96ae5ad-8971-47ca-9a06-330193ebb7ef | ||
* Id: 9e2d4dd9-7d9f-4365-99e0-6b1528f25215 | ||
* Codename: subpages | ||
*/ | ||
subpages: Elements.LinkedItemsElement<WSL_Page | WSL_WebSpotlightRoot>; | ||
|
||
/** | ||
* Title (text) | ||
* Required: false | ||
* Id: 60ff91ab-cd43-4003-a9ba-d50639b57d18 | ||
* Id: fba9369c-61f3-4a91-a809-70129484c3ca | ||
* Codename: title | ||
*/ | ||
title: Elements.TextElement; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/** | ||
* Generated by '@kontent-ai/[email protected]' | ||
* | ||
* Project name: New sample migrations (TMP) (Kontent) | ||
* Environment: App test | ||
* Project Id: 89962bec-344a-01fd-58aa-40c92b21f579 | ||
* Project name: Migration test | ||
* Environment: Production | ||
* Project Id: b5905129-8bdb-0115-aca0-d1700790cd2a | ||
*/ | ||
export const assetFolders = { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/** | ||
* Generated by '@kontent-ai/[email protected]' | ||
* | ||
* Project name: New sample migrations (TMP) (Kontent) | ||
* Environment: App test | ||
* Project Id: 89962bec-344a-01fd-58aa-40c92b21f579 | ||
* Project name: Migration test | ||
* Environment: Production | ||
* Project Id: b5905129-8bdb-0115-aca0-d1700790cd2a | ||
*/ | ||
export const collections = { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/** | ||
* Generated by '@kontent-ai/[email protected]' | ||
* | ||
* Project name: New sample migrations (TMP) (Kontent) | ||
* Environment: App test | ||
* Project Id: 89962bec-344a-01fd-58aa-40c92b21f579 | ||
* Project name: Migration test | ||
* Environment: Production | ||
* Project Id: b5905129-8bdb-0115-aca0-d1700790cd2a | ||
*/ | ||
export const contentTypeSnippets = { | ||
/** | ||
|
Oops, something went wrong.