Skip to content

Commit

Permalink
feat: fix mapper
Browse files Browse the repository at this point in the history
  • Loading branch information
gmat224 committed Dec 24, 2024
1 parent f9d8b9e commit 5fb6880
Show file tree
Hide file tree
Showing 15 changed files with 4,973 additions and 4,409 deletions.
2 changes: 2 additions & 0 deletions strapi/config/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ module.exports = ({ env }) => ({
apolloServer: {
tracing: false,
},
v4CompatibilityMode: true,
},
},
'import-export-entries': {}
});
20 changes: 11 additions & 9 deletions strapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,18 @@
"strapi": "strapi"
},
"dependencies": {
"@strapi/plugin-cloud": "4.24.5",
"@strapi/plugin-graphql": "4.24.5",
"@strapi/plugin-i18n": "4.24.5",
"@strapi/plugin-users-permissions": "4.24.5",
"@strapi/plugin-cloud": "5.6.0",
"@strapi/plugin-graphql": "5.6.0",
"@strapi/plugin-users-permissions": "5.6.0",
"@strapi/provider-upload-cloudinary": "^4.24.5",
"@strapi/strapi": "4.24.5",
"better-sqlite3": "8.6.0",
"@strapi/strapi": "5.6.0",
"better-sqlite3": "11.3.0",
"pg": "^8.12.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "5.3.4",
"strapi-plugin-excel-export-2024": "^1.0.7",
"styled-components": "5.3.3"
"react-router-dom": "^6.0.0",
"strapi-import-export": "^0.0.1",
"styled-components": "^6.0.0"
},
"devDependencies": {},
"engines": {
Expand All @@ -36,5 +35,8 @@
"strapi": {
"uuid": "082183a3-5663-4a72-9f64-f2998bd664cc"
},
"resolutions": {
"@koa/cors": "3.4.1"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
5 changes: 5 additions & 0 deletions strapi/src/api/people/content-types/people/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
"type": "string",
"required": true
},
"Is_Member": {
"type": "boolean",
"default": false,
"required": true
},
"Status": {
"type": "enumeration",
"enum": [
Expand Down
8 changes: 3 additions & 5 deletions strapi/types/generated/components.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import type { Schema, Attribute } from "@strapi/strapi";

declare module "@strapi/types" {
export module Shared {}
}
/*
* The app doesn't have any components yet.
*/
Loading

0 comments on commit 5fb6880

Please sign in to comment.