Commit 1e1a8e11 by sujata

miner chnage

1 parent 88630000
Showing 55 changed files with 1384 additions and 48 deletions
{
"kind": "collectionType",
"kind": "singleType",
"collectionName": "alumni_sidebars",
"info": {
"singularName": "alumni-sidebar",
......@@ -14,7 +14,7 @@
"Title": {
"type": "string"
},
"Links": {
"Link": {
"type": "component",
"component": "sidebar.links",
"repeatable": true
......
{
"kind": "collectionType",
"collectionName": "blog_categories",
"info": {
"singularName": "blog-category",
"pluralName": "blog-categories",
"displayName": "Blog Category"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Name": {
"type": "string"
},
"slug": {
"type": "uid",
"targetField": "Name"
},
"blogs": {
"type": "relation",
"relation": "oneToMany",
"target": "api::blog.blog",
"mappedBy": "blog_category"
}
}
}
'use strict';
/**
* blog-category controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::blog-category.blog-category');
'use strict';
/**
* blog-category router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::blog-category.blog-category');
'use strict';
/**
* blog-category service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::blog-category.blog-category');
{
"kind": "singleType",
"collectionName": "blog_pages",
"info": {
"singularName": "blog-page",
"pluralName": "blog-pages",
"displayName": "BlogPage"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Banner": {
"type": "component",
"component": "inner-banner.inner-banner",
"repeatable": false
},
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
'use strict';
/**
* blog-page controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::blog-page.blog-page');
'use strict';
/**
* blog-page router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::blog-page.blog-page');
'use strict';
/**
* blog-page service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::blog-page.blog-page');
{
"kind": "singleType",
"kind": "collectionType",
"collectionName": "blogs",
"info": {
"singularName": "blog",
......@@ -11,15 +11,53 @@
},
"pluginOptions": {},
"attributes": {
"Banner": {
"type": "component",
"component": "inner-banner.inner-banner",
"repeatable": false
"blog_category": {
"type": "relation",
"relation": "manyToOne",
"target": "api::blog-category.blog-category",
"inversedBy": "blogs"
},
"Name": {
"type": "string"
},
"ThumbnailImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"MainImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"seo": {
"Date": {
"type": "date"
},
"Details": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
},
"slug": {
"type": "uid",
"targetField": "Name"
},
"ImageSlider": {
"type": "component",
"component": "shared.seo",
"component": "dynamic-zone.image-slider",
"repeatable": false
},
"smalldescription": {
"type": "text"
}
}
}
{
"kind": "collectionType",
"kind": "singleType",
"collectionName": "campus_life_sidebars",
"info": {
"singularName": "campus-life-sidebar",
......@@ -11,10 +11,10 @@
},
"pluginOptions": {},
"attributes": {
"Label": {
"Title": {
"type": "string"
},
"Links": {
"Link": {
"type": "component",
"component": "sidebar.links",
"repeatable": true
......
{
"kind": "singleType",
"collectionName": "contact_pages",
"info": {
"singularName": "contact-page",
"pluralName": "contact-pages",
"displayName": "ContactPage"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"Banner": {
"type": "component",
"component": "inner-banner.inner-banner",
"repeatable": false
},
"Address": {
"type": "component",
"component": "contact.address",
"repeatable": true
},
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
'use strict';
/**
* contact-page controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::contact-page.contact-page');
'use strict';
/**
* contact-page router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::contact-page.contact-page');
'use strict';
/**
* contact-page service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::contact-page.contact-page');
{
"kind": "collectionType",
"collectionName": "contacts",
"info": {
"singularName": "contact",
"pluralName": "contacts",
"displayName": "Contact"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"FormSource": {
"type": "string"
},
"Name": {
"type": "string"
},
"Email": {
"type": "string"
},
"PhoneNumber": {
"type": "string"
},
"State": {
"type": "string"
},
"City": {
"type": "string"
},
"EnquiryFor": {
"type": "string"
}
}
}
'use strict';
/**
* contact controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::contact.contact');
'use strict';
/**
* contact router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::contact.contact');
'use strict';
/**
* contact service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::contact.contact');
......@@ -12,9 +12,9 @@
"pluginOptions": {},
"attributes": {
"Name": {
"type": "text"
"type": "string"
},
"Slug": {
"slug": {
"type": "uid",
"targetField": "Name"
},
......
......@@ -16,10 +16,10 @@
"component": "inner-banner.inner-banner",
"repeatable": false
},
"events_sidebar": {
"type": "relation",
"relation": "oneToOne",
"target": "api::events-sidebar.events-sidebar"
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
......@@ -48,16 +48,19 @@
"type": "uid",
"targetField": "Name"
},
"ImageSlider": {
"type": "component",
"component": "dynamic-zone.image-slider",
"repeatable": false
},
"event_category": {
"type": "relation",
"relation": "manyToOne",
"target": "api::event-category.event-category",
"inversedBy": "events"
},
"ImageSlider": {
"type": "component",
"component": "dynamic-zone.image-slider",
"repeatable": false
"smalldescription": {
"type": "text"
}
}
}
{
"kind": "singleType",
"collectionName": "footer_sections",
"info": {
"singularName": "footer-section",
"pluralName": "footer-sections",
"displayName": "FooterSection"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"FooterLink": {
"type": "component",
"component": "footer.footer-link",
"repeatable": true
},
"overview": {
"type": "component",
"component": "footer-overview.overview",
"repeatable": false
}
}
}
'use strict';
/**
* footer-section controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::footer-section.footer-section');
'use strict';
/**
* footer-section router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::footer-section.footer-section');
'use strict';
/**
* footer-section service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::footer-section.footer-section');
{
"kind": "singleType",
"collectionName": "header_sections",
"info": {
"singularName": "header-section",
"pluralName": "header-sections",
"displayName": "HeaderSection"
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"navLink": {
"type": "component",
"component": "header.nav-link",
"repeatable": true
}
}
}
'use strict';
/**
* header-section controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::header-section.header-section');
'use strict';
/**
* header-section router
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::header-section.header-section');
'use strict';
/**
* header-section service
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::header-section.header-section');
......@@ -11,20 +11,55 @@
},
"pluginOptions": {},
"attributes": {
"Overview": {
"Banner": {
"type": "component",
"component": "home.overview",
"component": "home.banner",
"repeatable": false
},
"seo": {
"ApprovalsAccreditations": {
"type": "component",
"component": "shared.seo",
"component": "placement.clientel",
"repeatable": false
},
"Overview": {
"type": "component",
"component": "home.overview",
"repeatable": false
},
"LifeatIBA": {
"type": "component",
"component": "home.lifeat-iba",
"repeatable": false
},
"ScholasticAssociation": {
"type": "component",
"component": "placement.clientel",
"repeatable": false
},
"CEOOverview": {
"type": "component",
"component": "home.ceo-overview",
"repeatable": false
},
"FinalPlacements": {
"type": "component",
"component": "home.final-placements",
"repeatable": false
},
"Testimonials": {
"type": "component",
"component": "home.testimonials",
"repeatable": false
},
"events": {
"type": "relation",
"relation": "oneToMany",
"target": "api::event.event"
},
"seo": {
"type": "component",
"component": "shared.seo",
"repeatable": false
}
}
}
......@@ -14,10 +14,10 @@
"Title": {
"type": "string"
},
"LInk": {
"Link": {
"type": "component",
"component": "sidebar.links",
"repeatable": false
"repeatable": true
}
}
}
{
"collectionName": "components_contact_addresses",
"info": {
"displayName": "Address"
},
"options": {},
"attributes": {
"Heading": {
"type": "string"
},
"ContactDetails": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
}
{
"collectionName": "components_footer_overview_overviews",
"info": {
"displayName": "overview"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"logo": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"description": {
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
}
{
"collectionName": "components_footer_footer_links",
"info": {
"displayName": "FooterLink"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"Links": {
"type": "component",
"component": "footer.links",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_footer_links",
"info": {
"displayName": "Links"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_header_ccs",
"info": {
"displayName": "CC"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_header_nav_links",
"info": {
"displayName": "navLink"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"navSublink": {
"type": "component",
"component": "header.nav-sublink",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_header_nav_sublinks",
"info": {
"displayName": "navSublink"
},
"options": {},
"attributes": {
"title": {
"type": "string"
},
"link": {
"type": "string"
},
"navSubSublink": {
"type": "component",
"component": "header.cc",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_home_animated_texts",
"info": {
"displayName": "AnimatedText"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_banner_s",
"info": {
"displayName": "Banner "
},
"options": {},
"attributes": {
"Subheading": {
"type": "string"
},
"Heading": {
"type": "string"
},
"AnimatedText": {
"type": "component",
"component": "home.animated-text",
"repeatable": true
},
"BackImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"StudentImg": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"BoxImg": {
"type": "component",
"component": "home.box-img",
"repeatable": true
},
"SliderImg": {
"type": "component",
"component": "home.slider-img",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_home_batches",
"info": {
"displayName": "Batch"
},
"options": {},
"attributes": {
"StudentImg": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"StudentName": {
"type": "string"
},
"Batch": {
"type": "string"
},
"Location": {
"type": "string"
},
"Logo": {
"type": "media",
"multiple": true,
"allowedTypes": [
"images"
]
}
},
"config": {}
}
{
"collectionName": "components_home_box_imgs",
"info": {
"displayName": "BoxImg"
},
"options": {},
"attributes": {
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"Link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_cards",
"info": {
"displayName": "Card"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"Description": {
"type": "text"
},
"Link": {
"type": "string"
},
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
}
},
"config": {}
}
{
"collectionName": "components_home_ceo_overviews",
"info": {
"displayName": "CEOOverview"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"years": {
"type": "string"
},
"excellence": {
"type": "string"
},
"VideoImg": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"videoId": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_counters",
"info": {
"displayName": "Counter"
},
"options": {},
"attributes": {
"Title": {
"type": "string"
},
"suffix": {
"type": "string"
},
"counterNumber": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_final_placements",
"info": {
"displayName": "Final Placements"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"Counter": {
"type": "component",
"component": "home.counter",
"repeatable": true
},
"Batch": {
"type": "component",
"component": "home.batch",
"repeatable": false
}
},
"config": {}
}
......@@ -9,6 +9,11 @@
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"Card": {
"type": "component",
"component": "home.card",
"repeatable": true
}
},
"config": {}
......
......@@ -8,10 +8,14 @@
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": true
"repeatable": false
},
"Description": {
"type": "text"
"type": "customField",
"customField": "plugin::ckeditor5.CKEditor",
"options": {
"preset": "defaultHtml"
}
}
},
"config": {}
......
{
"collectionName": "components_home_scholastic_associations",
"info": {
"displayName": "ScholasticAssociation"
},
"options": {},
"attributes": {
"Clientel": {
"type": "component",
"component": "placement.clientel",
"repeatable": true
}
},
"config": {}
}
{
"collectionName": "components_home_slider_imgs",
"info": {
"displayName": "SliderImg"
},
"options": {},
"attributes": {
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"Link": {
"type": "string"
}
},
"config": {}
}
{
"collectionName": "components_home_testimonial_lists",
"info": {
"displayName": "TestimonialList"
},
"options": {},
"attributes": {
"Name": {
"type": "string"
},
"Message": {
"type": "text"
},
"Batch": {
"type": "string"
},
"Image": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
}
},
"config": {}
}
{
"collectionName": "components_home_testimonials",
"info": {
"displayName": "Testimonials"
},
"options": {},
"attributes": {
"Heading": {
"type": "component",
"component": "heading.heading",
"repeatable": false
},
"TestmonialList": {
"type": "component",
"component": "home.testimonial-list",
"repeatable": true
},
"Button": {
"type": "component",
"component": "cta.cta",
"repeatable": false
}
},
"config": {}
}
......@@ -127,6 +127,23 @@ export interface CampuslifeStudentAchievements extends Struct.ComponentSchema {
};
}
export interface ContactAddress extends Struct.ComponentSchema {
collectionName: 'components_contact_addresses';
info: {
displayName: 'Address';
};
attributes: {
ContactDetails: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
Heading: Schema.Attribute.String;
};
}
export interface CtaCta extends Struct.ComponentSchema {
collectionName: 'components_cta_ctas';
info: {
......@@ -357,6 +374,81 @@ export interface FacultyTabDetails extends Struct.ComponentSchema {
};
}
export interface FooterOverviewOverview extends Struct.ComponentSchema {
collectionName: 'components_footer_overview_overviews';
info: {
displayName: 'overview';
};
attributes: {
description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
logo: Schema.Attribute.Media<'images'>;
title: Schema.Attribute.String;
};
}
export interface FooterFooterLink extends Struct.ComponentSchema {
collectionName: 'components_footer_footer_links';
info: {
displayName: 'FooterLink';
};
attributes: {
Links: Schema.Attribute.Component<'footer.links', true>;
title: Schema.Attribute.String;
};
}
export interface FooterLinks extends Struct.ComponentSchema {
collectionName: 'components_footer_links';
info: {
displayName: 'Links';
};
attributes: {
link: Schema.Attribute.String;
title: Schema.Attribute.String;
};
}
export interface HeaderCc extends Struct.ComponentSchema {
collectionName: 'components_header_ccs';
info: {
displayName: 'CC';
};
attributes: {
link: Schema.Attribute.String;
title: Schema.Attribute.String;
};
}
export interface HeaderNavLink extends Struct.ComponentSchema {
collectionName: 'components_header_nav_links';
info: {
displayName: 'navLink';
};
attributes: {
link: Schema.Attribute.String;
navSublink: Schema.Attribute.Component<'header.nav-sublink', true>;
title: Schema.Attribute.String;
};
}
export interface HeaderNavSublink extends Struct.ComponentSchema {
collectionName: 'components_header_nav_sublinks';
info: {
displayName: 'navSublink';
};
attributes: {
link: Schema.Attribute.String;
navSubSublink: Schema.Attribute.Component<'header.cc', true>;
title: Schema.Attribute.String;
};
}
export interface HeadingHeading extends Struct.ComponentSchema {
collectionName: 'components_heading_headings';
info: {
......@@ -372,6 +464,108 @@ export interface HeadingHeading extends Struct.ComponentSchema {
};
}
export interface HomeAnimatedText extends Struct.ComponentSchema {
collectionName: 'components_home_animated_texts';
info: {
displayName: 'AnimatedText';
};
attributes: {
Title: Schema.Attribute.String;
};
}
export interface HomeBanner extends Struct.ComponentSchema {
collectionName: 'components_home_banner_s';
info: {
displayName: 'Banner ';
};
attributes: {
AnimatedText: Schema.Attribute.Component<'home.animated-text', true>;
BackImage: Schema.Attribute.Media<'images'>;
BoxImg: Schema.Attribute.Component<'home.box-img', true>;
Heading: Schema.Attribute.String;
SliderImg: Schema.Attribute.Component<'home.slider-img', true>;
StudentImg: Schema.Attribute.Media<'images'>;
Subheading: Schema.Attribute.String;
};
}
export interface HomeBatch extends Struct.ComponentSchema {
collectionName: 'components_home_batches';
info: {
displayName: 'Batch';
};
attributes: {
Batch: Schema.Attribute.String;
Location: Schema.Attribute.String;
Logo: Schema.Attribute.Media<'images', true>;
StudentImg: Schema.Attribute.Media<'images'>;
StudentName: Schema.Attribute.String;
};
}
export interface HomeBoxImg extends Struct.ComponentSchema {
collectionName: 'components_home_box_imgs';
info: {
displayName: 'BoxImg';
};
attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Link: Schema.Attribute.String;
};
}
export interface HomeCard extends Struct.ComponentSchema {
collectionName: 'components_home_cards';
info: {
displayName: 'Card';
};
attributes: {
Description: Schema.Attribute.Text;
Image: Schema.Attribute.Media<'images'>;
Link: Schema.Attribute.String;
Title: Schema.Attribute.String;
};
}
export interface HomeCeoOverview extends Struct.ComponentSchema {
collectionName: 'components_home_ceo_overviews';
info: {
displayName: 'CEOOverview';
};
attributes: {
excellence: Schema.Attribute.String;
Heading: Schema.Attribute.Component<'heading.heading', false>;
videoId: Schema.Attribute.String;
VideoImg: Schema.Attribute.Media<'images'>;
years: Schema.Attribute.String;
};
}
export interface HomeCounter extends Struct.ComponentSchema {
collectionName: 'components_home_counters';
info: {
displayName: 'Counter';
};
attributes: {
counterNumber: Schema.Attribute.String;
suffix: Schema.Attribute.String;
Title: Schema.Attribute.String;
};
}
export interface HomeFinalPlacements extends Struct.ComponentSchema {
collectionName: 'components_home_final_placements';
info: {
displayName: 'Final Placements';
};
attributes: {
Batch: Schema.Attribute.Component<'home.batch', false>;
Counter: Schema.Attribute.Component<'home.counter', true>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
export interface HomeHome extends Struct.ComponentSchema {
collectionName: 'components_home_homes';
info: {
......@@ -386,6 +580,7 @@ export interface HomeLifeatIba extends Struct.ComponentSchema {
displayName: 'LifeatIBA';
};
attributes: {
Card: Schema.Attribute.Component<'home.card', true>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
......@@ -396,8 +591,60 @@ export interface HomeOverview extends Struct.ComponentSchema {
displayName: 'Overview';
};
attributes: {
Description: Schema.Attribute.Text;
Heading: Schema.Attribute.Component<'heading.heading', true>;
Description: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
};
}
export interface HomeScholasticAssociation extends Struct.ComponentSchema {
collectionName: 'components_home_scholastic_associations';
info: {
displayName: 'ScholasticAssociation';
};
attributes: {
Clientel: Schema.Attribute.Component<'placement.clientel', true>;
};
}
export interface HomeSliderImg extends Struct.ComponentSchema {
collectionName: 'components_home_slider_imgs';
info: {
displayName: 'SliderImg';
};
attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Link: Schema.Attribute.String;
};
}
export interface HomeTestimonialList extends Struct.ComponentSchema {
collectionName: 'components_home_testimonial_lists';
info: {
displayName: 'TestimonialList';
};
attributes: {
Batch: Schema.Attribute.String;
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Message: Schema.Attribute.Text;
Name: Schema.Attribute.String;
};
}
export interface HomeTestimonials extends Struct.ComponentSchema {
collectionName: 'components_home_testimonials';
info: {
displayName: 'Testimonials';
};
attributes: {
Button: Schema.Attribute.Component<'cta.cta', false>;
Heading: Schema.Attribute.Component<'heading.heading', false>;
TestmonialList: Schema.Attribute.Component<'home.testimonial-list', true>;
};
}
......@@ -894,6 +1141,7 @@ declare module '@strapi/strapi' {
'aboutus.vission': AboutusVission;
'books-journals.books-list': BooksJournalsBooksList;
'campuslife.student-achievements': CampuslifeStudentAchievements;
'contact.address': ContactAddress;
'cta.cta': CtaCta;
'dynamic-zone.description': DynamicZoneDescription;
'dynamic-zone.dynamic-zone': DynamicZoneDynamicZone;
......@@ -911,10 +1159,28 @@ declare module '@strapi/strapi' {
'faculty.papers-presented': FacultyPapersPresented;
'faculty.sustainability-details': FacultySustainabilityDetails;
'faculty.tab-details': FacultyTabDetails;
'footer-overview.overview': FooterOverviewOverview;
'footer.footer-link': FooterFooterLink;
'footer.links': FooterLinks;
'header.cc': HeaderCc;
'header.nav-link': HeaderNavLink;
'header.nav-sublink': HeaderNavSublink;
'heading.heading': HeadingHeading;
'home.animated-text': HomeAnimatedText;
'home.banner': HomeBanner;
'home.batch': HomeBatch;
'home.box-img': HomeBoxImg;
'home.card': HomeCard;
'home.ceo-overview': HomeCeoOverview;
'home.counter': HomeCounter;
'home.final-placements': HomeFinalPlacements;
'home.home': HomeHome;
'home.lifeat-iba': HomeLifeatIba;
'home.overview': HomeOverview;
'home.scholastic-association': HomeScholasticAssociation;
'home.slider-img': HomeSliderImg;
'home.testimonial-list': HomeTestimonialList;
'home.testimonials': HomeTestimonials;
'inner-banner.inner-banner': InnerBannerInnerBanner;
'placement.clientel': PlacementClientel;
'placement.hire-from-iba': PlacementHireFromIba;
......
......@@ -596,8 +596,7 @@ export interface ApiAictePageAictePage extends Struct.SingleTypeSchema {
};
}
export interface ApiAlumniSidebarAlumniSidebar
extends Struct.CollectionTypeSchema {
export interface ApiAlumniSidebarAlumniSidebar extends Struct.SingleTypeSchema {
collectionName: 'alumni_sidebars';
info: {
displayName: 'Alumni Sidebar';
......@@ -611,7 +610,7 @@ export interface ApiAlumniSidebarAlumniSidebar
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
Links: Schema.Attribute.Component<'sidebar.links', true>;
Link: Schema.Attribute.Component<'sidebar.links', true>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
......@@ -661,7 +660,67 @@ export interface ApiBangaloreSustainabilityPageBangaloreSustainabilityPage
};
}
export interface ApiBlogBlog extends Struct.SingleTypeSchema {
export interface ApiBlogCategoryBlogCategory
extends Struct.CollectionTypeSchema {
collectionName: 'blog_categories';
info: {
displayName: 'Blog Category';
pluralName: 'blog-categories';
singularName: 'blog-category';
};
options: {
draftAndPublish: true;
};
attributes: {
blogs: Schema.Attribute.Relation<'oneToMany', 'api::blog.blog'>;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::blog-category.blog-category'
> &
Schema.Attribute.Private;
Name: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.UID<'Name'>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiBlogPageBlogPage extends Struct.SingleTypeSchema {
collectionName: 'blog_pages';
info: {
displayName: 'BlogPage';
pluralName: 'blog-pages';
singularName: 'blog-page';
};
options: {
draftAndPublish: true;
};
attributes: {
Banner: Schema.Attribute.Component<'inner-banner.inner-banner', false>;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::blog-page.blog-page'
> &
Schema.Attribute.Private;
publishedAt: Schema.Attribute.DateTime;
seo: Schema.Attribute.Component<'shared.seo', false>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiBlogBlog extends Struct.CollectionTypeSchema {
collectionName: 'blogs';
info: {
displayName: 'Blog';
......@@ -672,15 +731,31 @@ export interface ApiBlogBlog extends Struct.SingleTypeSchema {
draftAndPublish: true;
};
attributes: {
Banner: Schema.Attribute.Component<'inner-banner.inner-banner', false>;
blog_category: Schema.Attribute.Relation<
'manyToOne',
'api::blog-category.blog-category'
>;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
Date: Schema.Attribute.Date;
Details: Schema.Attribute.RichText &
Schema.Attribute.CustomField<
'plugin::ckeditor5.CKEditor',
{
preset: 'defaultHtml';
}
>;
ImageSlider: Schema.Attribute.Component<'dynamic-zone.image-slider', false>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<'oneToMany', 'api::blog.blog'> &
Schema.Attribute.Private;
MainImage: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>;
Name: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
seo: Schema.Attribute.Component<'shared.seo', false>;
slug: Schema.Attribute.UID<'Name'>;
smalldescription: Schema.Attribute.Text;
ThumbnailImage: Schema.Attribute.Media<'images'>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
......@@ -726,7 +801,7 @@ export interface ApiBooksAndJournalsPageBooksAndJournalsPage
}
export interface ApiCampusLifeSidebarCampusLifeSidebar
extends Struct.CollectionTypeSchema {
extends Struct.SingleTypeSchema {
collectionName: 'campus_life_sidebars';
info: {
displayName: 'Campus Life Sidebar';
......@@ -740,8 +815,7 @@ export interface ApiCampusLifeSidebarCampusLifeSidebar
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
Label: Schema.Attribute.String;
Links: Schema.Attribute.Component<'sidebar.links', true>;
Link: Schema.Attribute.Component<'sidebar.links', true>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
......@@ -749,6 +823,7 @@ export interface ApiCampusLifeSidebarCampusLifeSidebar
> &
Schema.Attribute.Private;
publishedAt: Schema.Attribute.DateTime;
Title: Schema.Attribute.String;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
......@@ -877,6 +952,70 @@ export interface ApiChiefMentorsMessageChiefMentorsMessage
};
}
export interface ApiContactPageContactPage extends Struct.SingleTypeSchema {
collectionName: 'contact_pages';
info: {
displayName: 'ContactPage';
pluralName: 'contact-pages';
singularName: 'contact-page';
};
options: {
draftAndPublish: true;
};
attributes: {
Address: Schema.Attribute.Component<'contact.address', true>;
Banner: Schema.Attribute.Component<'inner-banner.inner-banner', false>;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::contact-page.contact-page'
> &
Schema.Attribute.Private;
publishedAt: Schema.Attribute.DateTime;
seo: Schema.Attribute.Component<'shared.seo', false>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiContactContact extends Struct.CollectionTypeSchema {
collectionName: 'contacts';
info: {
displayName: 'Contact';
pluralName: 'contacts';
singularName: 'contact';
};
options: {
draftAndPublish: true;
};
attributes: {
City: Schema.Attribute.String;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
Email: Schema.Attribute.String;
EnquiryFor: Schema.Attribute.String;
FormSource: Schema.Attribute.String;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::contact.contact'
> &
Schema.Attribute.Private;
Name: Schema.Attribute.String;
PhoneNumber: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
State: Schema.Attribute.String;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiCorporateInternshipCorporateInternship
extends Struct.SingleTypeSchema {
collectionName: 'corporate_internships';
......@@ -1126,9 +1265,9 @@ export interface ApiEventCategoryEventCategory
'api::event-category.event-category'
> &
Schema.Attribute.Private;
Name: Schema.Attribute.Text;
Name: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
Slug: Schema.Attribute.UID<'Name'>;
slug: Schema.Attribute.UID<'Name'>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
......@@ -1150,10 +1289,6 @@ export interface ApiEventPageEventPage extends Struct.SingleTypeSchema {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
events_sidebar: Schema.Attribute.Relation<
'oneToOne',
'api::events-sidebar.events-sidebar'
>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
......@@ -1161,6 +1296,7 @@ export interface ApiEventPageEventPage extends Struct.SingleTypeSchema {
> &
Schema.Attribute.Private;
publishedAt: Schema.Attribute.DateTime;
seo: Schema.Attribute.Component<'shared.seo', false>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
......@@ -1201,6 +1337,7 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
Name: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.UID<'Name'>;
smalldescription: Schema.Attribute.Text;
ThumbnailImage: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
......@@ -1418,6 +1555,35 @@ export interface ApiFinalPlacementsPageFinalPlacementsPage
};
}
export interface ApiFooterSectionFooterSection extends Struct.SingleTypeSchema {
collectionName: 'footer_sections';
info: {
displayName: 'FooterSection';
pluralName: 'footer-sections';
singularName: 'footer-section';
};
options: {
draftAndPublish: true;
};
attributes: {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
FooterLink: Schema.Attribute.Component<'footer.footer-link', true>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::footer-section.footer-section'
> &
Schema.Attribute.Private;
overview: Schema.Attribute.Component<'footer-overview.overview', false>;
publishedAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiFounderChairmanMessageFounderChairmanMessage
extends Struct.SingleTypeSchema {
collectionName: 'founder_chairman_messages';
......@@ -1534,6 +1700,34 @@ export interface ApiGlobalVideoLIstGlobalVideoLIst
};
}
export interface ApiHeaderSectionHeaderSection extends Struct.SingleTypeSchema {
collectionName: 'header_sections';
info: {
displayName: 'HeaderSection';
pluralName: 'header-sections';
singularName: 'header-section';
};
options: {
draftAndPublish: true;
};
attributes: {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::header-section.header-section'
> &
Schema.Attribute.Private;
navLink: Schema.Attribute.Component<'header.nav-link', true>;
publishedAt: Schema.Attribute.DateTime;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiHomePageHomePage extends Struct.SingleTypeSchema {
collectionName: 'home_pages';
info: {
......@@ -1545,9 +1739,17 @@ export interface ApiHomePageHomePage extends Struct.SingleTypeSchema {
draftAndPublish: true;
};
attributes: {
ApprovalsAccreditations: Schema.Attribute.Component<
'placement.clientel',
false
>;
Banner: Schema.Attribute.Component<'home.banner', false>;
CEOOverview: Schema.Attribute.Component<'home.ceo-overview', false>;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
events: Schema.Attribute.Relation<'oneToMany', 'api::event.event'>;
FinalPlacements: Schema.Attribute.Component<'home.final-placements', false>;
LifeatIBA: Schema.Attribute.Component<'home.lifeat-iba', false>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
......@@ -1557,7 +1759,12 @@ export interface ApiHomePageHomePage extends Struct.SingleTypeSchema {
Schema.Attribute.Private;
Overview: Schema.Attribute.Component<'home.overview', false>;
publishedAt: Schema.Attribute.DateTime;
ScholasticAssociation: Schema.Attribute.Component<
'placement.clientel',
false
>;
seo: Schema.Attribute.Component<'shared.seo', false>;
Testimonials: Schema.Attribute.Component<'home.testimonials', false>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
......@@ -2093,7 +2300,7 @@ export interface ApiPlacementSidebarPlacementSidebar
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
LInk: Schema.Attribute.Component<'sidebar.links', false>;
Link: Schema.Attribute.Component<'sidebar.links', true>;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
......@@ -2941,12 +3148,16 @@ declare module '@strapi/strapi' {
'api::aicte-page.aicte-page': ApiAictePageAictePage;
'api::alumni-sidebar.alumni-sidebar': ApiAlumniSidebarAlumniSidebar;
'api::bangalore-sustainability-page.bangalore-sustainability-page': ApiBangaloreSustainabilityPageBangaloreSustainabilityPage;
'api::blog-category.blog-category': ApiBlogCategoryBlogCategory;
'api::blog-page.blog-page': ApiBlogPageBlogPage;
'api::blog.blog': ApiBlogBlog;
'api::books-and-journals-page.books-and-journals-page': ApiBooksAndJournalsPageBooksAndJournalsPage;
'api::campus-life-sidebar.campus-life-sidebar': ApiCampusLifeSidebarCampusLifeSidebar;
'api::centers-of-excellence-page.centers-of-excellence-page': ApiCentersOfExcellencePageCentersOfExcellencePage;
'api::chairman-message.chairman-message': ApiChairmanMessageChairmanMessage;
'api::chief-mentors-message.chief-mentors-message': ApiChiefMentorsMessageChiefMentorsMessage;
'api::contact-page.contact-page': ApiContactPageContactPage;
'api::contact.contact': ApiContactContact;
'api::corporate-internship.corporate-internship': ApiCorporateInternshipCorporateInternship;
'api::csr-initiative.csr-initiative': ApiCsrInitiativeCsrInitiative;
'api::cultural-symbol.cultural-symbol': ApiCulturalSymbolCulturalSymbol;
......@@ -2960,9 +3171,11 @@ declare module '@strapi/strapi' {
'api::faculty-and-research-sidebar.faculty-and-research-sidebar': ApiFacultyAndResearchSidebarFacultyAndResearchSidebar;
'api::faculty-member.faculty-member': ApiFacultyMemberFacultyMember;
'api::final-placements-page.final-placements-page': ApiFinalPlacementsPageFinalPlacementsPage;
'api::footer-section.footer-section': ApiFooterSectionFooterSection;
'api::founder-chairman-message.founder-chairman-message': ApiFounderChairmanMessageFounderChairmanMessage;
'api::full-time-faculty-page.full-time-faculty-page': ApiFullTimeFacultyPageFullTimeFacultyPage;
'api::global-video-l-ist.global-video-l-ist': ApiGlobalVideoLIstGlobalVideoLIst;
'api::header-section.header-section': ApiHeaderSectionHeaderSection;
'api::home-page.home-page': ApiHomePageHomePage;
'api::hope-page.hope-page': ApiHopePageHopePage;
'api::iba-marketing-forum.iba-marketing-forum': ApiIbaMarketingForumIbaMarketingForum;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!