diff --git a/backend/api/global/models/global.settings.json b/backend/api/global/models/global.settings.json index 4a435918..9ada37c2 100644 --- a/backend/api/global/models/global.settings.json +++ b/backend/api/global/models/global.settings.json @@ -20,12 +20,22 @@ "companyData": { "type": "component", "repeatable": false, + "pluginOptions": { + "i18n": { + "localized": true + } + }, "component": "global.company-data" }, "footer": { "type": "component", "repeatable": false, - "component": "global.footer-data" + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "component": "global.footer" } } } diff --git a/backend/api/project/config/routes.json b/backend/api/project/config/routes.json new file mode 100644 index 00000000..0cbac709 --- /dev/null +++ b/backend/api/project/config/routes.json @@ -0,0 +1,52 @@ +{ + "routes": [ + { + "method": "GET", + "path": "/projects", + "handler": "project.find", + "config": { + "policies": [] + } + }, + { + "method": "GET", + "path": "/projects/count", + "handler": "project.count", + "config": { + "policies": [] + } + }, + { + "method": "GET", + "path": "/projects/:id", + "handler": "project.findOne", + "config": { + "policies": [] + } + }, + { + "method": "POST", + "path": "/projects", + "handler": "project.create", + "config": { + "policies": [] + } + }, + { + "method": "PUT", + "path": "/projects/:id", + "handler": "project.update", + "config": { + "policies": [] + } + }, + { + "method": "DELETE", + "path": "/projects/:id", + "handler": "project.delete", + "config": { + "policies": [] + } + } + ] +} diff --git a/backend/api/project/controllers/project.js b/backend/api/project/controllers/project.js new file mode 100644 index 00000000..e8608953 --- /dev/null +++ b/backend/api/project/controllers/project.js @@ -0,0 +1,8 @@ +'use strict'; + +/** + * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-controllers) + * to customize this controller + */ + +module.exports = {}; diff --git a/backend/api/project/models/project.js b/backend/api/project/models/project.js new file mode 100644 index 00000000..0054d33c --- /dev/null +++ b/backend/api/project/models/project.js @@ -0,0 +1,8 @@ +'use strict'; + +/** + * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#lifecycle-hooks) + * to customize this model + */ + +module.exports = {}; diff --git a/backend/api/project/models/project.settings.json b/backend/api/project/models/project.settings.json new file mode 100644 index 00000000..f76104e9 --- /dev/null +++ b/backend/api/project/models/project.settings.json @@ -0,0 +1,98 @@ +{ + "kind": "collectionType", + "collectionName": "projects", + "info": { + "name": "Project", + "description": "" + }, + "options": { + "increments": true, + "timestamps": true, + "draftAndPublish": true + }, + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "attributes": { + "projectType": { + "type": "string", + "pluginOptions": { + "i18n": { + "localized": true + } + } + }, + "linkPath": { + "type": "string", + "pluginOptions": { + "i18n": { + "localized": true + } + } + }, + "linkLabel": { + "type": "string", + "pluginOptions": { + "i18n": { + "localized": true + } + } + }, + "description": { + "type": "richtext", + "pluginOptions": { + "i18n": { + "localized": true + } + } + }, + "blocks": { + "type": "dynamiczone", + "components": [ + "project.title-block", + "project.blockquote-block", + "project.image-block", + "project.paragraph-block" + ], + "pluginOptions": { + "i18n": { + "localized": true + } + } + }, + "path": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "string", + "required": true, + "unique": false + }, + "companyName": { + "pluginOptions": { + "i18n": { + "localized": true + } + }, + "type": "string" + }, + "image": { + "model": "file", + "via": "related", + "allowedTypes": [ + "images" + ], + "plugin": "upload", + "required": false, + "pluginOptions": { + "i18n": { + "localized": true + } + } + } + } +} diff --git a/backend/api/project/services/project.js b/backend/api/project/services/project.js new file mode 100644 index 00000000..6538a8c8 --- /dev/null +++ b/backend/api/project/services/project.js @@ -0,0 +1,8 @@ +'use strict'; + +/** + * Read the documentation (https://strapi.io/documentation/developer-docs/latest/development/backend-customization.html#core-services) + * to customize this service + */ + +module.exports = {}; diff --git a/backend/components/global/footer.json b/backend/components/global/footer.json new file mode 100644 index 00000000..ff2bf836 --- /dev/null +++ b/backend/components/global/footer.json @@ -0,0 +1,13 @@ +{ + "collectionName": "components_global_footers", + "info": { + "name": "footer", + "icon": "angle-down" + }, + "options": {}, + "attributes": { + "description": { + "type": "richtext" + } + } +} diff --git a/backend/components/project/blockquote-block.json b/backend/components/project/blockquote-block.json new file mode 100644 index 00000000..4b44c846 --- /dev/null +++ b/backend/components/project/blockquote-block.json @@ -0,0 +1,13 @@ +{ + "collectionName": "components_project_blockquote_blocks", + "info": { + "name": "blockquoteBlock", + "icon": "align-right" + }, + "options": {}, + "attributes": { + "text": { + "type": "string" + } + } +} diff --git a/backend/components/project/image-block.json b/backend/components/project/image-block.json new file mode 100644 index 00000000..9254b8a8 --- /dev/null +++ b/backend/components/project/image-block.json @@ -0,0 +1,20 @@ +{ + "collectionName": "components_project_image_blocks", + "info": { + "name": "imageBlock", + "icon": "image" + }, + "options": {}, + "attributes": { + "image": { + "model": "file", + "via": "related", + "allowedTypes": [ + "images" + ], + "plugin": "upload", + "required": false, + "pluginOptions": {} + } + } +} diff --git a/backend/components/project/paragraph-block.json b/backend/components/project/paragraph-block.json new file mode 100644 index 00000000..64482759 --- /dev/null +++ b/backend/components/project/paragraph-block.json @@ -0,0 +1,13 @@ +{ + "collectionName": "components_project_paragraph_blocks", + "info": { + "name": "paragraphBlock", + "icon": "align-center" + }, + "options": {}, + "attributes": { + "text": { + "type": "string" + } + } +} diff --git a/backend/components/project/title-block.json b/backend/components/project/title-block.json new file mode 100644 index 00000000..5b22e505 --- /dev/null +++ b/backend/components/project/title-block.json @@ -0,0 +1,13 @@ +{ + "collectionName": "components_project_title_blocks", + "info": { + "name": "titleBlock", + "icon": "angle-up" + }, + "options": {}, + "attributes": { + "title": { + "type": "string" + } + } +} diff --git a/backend/components/section/projects-section.json b/backend/components/section/projects-section.json new file mode 100644 index 00000000..ad62597e --- /dev/null +++ b/backend/components/section/projects-section.json @@ -0,0 +1,17 @@ +{ + "collectionName": "components_section_projects_sections", + "info": { + "name": "projectsSection", + "icon": "air-freshener", + "description": "" + }, + "options": {}, + "attributes": { + "sectionTitle": { + "type": "string" + }, + "sectionTitleColor": { + "type": "string" + } + } +} diff --git a/backend/package-lock.json b/backend/package-lock.json index 311cb043..ec98a99e 100644 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -16,9 +16,9 @@ }, "dependencies": { "core-js": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.15.1.tgz", - "integrity": "sha512-h8VbZYnc9pDzueiS2610IULDkpFFPunHwIpl8yRwFahAEEdSpHlTy3h3z3rKq5h11CaUdBEeRViu9AYvbxiMeg==" + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz", + "integrity": "sha512-XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==" } } }, @@ -100,24 +100,24 @@ } }, "@babel/compat-data": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.7.tgz", - "integrity": "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==" + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", + "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==" }, "@babel/core": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz", - "integrity": "sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==", + "version": "7.15.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.5.tgz", + "integrity": "sha512-pYgXxiwAgQpgM1bNkZsDEq85f0ggXMA5L7c+o3tskGMh2BunCI9QUwB9Z4jpvXUOuMdyGKiGKQiRe11VS6Jzvg==", "requires": { "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.5", - "@babel/helper-compilation-targets": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.5", - "@babel/helpers": "^7.14.6", - "@babel/parser": "^7.14.6", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-compilation-targets": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.4", + "@babel/helpers": "^7.15.4", + "@babel/parser": "^7.15.5", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -134,38 +134,38 @@ } }, "@babel/generator": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz", - "integrity": "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz", + "integrity": "sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==", "requires": { - "@babel/types": "^7.14.5", + "@babel/types": "^7.15.4", "jsesc": "^2.5.1", "source-map": "^0.5.0" } }, "@babel/helper-annotate-as-pure": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.14.5.tgz", - "integrity": "sha512-EivH9EgBIb+G8ij1B2jAwSH36WnGvkQSEC6CkX/6v6ZFlw5fVOHvsgGF4uiEHO2GzMvunZb6tDLQEQSdrdocrA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz", + "integrity": "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.14.5.tgz", - "integrity": "sha512-YTA/Twn0vBXDVGJuAX6PwW7x5zQei1luDDo2Pl6q1qZ7hVNl0RZrhHCQG/ArGpR29Vl7ETiB8eJyrvpuRp300w==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz", + "integrity": "sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==", "requires": { - "@babel/helper-explode-assignable-expression": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-explode-assignable-expression": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/helper-compilation-targets": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz", - "integrity": "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz", + "integrity": "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==", "requires": { - "@babel/compat-data": "^7.14.5", + "@babel/compat-data": "^7.15.0", "@babel/helper-validator-option": "^7.14.5", "browserslist": "^4.16.6", "semver": "^6.3.0" @@ -179,16 +179,16 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz", - "integrity": "sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz", + "integrity": "sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==", "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4" } }, "@babel/helper-create-regexp-features-plugin": { @@ -223,76 +223,76 @@ } }, "@babel/helper-explode-assignable-expression": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.14.5.tgz", - "integrity": "sha512-Htb24gnGJdIGT4vnRKMdoXiOIlqOLmdiUYpAQ0mYfgVT/GDm8GOYhgi4GL+hMKrkiPRohO4ts34ELFsGAPQLDQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz", + "integrity": "sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-function-name": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz", - "integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz", + "integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==", "requires": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/helper-get-function-arity": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz", - "integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz", + "integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-hoist-variables": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz", - "integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz", + "integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz", - "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz", + "integrity": "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-module-imports": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz", - "integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz", + "integrity": "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-module-transforms": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz", - "integrity": "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.4.tgz", + "integrity": "sha512-9fHHSGE9zTC++KuXLZcB5FKgvlV83Ox+NLUmQTawovwlJ85+QMhk1CnVk406CQVj97LaWod6KVjl2Sfgw9Aktw==", "requires": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-simple-access": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.14.9", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/helper-optimise-call-expression": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz", - "integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz", + "integrity": "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-plugin-utils": { @@ -301,54 +301,54 @@ "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" }, "@babel/helper-remap-async-to-generator": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.14.5.tgz", - "integrity": "sha512-rLQKdQU+HYlxBwQIj8dk4/0ENOUEhA/Z0l4hN8BexpvmSMN9oA9EagjnhnDpNsRdWCfjwa4mn/HyBXO9yhQP6A==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz", + "integrity": "sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==", "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-wrap-function": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-wrap-function": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/helper-replace-supers": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz", - "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz", + "integrity": "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==", "requires": { - "@babel/helper-member-expression-to-functions": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/helper-simple-access": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz", - "integrity": "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz", + "integrity": "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.14.5.tgz", - "integrity": "sha512-dmqZB7mrb94PZSAOYtr+ZN5qt5owZIAgqtoTuqiFbHFtxgEcmQlRJVI+bO++fciBunXtB6MK7HrzrfcAzIz2NQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz", + "integrity": "sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-split-export-declaration": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz", - "integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz", + "integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==", "requires": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" } }, "@babel/helper-validator-identifier": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz", - "integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==" + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", + "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==" }, "@babel/helper-validator-option": { "version": "7.14.5", @@ -356,24 +356,24 @@ "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" }, "@babel/helper-wrap-function": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.14.5.tgz", - "integrity": "sha512-YEdjTCq+LNuNS1WfxsDCNpgXkJaIyqco6DAelTUjT4f2KIWC1nBcaCaSdHTBqQVLnTBexBcVcFhLSU1KnYuePQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz", + "integrity": "sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==", "requires": { - "@babel/helper-function-name": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-function-name": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/helpers": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.6.tgz", - "integrity": "sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz", + "integrity": "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==", "requires": { - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/highlight": { @@ -433,27 +433,27 @@ } }, "@babel/parser": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz", - "integrity": "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==" + "version": "7.15.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.5.tgz", + "integrity": "sha512-2hQstc6I7T6tQsWzlboMh3SgMRPaS4H6H7cPQsJkdzTzEGqQrpLDsE2BGASU5sBPoEQyHzeqU6C8uKbFeEk6sg==" }, "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.14.5.tgz", - "integrity": "sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.15.4.tgz", + "integrity": "sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==", "requires": { "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.14.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.15.4", "@babel/plugin-proposal-optional-chaining": "^7.14.5" } }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz", - "integrity": "sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.4.tgz", + "integrity": "sha512-2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw==", "requires": { "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-remap-async-to-generator": "^7.14.5", + "@babel/helper-remap-async-to-generator": "^7.15.4", "@babel/plugin-syntax-async-generators": "^7.8.4" } }, @@ -467,11 +467,11 @@ } }, "@babel/plugin-proposal-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.5.tgz", - "integrity": "sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.15.4.tgz", + "integrity": "sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-create-class-features-plugin": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-class-static-block": "^7.14.5" } @@ -571,12 +571,12 @@ } }, "@babel/plugin-proposal-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.15.4.tgz", + "integrity": "sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==", "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-create-class-features-plugin": "^7.14.5", + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-create-class-features-plugin": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } @@ -737,24 +737,24 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz", - "integrity": "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==", + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz", + "integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, "@babel/plugin-transform-classes": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz", - "integrity": "sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz", + "integrity": "sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==", "requires": { - "@babel/helper-annotate-as-pure": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-optimise-call-expression": "^7.14.5", + "@babel/helper-annotate-as-pure": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-replace-supers": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", "globals": "^11.1.0" } }, @@ -801,9 +801,9 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.14.5.tgz", - "integrity": "sha512-CfmqxSUZzBl0rSjpoQSFoR9UEj3HzbGuGNL21/iFTmjb5gFggJp3ph0xR1YBhexmLoKRHzgxuFvty2xdSt6gTA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz", + "integrity": "sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -844,25 +844,25 @@ } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz", - "integrity": "sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz", + "integrity": "sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==", "requires": { - "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-module-transforms": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-simple-access": "^7.14.5", + "@babel/helper-simple-access": "^7.15.4", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.14.5.tgz", - "integrity": "sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz", + "integrity": "sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==", "requires": { - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-module-transforms": "^7.14.5", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-module-transforms": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", "babel-plugin-dynamic-import-node": "^2.3.3" } }, @@ -876,9 +876,9 @@ } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.7.tgz", - "integrity": "sha512-DTNOTaS7TkW97xsDMrp7nycUVh6sn/eq22VaxWfEdzuEbRsiaOU0pqU7DlyUGHVsbQbSghvjKRpEl+nUCKGQSg==", + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz", + "integrity": "sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==", "requires": { "@babel/helper-create-regexp-features-plugin": "^7.14.5" } @@ -901,9 +901,9 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.5.tgz", - "integrity": "sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz", + "integrity": "sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } @@ -917,23 +917,23 @@ } }, "@babel/plugin-transform-react-display-name": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz", - "integrity": "sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ==", + "version": "7.15.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz", + "integrity": "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz", - "integrity": "sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q==", + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz", + "integrity": "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==", "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-module-imports": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-jsx": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/types": "^7.14.9" } }, "@babel/plugin-transform-react-jsx-development": { @@ -970,9 +970,9 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.5.tgz", - "integrity": "sha512-fPMBhh1AV8ZyneiCIA+wYYUH1arzlXR1UMcApjvchDhfKxhy2r2lReJv8uHEyihi4IFIGlr1Pdx7S5fkESDQsg==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.15.0.tgz", + "integrity": "sha512-sfHYkLGjhzWTq6xsuQ01oEsUYjkHRux9fW1iUA68dC7Qd8BS1Unq4aZ8itmQp95zUzIcyR2EbNMTzAicFj+guw==", "requires": { "@babel/helper-module-imports": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", @@ -1057,18 +1057,18 @@ } }, "@babel/preset-env": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.14.7.tgz", - "integrity": "sha512-itOGqCKLsSUl0Y+1nSfhbuuOlTs0MJk2Iv7iSH+XT/mR8U1zRLO7NjWlYXB47yhK4J/7j+HYty/EhFZDYKa/VA==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.15.4.tgz", + "integrity": "sha512-4f2nLw+q6ht8gl3sHCmNhmA5W6b1ItLzbH3UrKuJxACHr2eCpk96jwjrAfCAaXaaVwTQGnyUYHY2EWXJGt7TUQ==", "requires": { - "@babel/compat-data": "^7.14.7", - "@babel/helper-compilation-targets": "^7.14.5", + "@babel/compat-data": "^7.15.0", + "@babel/helper-compilation-targets": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", "@babel/helper-validator-option": "^7.14.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.14.5", - "@babel/plugin-proposal-async-generator-functions": "^7.14.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.15.4", + "@babel/plugin-proposal-async-generator-functions": "^7.15.4", "@babel/plugin-proposal-class-properties": "^7.14.5", - "@babel/plugin-proposal-class-static-block": "^7.14.5", + "@babel/plugin-proposal-class-static-block": "^7.15.4", "@babel/plugin-proposal-dynamic-import": "^7.14.5", "@babel/plugin-proposal-export-namespace-from": "^7.14.5", "@babel/plugin-proposal-json-strings": "^7.14.5", @@ -1079,7 +1079,7 @@ "@babel/plugin-proposal-optional-catch-binding": "^7.14.5", "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/plugin-proposal-private-methods": "^7.14.5", - "@babel/plugin-proposal-private-property-in-object": "^7.14.5", + "@babel/plugin-proposal-private-property-in-object": "^7.15.4", "@babel/plugin-proposal-unicode-property-regex": "^7.14.5", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", @@ -1098,25 +1098,25 @@ "@babel/plugin-transform-arrow-functions": "^7.14.5", "@babel/plugin-transform-async-to-generator": "^7.14.5", "@babel/plugin-transform-block-scoped-functions": "^7.14.5", - "@babel/plugin-transform-block-scoping": "^7.14.5", - "@babel/plugin-transform-classes": "^7.14.5", + "@babel/plugin-transform-block-scoping": "^7.15.3", + "@babel/plugin-transform-classes": "^7.15.4", "@babel/plugin-transform-computed-properties": "^7.14.5", "@babel/plugin-transform-destructuring": "^7.14.7", "@babel/plugin-transform-dotall-regex": "^7.14.5", "@babel/plugin-transform-duplicate-keys": "^7.14.5", "@babel/plugin-transform-exponentiation-operator": "^7.14.5", - "@babel/plugin-transform-for-of": "^7.14.5", + "@babel/plugin-transform-for-of": "^7.15.4", "@babel/plugin-transform-function-name": "^7.14.5", "@babel/plugin-transform-literals": "^7.14.5", "@babel/plugin-transform-member-expression-literals": "^7.14.5", "@babel/plugin-transform-modules-amd": "^7.14.5", - "@babel/plugin-transform-modules-commonjs": "^7.14.5", - "@babel/plugin-transform-modules-systemjs": "^7.14.5", + "@babel/plugin-transform-modules-commonjs": "^7.15.4", + "@babel/plugin-transform-modules-systemjs": "^7.15.4", "@babel/plugin-transform-modules-umd": "^7.14.5", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.14.9", "@babel/plugin-transform-new-target": "^7.14.5", "@babel/plugin-transform-object-super": "^7.14.5", - "@babel/plugin-transform-parameters": "^7.14.5", + "@babel/plugin-transform-parameters": "^7.15.4", "@babel/plugin-transform-property-literals": "^7.14.5", "@babel/plugin-transform-regenerator": "^7.14.5", "@babel/plugin-transform-reserved-words": "^7.14.5", @@ -1128,11 +1128,11 @@ "@babel/plugin-transform-unicode-escapes": "^7.14.5", "@babel/plugin-transform-unicode-regex": "^7.14.5", "@babel/preset-modules": "^0.1.4", - "@babel/types": "^7.14.5", + "@babel/types": "^7.15.4", "babel-plugin-polyfill-corejs2": "^0.2.2", "babel-plugin-polyfill-corejs3": "^0.2.2", "babel-plugin-polyfill-regenerator": "^0.2.2", - "core-js-compat": "^3.15.0", + "core-js-compat": "^3.16.0", "semver": "^6.3.0" }, "dependencies": { @@ -1169,45 +1169,45 @@ } }, "@babel/runtime": { - "version": "7.14.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", - "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", + "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/template": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz", - "integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz", + "integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==", "requires": { "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" } }, "@babel/traverse": { - "version": "7.14.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz", - "integrity": "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz", + "integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==", "requires": { "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.14.5", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.14.7", - "@babel/types": "^7.14.5", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz", - "integrity": "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==", + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz", + "integrity": "sha512-0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw==", "requires": { - "@babel/helper-validator-identifier": "^7.14.5", + "@babel/helper-validator-identifier": "^7.14.9", "to-fast-properties": "^2.0.0" } }, @@ -1248,9 +1248,9 @@ } }, "reactstrap": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-8.9.0.tgz", - "integrity": "sha512-pmf33YjpNZk1IfrjqpWCUMq9hk6GzSnMWBAofTBNIRJQB1zQ0Au2kzv3lPUAFsBYgWEuI9iYa/xKXHaboSiMkQ==", + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-8.10.0.tgz", + "integrity": "sha512-MsFUB/fRZj6Orf8Mxc93iYuAs+9ngnFmy2cfYlzkmc4vi5oM4u6ziY/DsO71lDG3cotxHRyS3Flr51cuYv+IEQ==", "requires": { "@babel/runtime": "^7.12.5", "classnames": "^2.2.3", @@ -1383,14 +1383,14 @@ "integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==" }, "@emotion/react": { - "version": "11.4.0", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.4.0.tgz", - "integrity": "sha512-4XklWsl9BdtatLoJpSjusXhpKv9YVteYKh9hPKP1Sxl+mswEFoUe0WtmtWjxEjkA51DQ2QRMCNOvKcSlCQ7ivg==", + "version": "11.4.1", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.4.1.tgz", + "integrity": "sha512-pRegcsuGYj4FCdZN6j5vqCALkNytdrKw3TZMekTzNXixRg4wkLsU5QEaBG5LC6l01Vppxlp7FE3aTHpIG5phLg==", "requires": { "@babel/runtime": "^7.13.10", "@emotion/cache": "^11.4.0", "@emotion/serialize": "^1.0.2", - "@emotion/sheet": "^1.0.1", + "@emotion/sheet": "^1.0.2", "@emotion/utils": "^1.0.0", "@emotion/weak-memoize": "^0.2.5", "hoist-non-react-statics": "^3.3.1" @@ -1409,9 +1409,9 @@ } }, "@emotion/sheet": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.0.1.tgz", - "integrity": "sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.0.2.tgz", + "integrity": "sha512-QQPB1B70JEVUHuNtzjHftMGv6eC3Y9wqavyarj4x4lg47RACkeSfNo5pxIOKizwS9AEFLohsqoaxGQj4p0vSIw==" }, "@emotion/stylis": { "version": "0.8.5", @@ -1442,9 +1442,9 @@ }, "dependencies": { "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" } } }, @@ -1457,9 +1457,9 @@ }, "dependencies": { "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" } } }, @@ -1489,9 +1489,9 @@ }, "dependencies": { "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" } } }, @@ -1517,51 +1517,51 @@ "integrity": "sha512-KWk80UPIzPmUg+P0rKh6TqspRw0G6eux1PuJr+zz47ftMaZ9QDwbGzHZbtzWkl5hgayM/qrKRutllRC7D/vVXQ==" }, "@fortawesome/fontawesome-common-types": { - "version": "0.2.35", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.35.tgz", - "integrity": "sha512-IHUfxSEDS9dDGqYwIW7wTN6tn/O8E0n5PcAHz9cAaBoZw6UpG20IG/YM3NNLaGPwPqgjBAFjIURzqoQs3rrtuw==" + "version": "0.2.36", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.36.tgz", + "integrity": "sha512-a/7BiSgobHAgBWeN7N0w+lAhInrGxksn13uK7231n2m8EDPE3BMCl9NZLTGrj9ZXfCmC6LM0QLqXidIizVQ6yg==" }, "@fortawesome/fontawesome-free": { - "version": "5.15.3", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.3.tgz", - "integrity": "sha512-rFnSUN/QOtnOAgqFRooTA3H57JLDm0QEG/jPdk+tLQNL/eWd+Aok8g3qCI+Q1xuDPWpGW/i9JySpJVsq8Q0s9w==" + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz", + "integrity": "sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg==" }, "@fortawesome/fontawesome-svg-core": { - "version": "1.2.35", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.35.tgz", - "integrity": "sha512-uLEXifXIL7hnh2sNZQrIJWNol7cTVIzwI+4qcBIq9QWaZqUblm0IDrtSqbNg+3SQf8SMGHkiSigD++rHmCHjBg==", + "version": "1.2.36", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.36.tgz", + "integrity": "sha512-YUcsLQKYb6DmaJjIHdDWpBIGCcyE/W+p/LMGvjQem55Mm2XWVAP5kWTMKWLv9lwpCVjpLxPyOMOyUocP1GxrtA==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.2.35" + "@fortawesome/fontawesome-common-types": "^0.2.36" } }, "@fortawesome/free-brands-svg-icons": { - "version": "5.15.3", - "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.15.3.tgz", - "integrity": "sha512-1hirPcbjj72ZJtFvdnXGPbAbpn3Ox6mH3g5STbANFp3vGSiE5u5ingAKV06mK6ZVqNYxUPlh4DlTnaIvLtF2kw==", + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.15.4.tgz", + "integrity": "sha512-f1witbwycL9cTENJegcmcZRYyawAFbm8+c6IirLmwbbpqz46wyjbQYLuxOc7weXFXfB7QR8/Vd2u5R3q6JYD9g==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.2.35" + "@fortawesome/fontawesome-common-types": "^0.2.36" } }, "@fortawesome/free-regular-svg-icons": { - "version": "5.15.3", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.15.3.tgz", - "integrity": "sha512-q4/p8Xehy9qiVTdDWHL4Z+o5PCLRChePGZRTXkl+/Z7erDVL8VcZUuqzJjs6gUz6czss4VIPBRdCz6wP37/zMQ==", + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-5.15.4.tgz", + "integrity": "sha512-9VNNnU3CXHy9XednJ3wzQp6SwNwT3XaM26oS4Rp391GsxVYA+0oDR2J194YCIWf7jNRCYKjUCOduxdceLrx+xw==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.2.35" + "@fortawesome/fontawesome-common-types": "^0.2.36" } }, "@fortawesome/free-solid-svg-icons": { - "version": "5.15.3", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.3.tgz", - "integrity": "sha512-XPeeu1IlGYqz4VWGRAT5ukNMd4VHUEEJ7ysZ7pSSgaEtNvSo+FLurybGJVmiqkQdK50OkSja2bfZXOeyMGRD8Q==", + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.4.tgz", + "integrity": "sha512-JLmQfz6tdtwxoihXLg6lT78BorrFyCf59SAwBM6qV/0zXyVeDygJVb3fk+j5Qat+Yvcxp1buLTY5iDh1ZSAQ8w==", "requires": { - "@fortawesome/fontawesome-common-types": "^0.2.35" + "@fortawesome/fontawesome-common-types": "^0.2.36" } }, "@fortawesome/react-fontawesome": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.14.tgz", - "integrity": "sha512-4wqNb0gRLVaBm/h+lGe8UfPPivcbuJ6ecI4hIgW0LjI7kzpYB9FkN0L9apbVzg+lsBdcTf0AlBtODjcSX5mmKA==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.15.tgz", + "integrity": "sha512-/HFHdcoLESxxMkqZAcZ6RXDJ69pVApwdwRos/B2kiMWxDSAX2dFK8Er2/+rG+RsrzWB/dsAyjefLmemgmfE18g==", "requires": { "prop-types": "^15.7.2" } @@ -1844,39 +1844,39 @@ } }, "@types/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==", + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.1.tgz", + "integrity": "sha512-a6bTJ21vFOGIkwM0kzh9Yr89ziVxq4vYH2fQ6N8AeipEzai/cFK6aGMArIkUeIdRIgpwQa+2bXiLuUJCpSf2Cg==", "requires": { "@types/connect": "*", "@types/node": "*" } }, "@types/bson": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.3.tgz", - "integrity": "sha512-mVRvYnTOZJz3ccpxhr3wgxVmSeiYinW+zlzQz3SXWaJmD1DuL05Jeq7nKw3SnbKmbleW5qrLG5vdyWe/A9sXhw==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.5.tgz", + "integrity": "sha512-vVLwMUqhYJSQ/WKcE60eFqcyuWse5fGH+NMAXHuKrUAPoryq3ATxk5o4bgYNtg5aOM4APVg7Hnb3ASqUYG0PKg==", "requires": { "@types/node": "*" } }, "@types/connect": { - "version": "3.4.34", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz", - "integrity": "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==", + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "requires": { "@types/node": "*" } }, "@types/content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-P1bffQfhD3O4LW0ioENXUhZ9OIa0Zn+P7M+pWgkCKaT53wVLSq0mrKksCID/FGHpFhRSxRGhgrQmfhRuzwtKdg==" + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-0mPF08jn9zYI0n0Q/Pnz7C4kThdSt+6LD4amsrYDDpgBfrVWa3TcCOxKX1zkGgYniGagRv8heN2cbh+CAn+uuQ==" }, "@types/cookies": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.6.tgz", - "integrity": "sha512-FK4U5Qyn7/Sc5ih233OuHO0qAkOpEcD/eG6584yEiLKizTFRny86qHLe/rej3HFQrkBuUjF4whFliAdODbVN/w==", + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.7.tgz", + "integrity": "sha512-h7BcvPUogWbKCzBR2lY4oqaZbO3jXZksexYJVFvkrFeLgbZjQkU4x8pRq6eg2MHXQhY0McQdqmmsxRWlVAHooA==", "requires": { "@types/connect": "*", "@types/express": "*", @@ -1885,9 +1885,9 @@ } }, "@types/express": { - "version": "4.17.12", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.12.tgz", - "integrity": "sha512-pTYas6FrP15B1Oa0bkN5tQMNqOcVXa9j4FTFtO8DWI9kppKib+6NJtfTOOLcwxuuYvcX2+dVG6et1SxW/Kc17Q==", + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", "requires": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.18", @@ -1896,9 +1896,9 @@ } }, "@types/express-serve-static-core": { - "version": "4.17.22", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.22.tgz", - "integrity": "sha512-WdqmrUsRS4ootGha6tVwk/IVHM1iorU8tGehftQD2NWiPniw/sm7xdJOIlXLwqdInL9wBw/p7oO8vaYEF3NDmA==", + "version": "4.17.24", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.24.tgz", + "integrity": "sha512-3UJuW+Qxhzwjq3xhwXm2onQcFHn76frIYVbTu+kn24LFxI+dEhdfISDFovPB8VpEgW8oQCTpRuCe+0zJxB7NEA==", "requires": { "@types/node": "*", "@types/qs": "*", @@ -1906,9 +1906,9 @@ } }, "@types/formidable": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/formidable/-/formidable-1.2.2.tgz", - "integrity": "sha512-8RDAMnMHOh7QrY1xuQ7s6/Xre9pMvJ2zT2VgATiz5cIE71Q/6N3+P8sr3z/dNWNmvX5/aX9x8uJlG0MZiMZXoA==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@types/formidable/-/formidable-1.2.3.tgz", + "integrity": "sha512-Ibu3TyzldPvzTK1yus5+uPDwN5m6pXCcO0c0rPKA1uce5ERjqP5AX9reKEqQFVlCScqjbQgitIQEOLlb6qd7Sw==", "requires": { "@types/node": "*" } @@ -1922,9 +1922,9 @@ } }, "@types/glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-w+LsMxKyYQm347Otw+IfBXOv9UWVjpHpCDdbBMt8Kz/xbvCYNjP+0qPh91Km3iKfSRLBB0P7fAMf0KHrPu+MyA==", "requires": { "@types/minimatch": "*", "@types/node": "*" @@ -1940,24 +1940,24 @@ } }, "@types/http-assert": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.1.tgz", - "integrity": "sha512-PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ==" + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.3.tgz", + "integrity": "sha512-FyAOrDuQmBi8/or3ns4rwPno7/9tJTijVW6aQQjK02+kOQ8zmoNg2XJtAuQhvQcy1ASJq38wirX5//9J1EqoUA==" }, "@types/http-errors": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-1.8.0.tgz", - "integrity": "sha512-2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA==" + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-e+2rjEwK6KDaNOm5Aa9wNGgyS9oSZU/4pfSMMPYNOfjvFI0WVXm29+ITRFr6aKDvvKo7uU1jV68MW4ScsfDi7Q==" }, "@types/invariant": { - "version": "2.2.34", - "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.34.tgz", - "integrity": "sha512-lYUtmJ9BqUN688fGY1U1HZoWT1/Jrmgigx2loq4ZcJpICECm/Om3V314BxdzypO0u5PORKGMM6x0OXaljV1YFg==" + "version": "2.2.35", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz", + "integrity": "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==" }, "@types/json-schema": { - "version": "7.0.7", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", - "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" }, "@types/keygrip": { "version": "1.0.2", @@ -1965,9 +1965,9 @@ "integrity": "sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==" }, "@types/koa": { - "version": "2.13.3", - "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.13.3.tgz", - "integrity": "sha512-TaujBV+Dhe/FvmSMZJtCFBms+bqQacgUebk/M2C2tq8iGmHE/DDf4DcW2Hc7NqusVZmy5xzrWOjtdPKNP+fTfw==", + "version": "2.13.4", + "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.13.4.tgz", + "integrity": "sha512-dfHYMfU+z/vKtQB7NUrthdAEiSvnLebvBjwHtfFmpZmB7em2N3WVQdHgnFq+xvyVgxW5jKDmjWfLD3lw4g4uTw==", "requires": { "@types/accepts": "*", "@types/content-disposition": "*", @@ -1980,9 +1980,9 @@ } }, "@types/koa-bodyparser": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/@types/koa-bodyparser/-/koa-bodyparser-4.3.1.tgz", - "integrity": "sha512-N1cw6UpYYW01rGanfC0guqkyqKKavXygGBeSgsJOe7EkkSlRH7BNRjzyqv1TzJ3Au69aNeagpzzqAzTo6I08ow==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@types/koa-bodyparser/-/koa-bodyparser-4.3.3.tgz", + "integrity": "sha512-/ileIpXsy1fFEzgZhZ07eZH8rAVL7jwuk/kaoVEfauO6s80g2LIDIJKEyDbuAL9S/BWflKzEC0PHD6aXkmaSbw==", "requires": { "@types/koa": "*" } @@ -2014,23 +2014,23 @@ "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" }, "@types/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" }, "@types/mongodb": { - "version": "3.6.18", - "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.18.tgz", - "integrity": "sha512-JSVFt9p0rTfZ4EgzXmVHUB3ue00xe3CRbQho8nXfImzEDDM4O7I3po1bwbWl/EIbLENxUreZxqLOc8lvcnLVPA==", + "version": "3.6.20", + "resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.20.tgz", + "integrity": "sha512-WcdpPJCakFzcWWD9juKoZbRtQxKIMYF/JIAM4JrNHrMcnJL6/a2NWjXxW7fo9hxboxxkg+icff8d7+WIEvKgYQ==", "requires": { "@types/bson": "*", "@types/node": "*" } }, "@types/node": { - "version": "15.12.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-15.12.5.tgz", - "integrity": "sha512-se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg==" + "version": "16.7.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.7.13.tgz", + "integrity": "sha512-pLUPDn+YG3FYEt/pHI74HmnJOWzeR+tOIQzUx93pi9M7D8OE7PSLr97HboXwk5F+JS+TLtWuzCOW97AHjmOXXA==" }, "@types/node-fetch": { "version": "2.5.7", @@ -2054,24 +2054,24 @@ } }, "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" + "version": "15.7.4", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" }, "@types/qs": { - "version": "6.9.6", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz", - "integrity": "sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==" + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" }, "@types/range-parser": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz", - "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA==" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" }, "@types/react": { - "version": "17.0.11", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.11.tgz", - "integrity": "sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA==", + "version": "17.0.20", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.20.tgz", + "integrity": "sha512-wWZrPlihslrPpcKyCSlmIlruakxr57/buQN1RjlIeaaTWDLtJkTtRW429MoQJergvVKc4IWBpRhWw7YNh/7GVA==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -2079,9 +2079,9 @@ } }, "@types/react-redux": { - "version": "7.1.16", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.16.tgz", - "integrity": "sha512-f/FKzIrZwZk7YEO9E1yoxIuDNRiDducxkFlkw/GNMGEnK9n4K8wJzlJBghpSuOVDgEUHoDkDF7Gi9lHNQR4siw==", + "version": "7.1.18", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.18.tgz", + "integrity": "sha512-9iwAsPyJ9DLTRH+OFeIrm9cAbIj1i2ANL3sKQFATqnPWRbg+jEFXyZOKHiQK/N86pNRXbb4HRxAxo0SIX1XwzQ==", "requires": { "@types/hoist-non-react-statics": "^3.3.0", "@types/react": "*", @@ -2090,23 +2090,23 @@ } }, "@types/scheduler": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz", - "integrity": "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==" + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" }, "@types/serve-static": { - "version": "1.13.9", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz", - "integrity": "sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==", + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", "requires": { "@types/mime": "^1", "@types/node": "*" } }, "@types/ws": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.5.tgz", - "integrity": "sha512-8mbDgtc8xpxDDem5Gwj76stBDJX35KQ3YBoayxlqUQcL5BZUthiqP/VQ4PQnLHqM4PmlbyO74t98eJpURO+gPA==", + "version": "7.4.7", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz", + "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", "requires": { "@types/node": "*" } @@ -2504,9 +2504,9 @@ }, "dependencies": { "core-js": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.15.1.tgz", - "integrity": "sha512-h8VbZYnc9pDzueiS2610IULDkpFFPunHwIpl8yRwFahAEEdSpHlTy3h3z3rKq5h11CaUdBEeRViu9AYvbxiMeg==" + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz", + "integrity": "sha512-XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==" } } }, @@ -2756,9 +2756,9 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" @@ -2930,11 +2930,18 @@ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" }, "async-retry": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.1.tgz", - "integrity": "sha512-aiieFW/7h3hY0Bq5d+ktDBejxuwR78vRu9hDUdR8rNhSaQ29VzPL4AoIRG7D/c7tdenwOcKvgPM6tIxB3cB6HA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", "requires": { - "retry": "0.12.0" + "retry": "0.13.1" + }, + "dependencies": { + "retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } } }, "asynckit": { @@ -2977,11 +2984,11 @@ "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" }, "axios": { - "version": "0.21.1", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz", - "integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==", + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", "requires": { - "follow-redirects": "^1.10.0" + "follow-redirects": "^1.14.0" } }, "babel-loader": { @@ -3021,9 +3028,9 @@ } }, "babel-plugin-polyfill-corejs3": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.3.tgz", - "integrity": "sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==", + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.4.tgz", + "integrity": "sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==", "requires": { "@babel/helper-define-polyfill-provider": "^0.2.2", "core-js-compat": "^3.14.0" @@ -3038,9 +3045,9 @@ } }, "babel-plugin-styled-components": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz", - "integrity": "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.2.tgz", + "integrity": "sha512-Vb1R3d4g+MUfPQPVDMCGjm3cDocJEUTR7Xq7QS95JWWeksN1wdFRYpD2kulDgI3Huuaf1CZd+NK4KQmqUFh5dA==", "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-module-imports": "^7.0.0", @@ -3151,15 +3158,6 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, "bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", @@ -3268,6 +3266,11 @@ "iconv-lite": "0.4.24", "unpipe": "1.0.0" } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" } } }, @@ -3528,21 +3531,21 @@ } }, "browserslist": { - "version": "4.16.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", + "version": "4.17.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.17.0.tgz", + "integrity": "sha512-g2BJ2a0nEYvEFQC208q8mVAhfNwpZ5Mu8BwgtCdZKO3qx98HChmeg448fPdUzld8aFmfLgVh7yymqV+q1lJZ5g==", "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", + "caniuse-lite": "^1.0.30001254", + "colorette": "^1.3.0", + "electron-to-chromium": "^1.3.830", "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "node-releases": "^1.1.75" }, "dependencies": { "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" } } }, @@ -3566,9 +3569,9 @@ "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=" }, "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" }, "buffer-indexof": { "version": "1.1.1", @@ -3748,9 +3751,9 @@ "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" }, "caniuse-lite": { - "version": "1.0.30001241", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001241.tgz", - "integrity": "sha512-1uoSZ1Pq1VpH0WerIMqwptXHNNGfdl7d1cJUFs80CwQ/lVzdhTvsFZCeNFslze7AjsQnb4C85tzclPa1VShbeQ==" + "version": "1.0.30001255", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001255.tgz", + "integrity": "sha512-F+A3N9jTZL882f/fg/WWVnKSu6IOo3ueLz4zwaOPbPYHNmM/ZaDUyzyJwS1mZhX7Ex5jqTyW599Gdelh5PDYLQ==" }, "captains-log": { "version": "2.0.3", @@ -3798,9 +3801,9 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, "chalk": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", - "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -4084,9 +4087,9 @@ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, "codemirror": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.62.0.tgz", - "integrity": "sha512-Xnl3304iCc8nyVZuRkzDVVwc794uc9QNX0UcPGeNic1fbzkSrO4l4GVXho9tRNKBgPYZXgocUqXyfIv3BILhCQ==" + "version": "5.62.3", + "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.62.3.tgz", + "integrity": "sha512-zZAyOfN8TU67ngqrxhOgtkSAGV9jSpN1snbl8elPtnh9Z5A11daR405+dhLzLnuXrwX0WCShWlybxPN3QC/9Pg==" }, "collection-visit": { "version": "1.0.0", @@ -4098,12 +4101,12 @@ } }, "color": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", - "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.4" + "color-convert": "^1.9.3", + "color-string": "^1.6.0" }, "dependencies": { "color-convert": { @@ -4135,9 +4138,9 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "color-string": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", - "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", + "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", "requires": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" @@ -4355,11 +4358,11 @@ "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" }, "core-js-compat": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.15.1.tgz", - "integrity": "sha512-xGhzYMX6y7oEGQGAJmP2TmtBLvR4nZmRGEcFa3ubHOq5YEp51gGN9AovVa0AoujGZIq+Wm6dISiYyGNfdflYww==", + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.17.2.tgz", + "integrity": "sha512-lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg==", "requires": { - "browserslist": "^4.16.6", + "browserslist": "^4.16.8", "semver": "7.0.0" }, "dependencies": { @@ -4371,14 +4374,14 @@ } }, "core-js-pure": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.15.1.tgz", - "integrity": "sha512-OZuWHDlYcIda8sJLY4Ec6nWq2hRjlyCqCZ+jCflyleMkVt3tPedDVErvHslyS2nbO+SlBFMSBJYvtLMwxnrzjA==" + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.17.2.tgz", + "integrity": "sha512-2VV7DlIbooyTI7Bh+yzOOWL9tGwLnQKHno7qATE+fqZzDKYr6llVjVQOzpD/QLZFgXDPb8T71pJokHEZHEYJhQ==" }, "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "crc": { "version": "3.8.0", @@ -4608,9 +4611,9 @@ "integrity": "sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==" }, "date-fns": { - "version": "2.22.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.22.1.tgz", - "integrity": "sha512-yUFPQjrxEmIsMqlHhAhmxkuH769baF21Kk+nZwZGyrMoyLA+LugaQtC0+Tqf9CBUUULWwUJt6Q5ySI3LJDDCGg==" + "version": "2.23.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.23.0.tgz", + "integrity": "sha512-5ycpauovVyAk0kXNZz6ZoB9AYMZB4DObse7P3BPWmyEjXNORTI8EJ6X0uaSAq4sCHzM1uajzrkr6HnsLQpxGXA==" }, "debug": { "version": "4.3.1", @@ -4757,9 +4760,9 @@ "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" }, "denque": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz", - "integrity": "sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ==" + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/denque/-/denque-1.5.1.tgz", + "integrity": "sha512-XwE+iZ4D6ZUB7mfYRMb5wByE8L74HCn30FBN7sWnXksWc1LO1bPDl67pBR9o/kC4z/xSNAwkMYcGgqDV3BE3Hw==" }, "depd": { "version": "2.0.0", @@ -4915,17 +4918,17 @@ "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" }, "domhandler": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz", - "integrity": "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.2.2.tgz", + "integrity": "sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==", "requires": { "domelementtype": "^2.2.0" } }, "domutils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz", - "integrity": "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", @@ -5068,9 +5071,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.761", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.761.tgz", - "integrity": "sha512-7a/wV/plM/b95XjTdA2Q4zAxxExTDKkNQpTiaU/nVT8tGCQVtX9NsnTjhALBFICpOB58hU6xg5fFC3CT2Bybpg==" + "version": "1.3.832", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.832.tgz", + "integrity": "sha512-x7lO8tGoW0CyV53qON4Lb5Rok9ipDelNdBIAiYUZ03dqy4u9vohMM1qV047+s/hiyJiqUWX/3PNwkX3kexX5ig==" }, "elliptic": { "version": "6.5.4", @@ -5168,21 +5171,23 @@ } }, "es-abstract": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", - "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", + "version": "1.18.6", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.6.tgz", + "integrity": "sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ==", "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", "has": "^1.0.3", "has-symbols": "^1.0.2", - "is-callable": "^1.2.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", "is-negative-zero": "^2.0.1", - "is-regex": "^1.1.3", - "is-string": "^1.0.6", - "object-inspect": "^1.10.3", + "is-regex": "^1.1.4", + "is-string": "^1.0.7", + "object-inspect": "^1.11.0", "object-keys": "^1.1.1", "object.assign": "^4.1.2", "string.prototype.trimend": "^1.0.4", @@ -5483,6 +5488,11 @@ "version": "6.7.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" } } }, @@ -5633,9 +5643,9 @@ }, "dependencies": { "core-js": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.15.1.tgz", - "integrity": "sha512-h8VbZYnc9pDzueiS2610IULDkpFFPunHwIpl8yRwFahAEEdSpHlTy3h3z3rKq5h11CaUdBEeRViu9AYvbxiMeg==" + "version": "3.17.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.17.2.tgz", + "integrity": "sha512-XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==" } } }, @@ -5677,23 +5687,17 @@ } }, "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "requires": { - "@types/json-schema": "^7.0.6", + "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } } } }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true - }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -5750,9 +5754,9 @@ } }, "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "requires": { "commondir": "^1.0.1", "make-dir": "^3.0.2", @@ -5821,9 +5825,9 @@ "integrity": "sha512-eNMNr5exLoavuAMhIUVsOKF79SWd/zG104ef6sxBTSw+cZc6BXdQXDvYcGvp0VbxVVSp1XDUNoz7mg1xMtSznA==" }, "follow-redirects": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz", - "integrity": "sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==" + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.3.tgz", + "integrity": "sha512-3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw==" }, "font-awesome": { "version": "4.7.0", @@ -6106,6 +6110,15 @@ "pump": "^3.0.0" } }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, "get-value": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", @@ -6125,18 +6138,18 @@ } }, "git-up": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.2.tgz", - "integrity": "sha512-kbuvus1dWQB2sSW4cbfTeGpCMd8ge9jx9RKnhXhuJ7tnvT+NIrTVfYZxjtflZddQYcmdOTlkAcjmx7bor+15AQ==", + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-4.0.5.tgz", + "integrity": "sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==", "requires": { "is-ssh": "^1.3.0", - "parse-url": "^5.0.0" + "parse-url": "^6.0.0" } }, "git-url-parse": { - "version": "11.5.0", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.5.0.tgz", - "integrity": "sha512-TZYSMDeM37r71Lqg1mbnMlOqlHd7BSij9qN7XwTkRqSAYFMihGLGhfHwgqQob3GUhEneKnV4nskN9rbQw2KGxA==", + "version": "11.6.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-11.6.0.tgz", + "integrity": "sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==", "requires": { "git-up": "^4.0.0" } @@ -6241,14 +6254,14 @@ } }, "graceful-fs": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", - "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" }, "grant": { - "version": "5.4.15", - "resolved": "https://registry.npmjs.org/grant/-/grant-5.4.15.tgz", - "integrity": "sha512-P2DQAgOKD4ySa+82c3DNDRLma74w/DtdJ60KsNd056oywvEAHTCCXaDBVct2vM4LPSoP8OVD/HctJEQyhExl7Q==", + "version": "5.4.17", + "resolved": "https://registry.npmjs.org/grant/-/grant-5.4.17.tgz", + "integrity": "sha512-bLpJYxkmi3kg/gV5v9Iv7xqgzAgWP7MhXaMwZVKnzhwiFPKZGzntUgq61aQ8QuLdmpm7tPxRv9Rw6xY4vqaAsA==", "requires": { "cookie": "^0.4.1", "cookie-signature": "^1.1.0", @@ -6386,9 +6399,9 @@ }, "dependencies": { "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" } } }, @@ -6493,6 +6506,14 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", @@ -6725,31 +6746,12 @@ } }, "http-assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.4.1.tgz", - "integrity": "sha512-rdw7q6GTlibqVVbXr0CKelfV5iY8G2HqEUkhSk297BMbSpSL8crXC+9rjKoMcZZEsksX30le6f/4ul4E28gegw==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/http-assert/-/http-assert-1.5.0.tgz", + "integrity": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==", "requires": { "deep-equal": "~1.0.1", - "http-errors": "~1.7.2" - }, - "dependencies": { - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - } + "http-errors": "~1.8.0" } }, "http-cache-semantics": { @@ -6778,11 +6780,6 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" } } }, @@ -7129,6 +7126,16 @@ "ipaddr.js": "^1.9.0" } }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, "interpret": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", @@ -7212,11 +7219,12 @@ } }, "is-arguments": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", - "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "requires": { - "call-bind": "^1.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-arrayish": { @@ -7225,9 +7233,12 @@ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" }, "is-bigint": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", - "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } }, "is-binary-path": { "version": "2.1.0", @@ -7243,11 +7254,12 @@ "integrity": "sha1-CWQ5Bg9KpBGr7hkUOoTWpVNG1uI=" }, "is-boolean-object": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", - "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "requires": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" } }, "is-buffer": { @@ -7256,9 +7268,9 @@ "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" }, "is-callable": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", - "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" }, "is-class-hotfix": { "version": "0.0.6", @@ -7266,9 +7278,9 @@ "integrity": "sha512-0n+pzCC6ICtVr/WXnN2f03TK/3BfXY7me4cjCAqT8TYXEl0+JBRoqBo94JJHXcyDSLUeWbNX8Fvy5g5RJdAstQ==" }, "is-core-module": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", - "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz", + "integrity": "sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ==", "requires": { "has": "^1.0.3" } @@ -7292,9 +7304,12 @@ } }, "is-date-object": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", - "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-descriptor": { "version": "0.1.6", @@ -7337,9 +7352,12 @@ } }, "is-generator-function": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz", - "integrity": "sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==" + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-glob": { "version": "4.0.1", @@ -7387,9 +7405,12 @@ } }, "is-number-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", - "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-obj": { "version": "2.0.0", @@ -7426,12 +7447,12 @@ } }, "is-regex": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", - "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "requires": { "call-bind": "^1.0.2", - "has-symbols": "^1.0.2" + "has-tostringtag": "^1.0.0" } }, "is-relative": { @@ -7456,9 +7477,12 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" }, "is-string": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", - "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, "is-symbol": { "version": "1.0.4", @@ -7840,15 +7864,15 @@ "integrity": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" }, "koa-compress": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/koa-compress/-/koa-compress-5.0.1.tgz", - "integrity": "sha512-uTo7Hcyyt6e9o2X3htRS/SNEKy9vDOUc/r1qs/F0YI2Frv9IEbkjz/9dC6IdJWBQAG34lRuU7jBXeq3DRur9Ng==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/koa-compress/-/koa-compress-5.1.0.tgz", + "integrity": "sha512-G3Ppo9jrUwlchp6qdoRgQNMiGZtM0TAHkxRZQ7EoVvIG8E47J4nAsMJxXHAUQ+0oc7t0MDxSdONWTFcbzX7/Bg==", "requires": { "bytes": "^3.0.0", "compressible": "^2.0.0", - "http-errors": "^1.7.3", + "http-errors": "^1.8.0", "koa-is-json": "^1.0.0", - "statuses": "^2.0.0" + "statuses": "^2.0.1" }, "dependencies": { "statuses": { @@ -8317,9 +8341,9 @@ } }, "markdown-it": { - "version": "12.0.6", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.6.tgz", - "integrity": "sha512-qv3sVLl4lMT96LLtR7xeRJX11OUFjsaD5oVat2/SNBIb21bJXwal2+SklcRbTwGwqWpWH/HRtYavOoJE+seL8w==", + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.2.0.tgz", + "integrity": "sha512-Wjws+uCrVQRqOoJvze4HCqkKl1AsSh95iFAeQDwnyfxM09divCBSXlDR1uTvyUP3Grzpn4Ru8GeCxYPM8vkCQg==", "requires": { "argparse": "^2.0.1", "entities": "~2.1.0", @@ -8486,16 +8510,16 @@ "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" }, "mime-db": { - "version": "1.48.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", - "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==" + "version": "1.49.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.49.0.tgz", + "integrity": "sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==" }, "mime-types": { - "version": "2.1.31", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", - "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", + "version": "2.1.32", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.32.tgz", + "integrity": "sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==", "requires": { - "mime-db": "1.48.0" + "mime-db": "1.49.0" } }, "mimic-fn": { @@ -8538,11 +8562,11 @@ } }, "schema-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", - "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "requires": { - "@types/json-schema": "^7.0.6", + "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" } @@ -8652,9 +8676,9 @@ } }, "mongodb": { - "version": "3.6.8", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.6.8.tgz", - "integrity": "sha512-sDjJvI73WjON1vapcbyBD3Ao9/VN3TKYY8/QX9EPbs22KaCSrQ5rXo5ZZd44tWJ3wl3FlnrFZ+KyUtNH6+1ZPQ==", + "version": "3.6.11", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.6.11.tgz", + "integrity": "sha512-4Y4lTFHDHZZdgMaHmojtNAlqkvddX2QQBEN0K//GzxhGwlI9tZ9R0vhbjr1Decw+TF7qK0ZLjQT292XgHRRQgw==", "requires": { "bl": "^2.2.1", "bson": "^1.1.4", @@ -8676,18 +8700,20 @@ } }, "mongoose": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.13.0.tgz", - "integrity": "sha512-8dvu7vxmDzlupj4I9T0g33GPf4HzSZmIOKQfG9RJQ5Nxk/Ztx1b8zlYp+blvaCfWwtBpiAJuKYOBU17Wq1RVFQ==", + "version": "5.13.9", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-5.13.9.tgz", + "integrity": "sha512-JbLw5ie0LJxm7V9LoNxRY//6cyFJf0cOpON2TWUWvF9pabil6ArfECL3xHV2N+mwwO4gXiIa+c0pwTzDUVTgqw==", "requires": { + "@types/bson": "1.x || 4.0.x", "@types/mongodb": "^3.5.27", "bson": "^1.1.4", "kareem": "2.3.2", - "mongodb": "3.6.8", + "mongodb": "3.6.11", "mongoose-legacy-pluralize": "1.0.2", - "mpath": "0.8.3", + "mpath": "0.8.4", "mquery": "3.2.5", "ms": "2.1.2", + "optional-require": "1.0.x", "regexp-clone": "1.0.0", "safe-buffer": "5.2.1", "sift": "13.5.2", @@ -8725,9 +8751,9 @@ } }, "mpath": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.8.3.tgz", - "integrity": "sha512-eb9rRvhDltXVNL6Fxd2zM9D4vKBxjVVQNLNijlj7uoXUy19zNDsIif5zR+pWmPCWNKwAtqyo4JveQm4nfD5+eA==" + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.8.4.tgz", + "integrity": "sha512-DTxNZomBcTWlrMW76jy1wvV37X/cNNxPW1y2Jzd4DZkAaC5ZGsm8bfGfNOthcDuRJujXLqiuS6o3Tpy0JEoh7g==" }, "mquery": { "version": "3.2.5", @@ -8795,12 +8821,6 @@ "thenify-all": "^1.0.0" } }, - "nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", - "optional": true - }, "nano-time": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", @@ -8810,9 +8830,9 @@ } }, "nanoid": { - "version": "3.1.23", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz", - "integrity": "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==" + "version": "3.1.25", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz", + "integrity": "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==" }, "nanomatch": { "version": "1.2.13", @@ -8838,9 +8858,9 @@ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" }, "needle": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz", - "integrity": "sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg==", + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.9.1.tgz", + "integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==", "requires": { "debug": "^3.2.6", "iconv-lite": "^0.4.4", @@ -8881,9 +8901,9 @@ } }, "node-abi": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.30.0.tgz", - "integrity": "sha512-g6bZh3YCKQRdwuO/tSZZYJAw622SjsRfJ2X0Iy4sSOHZ34/sPPdVBn8fev2tj7njzLwuqPw9uMtGsGkO5kIQvg==", + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.30.1.tgz", + "integrity": "sha512-/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w==", "requires": { "semver": "^5.4.1" }, @@ -9008,26 +9028,31 @@ "osenv": "^0.1.4" } }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, "tar": { - "version": "4.4.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", - "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "version": "4.4.19", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", + "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" + "chownr": "^1.1.4", + "fs-minipass": "^1.2.7", + "minipass": "^2.9.0", + "minizlib": "^1.3.3", + "mkdirp": "^0.5.5", + "safe-buffer": "^5.2.1", + "yallist": "^3.1.1" } } } }, "node-releases": { - "version": "1.1.73", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", - "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==" + "version": "1.1.75", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz", + "integrity": "sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw==" }, "node-schedule": { "version": "1.3.2", @@ -9182,9 +9207,9 @@ } }, "object-inspect": { - "version": "1.10.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", - "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==" + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" }, "object-is": { "version": "1.1.5", @@ -9201,9 +9226,9 @@ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object-path": { - "version": "0.11.5", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.5.tgz", - "integrity": "sha512-jgSbThcoR/s+XumvGMTMf81QVBmah+/Q7K7YduKeKVWL7N111unR2d6pZZarSk6kY/caeNxUDyxOvMWyzoU2eg==" + "version": "0.11.7", + "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.7.tgz", + "integrity": "sha512-T4evaK9VfGGQskXBDILcn6F90ZD+WO3OwRFFQ2rmZdUH4vQeDBpiolTpVlPY2yj5xSepyILTjDyM6UvbbdHMZw==" }, "object-visit": { "version": "1.0.1", @@ -9574,14 +9599,21 @@ "integrity": "sha1-8r0iH2zJcKk42IVWq8WJyqqiveE=" }, "parse-url": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-5.0.7.tgz", - "integrity": "sha512-CgbjyWT6aOh2oNSUS0cioYQsGysj9hQ2IdbOfeNwq5KOaKM7dOw/yTupiI0cnJhaDHJEIGybPkQz7LF9WNIhyw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-6.0.0.tgz", + "integrity": "sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw==", "requires": { "is-ssh": "^1.3.0", - "normalize-url": "4.5.1", + "normalize-url": "^6.1.0", "parse-path": "^4.0.0", "protocols": "^1.4.0" + }, + "dependencies": { + "normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } } }, "parseurl": { @@ -9616,9 +9648,9 @@ } }, "tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", + "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" } } }, @@ -10000,9 +10032,9 @@ "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" }, "prebuild-install": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.3.tgz", - "integrity": "sha512-iqqSR84tNYQUQHRXalSKdIaM8Ov1QxOVuBNWI7+BzZWv6Ih9k75wOnH1rGQ9WWTaaLkTpxWKIciOF0KyfM74+Q==", + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.1.4.tgz", + "integrity": "sha512-Z4vpywnK1lBg+zdPCVCsKq0xO66eEV9rWo2zrROGGiRS4JtueBOdlB1FnY8lcy7JsUud/Q3ijUxyWN26Ika0vQ==", "requires": { "detect-libc": "^1.0.3", "expand-template": "^2.0.3", @@ -10285,6 +10317,11 @@ "statuses": ">= 1.5.0 < 2", "toidentifier": "1.0.0" } + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" } } }, @@ -10331,9 +10368,9 @@ } }, "react-copy-to-clipboard": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.3.tgz", - "integrity": "sha512-9S3j+m+UxDZOM0Qb8mhnT/rMR0NGSrj9A/073yz2DSxPMYhmYFBMYIdI2X4o8AjOjyFsSNxDRnCX6s/gRxpriw==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.4.tgz", + "integrity": "sha512-IeVAiNVKjSPeGax/Gmkqfa/+PuMTBhutEvFUaMQLwE2tS0EXrAdgOpWDX26bWTXF3HrioorR7lr08NqeYUWQCQ==", "requires": { "copy-to-clipboard": "^3", "prop-types": "^15.5.8" @@ -10552,11 +10589,11 @@ } }, "react-router": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", - "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.1.tgz", + "integrity": "sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ==", "requires": { - "@babel/runtime": "^7.1.2", + "@babel/runtime": "^7.12.13", "history": "^4.9.0", "hoist-non-react-statics": "^3.1.0", "loose-envify": "^1.3.1", @@ -10569,15 +10606,15 @@ } }, "react-router-dom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", - "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.0.tgz", + "integrity": "sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ==", "requires": { - "@babel/runtime": "^7.1.2", + "@babel/runtime": "^7.12.13", "history": "^4.9.0", "loose-envify": "^1.3.1", "prop-types": "^15.6.2", - "react-router": "5.2.0", + "react-router": "5.2.1", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0" } @@ -10796,9 +10833,9 @@ } }, "redux": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.0.tgz", - "integrity": "sha512-uI2dQN43zqLWCt6B/BMGRMY6db7TTY4qeHHfGeKb3EOhmOKjU3KdWvNLJyqaHRksv/ErdNH7cFZWg9jXtewy4g==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.1.tgz", + "integrity": "sha512-hZQZdDEM25UY2P493kPYuKqviVwZ58lEmGQNeQ+gXa+U0gYPUBf7NKYazbe3m+bs/DzM/ahN12DbF+NG8i0CWw==", "requires": { "@babel/runtime": "^7.9.2" } @@ -10832,9 +10869,9 @@ } }, "regenerator-runtime": { - "version": "0.13.7", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", - "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" }, "regenerator-transform": { "version": "0.14.5", @@ -11231,9 +11268,9 @@ }, "dependencies": { "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" }, "deepmerge": { "version": "4.2.2", @@ -11251,9 +11288,9 @@ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==" }, "postcss": { - "version": "8.3.5", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.5.tgz", - "integrity": "sha512-NxTuJocUhYGsMiMFHDUkmjSKT3EdH4/WbGF6GCi1NDGk+vbcUTun4fpbOqaPtD8IIsztA2ilZm2DhYCuyN58gA==", + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz", + "integrity": "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==", "requires": { "colorette": "^1.2.2", "nanoid": "^3.1.23", @@ -11379,6 +11416,11 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" } } }, @@ -11536,9 +11578,9 @@ "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" }, "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "sha.js": { "version": "2.4.11", @@ -11791,16 +11833,16 @@ } }, "sockjs-client": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.1.tgz", - "integrity": "sha512-VnVAb663fosipI/m6pqRXakEOw7nvd7TUgdr3PlR/8V2I95QIdwT8L4nMxhyU8SmDBHYXU1TOElaKOmKLfYzeQ==", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.2.tgz", + "integrity": "sha512-ZzRxPBISQE7RpzlH4tKJMQbHM9pabHluk0WBaxAQ+wm/UieeBVBou0p4wVnSQGN9QmpAZygQ0cDIypWuqOFmFQ==", "requires": { "debug": "^3.2.6", "eventsource": "^1.0.7", "faye-websocket": "^0.11.3", "inherits": "^2.0.4", "json3": "^3.3.3", - "url-parse": "^1.5.1" + "url-parse": "^1.5.3" }, "dependencies": { "debug": { @@ -12806,9 +12848,9 @@ } }, "styled-components": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.0.tgz", - "integrity": "sha512-bPJKwZCHjJPf/hwTJl6TbkSZg/3evha+XPEizrZUGb535jLImwDUdjTNxXqjjaASt2M4qO4AVfoHJNe3XB/tpQ==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.1.tgz", + "integrity": "sha512-JThv2JRzyH0NOIURrk9iskdxMSAAtCfj/b2Sf1WJaCUsloQkblepy1jaCLX/bYE+mhYo3unmwVSI9I5d9ncSiQ==", "requires": { "@babel/helper-module-imports": "^7.0.0", "@babel/traverse": "^7.4.5", @@ -13466,9 +13508,9 @@ } }, "urijs": { - "version": "1.19.6", - "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.6.tgz", - "integrity": "sha512-eSXsXZ2jLvGWeLYlQA3Gh36BcjF+0amo92+wHPyN1mdR8Nxf75fuEuYTd9c0a+m/vhCjRK0ESlE9YNLW+E1VEw==" + "version": "1.19.7", + "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.7.tgz", + "integrity": "sha512-Id+IKjdU0Hx+7Zx717jwLPsPeUqz7rAtuVBRLLs+qn+J2nf9NGITWVCxcijgYxBqe83C7sqsQPs6H1pyz3x9gA==" }, "urix": { "version": "0.1.0", @@ -13514,9 +13556,9 @@ } }, "url-parse": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz", - "integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==", + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.3.tgz", + "integrity": "sha512-IIORyIQD9rvj0A4CLWsHkBBJuNqWpFQe224b6j9t/ABmquIS0qDU2pY6kl6AuOrL5OkCXHMCFNe1jBcuAggjvQ==", "requires": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" @@ -13615,6 +13657,13 @@ "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" + }, + "dependencies": { + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + } } }, "video-react": { @@ -13713,11 +13762,7 @@ "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } + "optional": true }, "glob-parent": { "version": "3.1.0", @@ -14051,11 +14096,7 @@ "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } + "optional": true }, "glob-parent": { "version": "3.1.0", diff --git a/frontend/.env.environment b/frontend/.env.environment index 393ac2b8..54626087 100644 --- a/frontend/.env.environment +++ b/frontend/.env.environment @@ -1 +1 @@ -NEXT_PUBLIC_STRAPI_URL=http://localhost:1337 \ No newline at end of file +NEXT_PUBLIC_STRAPI_URL=https://strapi.inkofpixel.com \ No newline at end of file diff --git a/frontend/codegen.yml b/frontend/codegen.yml index 56145d4e..0eb40d7a 100644 --- a/frontend/codegen.yml +++ b/frontend/codegen.yml @@ -1,5 +1,5 @@ overwrite: true -schema: "http://localhost:1337/graphql" +schema: "https://strapi.inkofpixel.com/graphql" documents: "./graphql/**/*.graphql" generates: ./graphql/generated.ts: diff --git a/frontend/config/env.ts b/frontend/config/env.ts index 212f4408..d05abf3d 100644 --- a/frontend/config/env.ts +++ b/frontend/config/env.ts @@ -1,5 +1,5 @@ export const STRAPI_URL = checkEnv( - "http://localhost:1337", + "https://strapi.inkofpixel.com", "NEXT_PUBLIC_STRAPI_URL" ); diff --git a/frontend/features/page/index.ts b/frontend/features/page/index.ts index eaac9a97..12885cb0 100644 --- a/frontend/features/page/index.ts +++ b/frontend/features/page/index.ts @@ -14,6 +14,7 @@ import { SimpleSectionBlockData, simpleSectionBlock, } from "./sections/SimpleSection/blocks/SimpleSectionBlock"; +import { projectListSectionBlock } from "./sections/ProjectsListSection/ProjectsListSectionBlock"; import { contactsSectionBlock, ContactsSectionBlockData, @@ -27,6 +28,10 @@ export const SECTION_PAGE_BLOCKS = { contactsSection: contactsSectionBlock, }; +export const PROJECTS_LIST_BLOCK = { + projectsSection: projectListSectionBlock, +}; + export type SectionBlockData = | HeroSectionBlockData | FeatureListSectionBlockData diff --git a/frontend/features/page/sections/CardListSection/blocks/CardBlock.tsx b/frontend/features/page/sections/CardListSection/blocks/CardBlock.tsx index 65a9a7fa..59cd0864 100644 --- a/frontend/features/page/sections/CardListSection/blocks/CardBlock.tsx +++ b/frontend/features/page/sections/CardListSection/blocks/CardBlock.tsx @@ -15,8 +15,8 @@ export type CardBlockData = BlockTemplateData< { id: string; image?: Nullable; - title: string; - description: string; + title: Nullable; + description: Nullable; link: LinkData; } >; diff --git a/frontend/features/page/sections/ProjectsListSection/ProjectsListSectionBlock.tsx b/frontend/features/page/sections/ProjectsListSection/ProjectsListSectionBlock.tsx new file mode 100644 index 00000000..09475f2c --- /dev/null +++ b/frontend/features/page/sections/ProjectsListSection/ProjectsListSectionBlock.tsx @@ -0,0 +1,133 @@ +import { Box, Flex } from "@chakra-ui/react"; + +import React from "react"; +import { + BlockComponentProps, + Block, + BlocksControls, + InlineTextarea, + InlineBlocks, +} from "react-tinacms-inline"; +import { PROJECT_BLOCK } from ".."; +import { ProjectBlockData } from "./block/ProjectBlock"; + +export type ProjectListSectionData = BlockTemplateData< + "projectsSection", + { + id: string; + sectionTitle: Nullable; + sectionTitleColor: Nullable; + projects: ProjectBlockData[]; + } +>; + +interface ProjectListSectionProps { + sectionTitle: Nullable; + sectionTitleColor: Nullable; + preview: boolean; + index: number; +} + +export function ProjectListSection({ + sectionTitle, + sectionTitleColor, + preview, + index, +}: ProjectListSectionProps) { + const itemProps = React.useMemo(() => { + return { + isPreview: preview, + }; + }, [preview]); + + return ( + + + + + + div": { + w: "full", + height: "fit-content", + }, + }} + px="0" + > + + + + + ); +} + +function BlockComponent({ index, data }: BlockComponentProps) { + return ( + + + + ); +} + +export const projectListSectionBlock: Block = { + Component: BlockComponent, + template: { + label: "Project list section", + defaultItem: { + sectionTitle: "Default section title", + }, + fields: [ + { + name: "sectionTitleColor", + component: "color", + label: "Section title color", + }, + ], + }, +}; diff --git a/frontend/features/page/sections/ProjectsListSection/block/ProjectBlock.tsx b/frontend/features/page/sections/ProjectsListSection/block/ProjectBlock.tsx new file mode 100644 index 00000000..fc1634df --- /dev/null +++ b/frontend/features/page/sections/ProjectsListSection/block/ProjectBlock.tsx @@ -0,0 +1,242 @@ +import { Box, Flex, Img } from "@chakra-ui/react"; +import { STRAPI_URL } from "@config/env"; +import Link from "next/link"; +import React from "react"; +import { + BlockComponentProps, + BlocksControls, + Block, + InlineTextarea, + InlineImage, +} from "react-tinacms-inline"; +import { useCMS } from "tinacms"; + +export type ProjectBlockData = BlockTemplateData< + "project", + { + id: string; + companyName: Nullable; + projectType: Nullable; + description: Nullable; + linkName: Nullable; + linkPath: Nullable; + image: Nullable; + path: Nullable; + } +>; + +interface ProjectBlockProps { + linkName: Nullable; + linkPath: Nullable; + image: Nullable; +} + +interface ProjectImage { + id: string; + url: string; + alternativeText: Nullable; +} + +interface ImageRenderProps { + src: { + url?: string; + previewSrc?: string; + }; +} + +export function ProjectBlock({ image, linkName, linkPath }: ProjectBlockProps) { + const cms = useCMS(); + return ( + + + + + + + + + + + + + + + {linkName} + + + + + + {cms.enabled ? ( + "/"} + previewSrc={(imageSrc) => { + if (imageSrc === "") { + return "/images/default-image.png"; + } + + return imageSrc; + }} + parse={(media) => { + return media as any; + }} + > + {(imageProps: any) => { + const { src } = imageProps as ImageRenderProps; + let imageSrc: string = src.previewSrc || src.url || ""; + if (imageSrc === "") { + imageSrc = "/images/default-image.png"; + } else if (!imageSrc.startsWith("http")) { + imageSrc = `${STRAPI_URL}${imageSrc}`; + } + + return ( + + Cover image + + ); + }} + + ) : ( + + + + + + )} + + + ); +} + +function BlockComponent({ index, data }: BlockComponentProps) { + return ( + + + + ); +} + +export const projectBlock: Block = { + Component: BlockComponent, + template: { + label: "Project", + defaultItem: { + companyName: "Default title", + projectType: "Default type", + description: "Default description", + linkName: "Deafult link", + linkPath: "/", + }, + fields: [ + { + name: "linkName", + label: "Link name", + component: "text", + }, + { + name: "linkPath", + label: "Link path", + component: "text", + }, + ], + }, +}; diff --git a/frontend/features/page/sections/index.ts b/frontend/features/page/sections/index.ts index 830bbd9e..c5a19266 100644 --- a/frontend/features/page/sections/index.ts +++ b/frontend/features/page/sections/index.ts @@ -1,5 +1,9 @@ import { cardBlock, CardBlockData } from "./CardListSection/blocks/CardBlock"; +import { + projectBlock, + ProjectBlockData, +} from "./ProjectsListSection/block/ProjectBlock"; import { featureBlock, FeatureBlockData, @@ -13,4 +17,8 @@ export const CARD_BLOCK = { card: cardBlock, }; -export type BlockData = CardBlockData | FeatureBlockData; +export const PROJECT_BLOCK = { + project: projectBlock, +}; + +export type BlockData = CardBlockData | FeatureBlockData | ProjectBlockData; diff --git a/frontend/graphql.schema.json b/frontend/graphql.schema.json index 24498005..ea85a050 100644 --- a/frontend/graphql.schema.json +++ b/frontend/graphql.schema.json @@ -14,7 +14,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "firstname", "description": null, "args": [], "type": { @@ -22,7 +22,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -30,19 +30,23 @@ "deprecationReason": null }, { - "name": "username", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "firstname", + "name": "lastname", "description": null, "args": [], "type": { @@ -58,17 +62,13 @@ "deprecationReason": null }, { - "name": "lastname", + "name": "username", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -81,18 +81,8 @@ }, { "kind": "SCALAR", - "name": "ID", - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "name": "Boolean", + "description": "The `Boolean` scalar type represents `true` or `false`.", "fields": null, "inputFields": null, "interfaces": null, @@ -105,39 +95,19 @@ "description": null, "fields": [ { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "title", + "name": "description", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "id", "description": null, "args": [], "type": { @@ -145,7 +115,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -165,7 +135,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "label", "description": null, "args": [], "type": { @@ -181,7 +151,19 @@ "deprecationReason": null }, { - "name": "label", + "name": "title", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", "description": null, "args": [], "type": { @@ -208,33 +190,13 @@ "description": null, "fields": null, "inputFields": [ - { - "name": "title", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -253,7 +215,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "label", "description": null, "type": { "kind": "NON_NULL", @@ -269,7 +231,19 @@ "deprecationReason": null }, { - "name": "label", + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", "description": null, "type": { "kind": "NON_NULL", @@ -291,7 +265,7 @@ }, { "kind": "OBJECT", - "name": "ComponentBlocksNavigationBlock", + "name": "ComponentBlocksLink", "description": null, "fields": [ { @@ -342,7 +316,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentBlocksNavigationBlockInput", + "name": "ComponentBlocksLinkInput", "description": null, "fields": null, "inputFields": [ @@ -381,17 +355,13 @@ "description": null, "fields": [ { - "name": "id", + "name": "bubbleColor", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -401,19 +371,15 @@ "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", + "name": "id", "description": null, "args": [], "type": { @@ -421,7 +387,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -441,7 +407,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "label", "description": null, "args": [], "type": { @@ -457,7 +423,7 @@ "deprecationReason": null }, { - "name": "bubbleColor", + "name": "title", "description": null, "args": [], "type": { @@ -469,7 +435,7 @@ "deprecationReason": null }, { - "name": "label", + "name": "url", "description": null, "args": [], "type": { @@ -497,32 +463,24 @@ "fields": null, "inputFields": [ { - "name": "description", + "name": "bubbleColor", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", + "name": "description", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -541,7 +499,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "label", "description": null, "type": { "kind": "NON_NULL", @@ -557,7 +515,7 @@ "deprecationReason": null }, { - "name": "bubbleColor", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -569,7 +527,7 @@ "deprecationReason": null }, { - "name": "label", + "name": "url", "description": null, "type": { "kind": "NON_NULL", @@ -595,23 +553,19 @@ "description": null, "fields": [ { - "name": "id", + "name": "bubbleColor", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "bubbleHoverColor", "description": null, "args": [], "type": { @@ -623,36 +577,40 @@ "deprecationReason": null }, { - "name": "bubbleColor", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "bubbleHoverColor", + "name": "image", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFile", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", + "name": "url", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFile", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -671,7 +629,7 @@ "fields": null, "inputFields": [ { - "name": "url", + "name": "bubbleColor", "description": null, "type": { "kind": "SCALAR", @@ -683,7 +641,7 @@ "deprecationReason": null }, { - "name": "bubbleColor", + "name": "bubbleHoverColor", "description": null, "type": { "kind": "SCALAR", @@ -695,11 +653,11 @@ "deprecationReason": null }, { - "name": "bubbleHoverColor", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -707,11 +665,11 @@ "deprecationReason": null }, { - "name": "image", + "name": "url", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -725,82 +683,28 @@ }, { "kind": "OBJECT", - "name": "ComponentGlobalBottomBar", + "name": "ComponentGlobalCompanyData", "description": null, "fields": [ { - "name": "id", + "name": "additionalLegalInfo", "description": null, "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "ComponentGlobalBottomBarInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "_", - "description": null, "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentGlobalCompanyData", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, "isDeprecated": false, "deprecationReason": null }, { - "name": "primaryEmail", + "name": "capital", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null }, "isDeprecated": false, @@ -819,7 +723,7 @@ "deprecationReason": null }, { - "name": "additionalLegalInfo", + "name": "copyright", "description": null, "args": [], "type": { @@ -831,15 +735,15 @@ "deprecationReason": null }, { - "name": "locations", + "name": "id", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentGlobalHeadquarter", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -847,31 +751,35 @@ "deprecationReason": null }, { - "name": "capital", + "name": "legalCompanyName", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "vatId", + "name": "locations", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentGlobalHeadquarter", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "copyright", + "name": "primaryEmail", "description": null, "args": [], "type": { @@ -883,7 +791,7 @@ "deprecationReason": null }, { - "name": "legalCompanyName", + "name": "vatId", "description": null, "args": [], "type": { @@ -907,7 +815,7 @@ "fields": null, "inputFields": [ { - "name": "primaryEmail", + "name": "additionalLegalInfo", "description": null, "type": { "kind": "SCALAR", @@ -919,11 +827,11 @@ "deprecationReason": null }, { - "name": "companyName", + "name": "capital", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null }, "defaultValue": null, @@ -931,7 +839,7 @@ "deprecationReason": null }, { - "name": "additionalLegalInfo", + "name": "companyName", "description": null, "type": { "kind": "SCALAR", @@ -943,27 +851,23 @@ "deprecationReason": null }, { - "name": "locations", + "name": "copyright", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentGlobalHeadquarterInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "capital", + "name": "legalCompanyName", "description": null, "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null }, "defaultValue": null, @@ -971,19 +875,23 @@ "deprecationReason": null }, { - "name": "vatId", + "name": "locations", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentGlobalHeadquarterInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "copyright", + "name": "primaryEmail", "description": null, "type": { "kind": "SCALAR", @@ -995,7 +903,7 @@ "deprecationReason": null }, { - "name": "legalCompanyName", + "name": "vatId", "description": null, "type": { "kind": "SCALAR", @@ -1013,33 +921,33 @@ }, { "kind": "OBJECT", - "name": "ComponentGlobalFooterData", + "name": "ComponentGlobalFooter", "description": null, "fields": [ { - "name": "id", + "name": "description", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -1052,7 +960,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentGlobalFooterDatumInput", + "name": "ComponentGlobalFooterInput", "description": null, "fields": null, "inputFields": [ @@ -1079,23 +987,19 @@ "description": null, "fields": [ { - "name": "id", + "name": "cap", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Long", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "province", + "name": "city", "description": null, "args": [], "type": { @@ -1107,19 +1011,23 @@ "deprecationReason": null }, { - "name": "provinceInitials", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "province", "description": null, "args": [], "type": { @@ -1131,7 +1039,7 @@ "deprecationReason": null }, { - "name": "street", + "name": "provinceInitials", "description": null, "args": [], "type": { @@ -1143,7 +1051,7 @@ "deprecationReason": null }, { - "name": "city", + "name": "street", "description": null, "args": [], "type": { @@ -1155,12 +1063,12 @@ "deprecationReason": null }, { - "name": "cap", + "name": "type", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -1179,11 +1087,11 @@ "fields": null, "inputFields": [ { - "name": "province", + "name": "cap", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null }, "defaultValue": null, @@ -1191,7 +1099,7 @@ "deprecationReason": null }, { - "name": "provinceInitials", + "name": "city", "description": null, "type": { "kind": "SCALAR", @@ -1203,7 +1111,7 @@ "deprecationReason": null }, { - "name": "type", + "name": "province", "description": null, "type": { "kind": "SCALAR", @@ -1215,7 +1123,7 @@ "deprecationReason": null }, { - "name": "street", + "name": "provinceInitials", "description": null, "type": { "kind": "SCALAR", @@ -1227,7 +1135,7 @@ "deprecationReason": null }, { - "name": "city", + "name": "street", "description": null, "type": { "kind": "SCALAR", @@ -1239,11 +1147,11 @@ "deprecationReason": null }, { - "name": "cap", + "name": "type", "description": null, "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null }, "defaultValue": null, @@ -1319,7 +1227,7 @@ }, { "kind": "OBJECT", - "name": "ComponentMenuPageLink", + "name": "ComponentProjectBlockquoteBlock", "description": null, "fields": [ { @@ -1339,28 +1247,12 @@ "deprecationReason": null }, { - "name": "pageLinkName", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", + "name": "text", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Pages", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -1374,32 +1266,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentMenuPageLinkInput", + "name": "ComponentProjectBlockquoteBlockInput", "description": null, "fields": null, "inputFields": [ { - "name": "pageLinkName", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "link", + "name": "text", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -1413,7 +1289,7 @@ }, { "kind": "OBJECT", - "name": "ComponentSectionCardSection", + "name": "ComponentProjectImageBlock", "description": null, "fields": [ { @@ -1433,39 +1309,61 @@ "deprecationReason": null }, { - "name": "title", + "name": "image", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFile", "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ComponentProjectImageBlockInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "subtitle", + "name": "image", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentProjectParagraphBlock", + "description": null, + "fields": [ { - "name": "sections", + "name": "id", "description": null, "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ComponentBlocksCard", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, @@ -1473,7 +1371,7 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "text", "description": null, "args": [], "type": { @@ -1492,52 +1390,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentSectionCardSectionInput", + "name": "ComponentProjectParagraphBlockInput", "description": null, "fields": null, "inputFields": [ { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subtitle", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sections", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentBlocksCardInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectionTitle", + "name": "text", "description": null, "type": { "kind": "SCALAR", @@ -1555,7 +1413,7 @@ }, { "kind": "OBJECT", - "name": "ComponentSectionContactsSection", + "name": "ComponentSectionCardSection", "description": null, "fields": [ { @@ -1575,7 +1433,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "sectionTitle", "description": null, "args": [], "type": { @@ -1587,19 +1445,23 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "sections", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentBlocksCard", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "subtitle", "description": null, "args": [], "type": { @@ -1611,7 +1473,7 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "title", "description": null, "args": [], "type": { @@ -1621,22 +1483,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "socialBubbles", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ComponentBlocksSocialBubble", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -1646,12 +1492,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "ComponentSectionContactsSectionInput", + "name": "ComponentSectionCardSectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "title", + "name": "sectionTitle", "description": null, "type": { "kind": "SCALAR", @@ -1663,19 +1509,23 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "sections", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentBlocksCardInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", @@ -1687,7 +1537,7 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -1697,22 +1547,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "socialBubbles", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ComponentBlocksSocialBubbleInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "interfaces": null, @@ -1721,37 +1555,9 @@ }, { "kind": "OBJECT", - "name": "ComponentSectionFooterSection", + "name": "ComponentSectionContactsSection", "description": null, "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "email", "description": null, @@ -1765,19 +1571,23 @@ "deprecationReason": null }, { - "name": "copyright", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sharedCapital", + "name": "sectionTitle", "description": null, "args": [], "type": { @@ -1789,19 +1599,23 @@ "deprecationReason": null }, { - "name": "street", + "name": "socialBubbles", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ComponentBlocksSocialBubble", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "city", + "name": "subtitle", "description": null, "args": [], "type": { @@ -1813,24 +1627,12 @@ "deprecationReason": null }, { - "name": "vatNumber", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cap", + "name": "title", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -1842,24 +1644,14 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "Int", - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", - "name": "ComponentSectionFooterSectionInput", + "name": "ComponentSectionContactsSectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "description", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -1871,7 +1663,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "sectionTitle", "description": null, "type": { "kind": "SCALAR", @@ -1883,19 +1675,23 @@ "deprecationReason": null }, { - "name": "copyright", + "name": "socialBubbles", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ComponentBlocksSocialBubbleInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sharedCapital", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", @@ -1907,7 +1703,7 @@ "deprecationReason": null }, { - "name": "street", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -1917,57 +1713,33 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ComponentSectionHeroSection", + "description": null, + "fields": [ { - "name": "city", + "name": "areBubblesActive", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "vatNumber", + "name": "id", "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cap", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "ComponentSectionHeroSection", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], + "args": [], "type": { "kind": "NON_NULL", "name": null, @@ -1980,18 +1752,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "subtitle", "description": null, @@ -2005,12 +1765,12 @@ "deprecationReason": null }, { - "name": "areBubblesActive", + "name": "title", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -2022,16 +1782,6 @@ "enumValues": null, "possibleTypes": null }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": "The `Boolean` scalar type represents `true` or `false`.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, { "kind": "INPUT_OBJECT", "name": "ComponentSectionHeroSectionInput", @@ -2039,11 +1789,11 @@ "fields": null, "inputFields": [ { - "name": "title", + "name": "areBubblesActive", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -2063,11 +1813,11 @@ "deprecationReason": null }, { - "name": "areBubblesActive", + "name": "title", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2125,7 +1875,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "subtitle", "description": null, "args": [], "type": { @@ -2137,7 +1887,7 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "title", "description": null, "args": [], "type": { @@ -2185,7 +1935,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", @@ -2197,7 +1947,7 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -2235,19 +1985,7 @@ "deprecationReason": null }, { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subtitle", + "name": "sectionTitle", "description": null, "args": [], "type": { @@ -2275,7 +2013,19 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "subtitle", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", "description": null, "args": [], "type": { @@ -2299,19 +2049,7 @@ "fields": null, "inputFields": [ { - "name": "title", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "subtitle", + "name": "sectionTitle", "description": null, "type": { "kind": "SCALAR", @@ -2339,7 +2077,19 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "subtitle", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -2382,7 +2132,7 @@ "fields": null, "inputFields": [ { - "name": "name", + "name": "alternativeText", "description": null, "type": { "kind": "SCALAR", @@ -2394,7 +2144,7 @@ "deprecationReason": null }, { - "name": "alternativeText", + "name": "caption", "description": null, "type": { "kind": "SCALAR", @@ -2406,7 +2156,7 @@ "deprecationReason": null }, { - "name": "caption", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -2428,22 +2178,6 @@ "description": null, "fields": null, "inputFields": [ - { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "alternativeText", "description": null, @@ -2469,11 +2203,11 @@ "deprecationReason": null }, { - "name": "width", + "name": "created_by", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -2481,11 +2215,11 @@ "deprecationReason": null }, { - "name": "height", + "name": "ext", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2521,11 +2255,11 @@ "deprecationReason": null }, { - "name": "ext", + "name": "height", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -2549,23 +2283,7 @@ "deprecationReason": null }, { - "name": "size", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Float", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "url", + "name": "name", "description": null, "type": { "kind": "NON_NULL", @@ -2637,7 +2355,23 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "size", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_by", "description": null, "type": { "kind": "SCALAR", @@ -2649,11 +2383,27 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "url", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -2682,11 +2432,11 @@ "fields": null, "inputFields": [ { - "name": "email", + "name": "created_by", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -2694,7 +2444,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -2718,11 +2468,11 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null, @@ -2730,11 +2480,11 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "published_at", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null }, "defaultValue": null, @@ -2764,7 +2514,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "created_at", "description": null, "args": [], "type": { @@ -2772,7 +2522,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } }, @@ -2780,23 +2530,19 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "email", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, "args": [], "type": { @@ -2804,7 +2550,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } }, @@ -2812,7 +2558,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "message", "description": null, "args": [], "type": { @@ -2836,25 +2582,29 @@ "deprecationReason": null }, { - "name": "message", + "name": "published_at", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "published_at", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -2906,17 +2656,13 @@ "description": null, "fields": [ { - "name": "values", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FormMessages", - "ofType": null - } + "kind": "OBJECT", + "name": "FormMessagesAggregator", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -2934,13 +2680,17 @@ "deprecationReason": null }, { - "name": "aggregate", + "name": "values", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesAggregator", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FormMessages", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -2957,24 +2707,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -2992,24 +2742,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -3027,24 +2777,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -3062,24 +2812,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -3097,24 +2847,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -3132,24 +2882,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -3167,24 +2917,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "FormMessagesConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -3202,7 +2952,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "created_at", "description": null, "args": [], "type": { @@ -3210,7 +2960,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormMessagesConnectionId", + "name": "FormMessagesConnectionCreated_at", "ofType": null } }, @@ -3218,7 +2968,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "email", "description": null, "args": [], "type": { @@ -3226,7 +2976,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormMessagesConnectionCreated_at", + "name": "FormMessagesConnectionEmail", "ofType": null } }, @@ -3234,7 +2984,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, "args": [], "type": { @@ -3242,7 +2992,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormMessagesConnectionUpdated_at", + "name": "FormMessagesConnectionId", "ofType": null } }, @@ -3250,7 +3000,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "message", "description": null, "args": [], "type": { @@ -3258,7 +3008,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormMessagesConnectionEmail", + "name": "FormMessagesConnectionMessage", "ofType": null } }, @@ -3282,7 +3032,7 @@ "deprecationReason": null }, { - "name": "message", + "name": "published_at", "description": null, "args": [], "type": { @@ -3290,7 +3040,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormMessagesConnectionMessage", + "name": "FormMessagesConnectionPublished_at", "ofType": null } }, @@ -3298,7 +3048,7 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "updated_at", "description": null, "args": [], "type": { @@ -3306,7 +3056,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "FormMessagesConnectionPublished_at", + "name": "FormMessagesConnectionUpdated_at", "ofType": null } }, @@ -3325,17 +3075,13 @@ "description": null, "fields": [ { - "name": "id", + "name": "companyData", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "OBJECT", + "name": "ComponentGlobalCompanyData", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -3357,65 +3103,69 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "footer", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "OBJECT", + "name": "ComponentGlobalFooter", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "topbar", + "name": "id", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ComponentGlobalTopbar", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "companyData", + "name": "published_at", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "ComponentGlobalCompanyData", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "footer", + "name": "topbar", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "ComponentGlobalFooterData", + "name": "ComponentGlobalTopbar", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "published_at", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -3433,11 +3183,11 @@ "fields": null, "inputFields": [ { - "name": "topbar", + "name": "companyData", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentGlobalTopbarInput", + "name": "ComponentGlobalCompanyDatumInput", "ofType": null }, "defaultValue": null, @@ -3445,11 +3195,11 @@ "deprecationReason": null }, { - "name": "companyData", + "name": "created_by", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "ComponentGlobalCompanyDatumInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -3461,7 +3211,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "ComponentGlobalFooterDatumInput", + "name": "ComponentGlobalFooterInput", "ofType": null }, "defaultValue": null, @@ -3481,11 +3231,11 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "topbar", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "ComponentGlobalTopbarInput", "ofType": null }, "defaultValue": null, @@ -3515,17 +3265,13 @@ "description": null, "fields": [ { - "name": "id", + "name": "code", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -3547,7 +3293,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "id", "description": null, "args": [], "type": { @@ -3555,7 +3301,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } }, @@ -3575,13 +3321,17 @@ "deprecationReason": null }, { - "name": "code", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -3593,9 +3343,19 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "InputID", - "description": null, + "kind": "SCALAR", + "name": "ID", + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "InputID", + "description": null, "fields": null, "inputFields": [ { @@ -3619,6 +3379,16 @@ "enumValues": null, "possibleTypes": null }, + { + "kind": "SCALAR", + "name": "Int", + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, { "kind": "SCALAR", "name": "JSON", @@ -3636,7 +3406,7 @@ "fields": null, "inputFields": [ { - "name": "name", + "name": "code", "description": null, "type": { "kind": "SCALAR", @@ -3648,11 +3418,11 @@ "deprecationReason": null }, { - "name": "code", + "name": "created_by", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -3660,11 +3430,11 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "name", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -3704,7 +3474,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "created_at", "description": null, "args": [], "type": { @@ -3712,7 +3482,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "DateTime", "ofType": null } }, @@ -3720,7 +3490,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "id", "description": null, "args": [], "type": { @@ -3728,7 +3498,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null } }, @@ -3736,15 +3506,15 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "links", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "ComponentBlocksLink", "ofType": null } }, @@ -3752,21 +3522,94 @@ "deprecationReason": null }, { - "name": "links", + "name": "locale", "description": null, "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localizations", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "ComponentBlocksNavigationBlock", + "name": "Menu", "ofType": null } }, "isDeprecated": false, "deprecationReason": null }, + { + "name": "published_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "title", "description": null, @@ -3784,13 +3627,17 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -3842,17 +3689,13 @@ "description": null, "fields": [ { - "name": "values", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Menu", - "ofType": null - } + "kind": "OBJECT", + "name": "MenuAggregator", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -3870,13 +3713,17 @@ "deprecationReason": null }, { - "name": "aggregate", + "name": "values", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "MenuAggregator", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -3893,24 +3740,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "MenuConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "MenuConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -3927,6 +3774,18 @@ "name": "MenuConnectionId", "description": null, "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "MenuConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "key", "description": null, @@ -3938,7 +3797,18 @@ }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "MenuConnectionLocale", + "description": null, + "fields": [ { "name": "connection", "description": null, @@ -3950,6 +3820,18 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -3963,24 +3845,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "MenuConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "MenuConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -3998,24 +3880,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "MenuConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "MenuConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -4033,24 +3915,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "MenuConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "MenuConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -4068,7 +3950,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "created_at", "description": null, "args": [], "type": { @@ -4076,7 +3958,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MenuConnectionId", + "name": "MenuConnectionCreated_at", "ofType": null } }, @@ -4084,7 +3966,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "id", "description": null, "args": [], "type": { @@ -4092,7 +3974,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MenuConnectionCreated_at", + "name": "MenuConnectionId", "ofType": null } }, @@ -4100,7 +3982,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "locale", "description": null, "args": [], "type": { @@ -4108,7 +3990,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MenuConnectionUpdated_at", + "name": "MenuConnectionLocale", "ofType": null } }, @@ -4116,7 +3998,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "published_at", "description": null, "args": [], "type": { @@ -4124,7 +4006,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MenuConnectionTitle", + "name": "MenuConnectionPublished_at", "ofType": null } }, @@ -4132,7 +4014,7 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "title", "description": null, "args": [], "type": { @@ -4140,7 +4022,23 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MenuConnectionPublished_at", + "name": "MenuConnectionTitle", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MenuConnectionUpdated_at", "ofType": null } }, @@ -4159,6 +4057,18 @@ "description": null, "fields": null, "inputFields": [ + { + "name": "created_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "links", "description": null, @@ -4167,7 +4077,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ComponentBlocksNavigationBlockInput", + "name": "ComponentBlocksLinkInput", "ofType": null } }, @@ -4176,7 +4086,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "locale", "description": null, "type": { "kind": "SCALAR", @@ -4187,6 +4097,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "localizations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "published_at", "description": null, @@ -4200,12 +4126,16 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "title", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -4239,600 +4169,700 @@ "possibleTypes": [ { "kind": "OBJECT", - "name": "UsersPermissionsMe", + "name": "ComponentBlocksCard", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsMeRole", + "name": "ComponentBlocksLink", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsLoginPayload", + "name": "ComponentBlocksSingleFeature", "ofType": null }, { "kind": "OBJECT", - "name": "UserPermissionsPasswordPayload", + "name": "ComponentBlocksSocialBubble", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessages", + "name": "ComponentGlobalCompanyData", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnection", + "name": "ComponentGlobalFooter", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesAggregator", + "name": "ComponentGlobalHeadquarter", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesGroupBy", + "name": "ComponentGlobalTopbar", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionId", + "name": "ComponentProjectBlockquoteBlock", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionCreated_at", + "name": "ComponentProjectImageBlock", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionUpdated_at", + "name": "ComponentProjectParagraphBlock", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionEmail", + "name": "ComponentSectionCardSection", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionName", + "name": "ComponentSectionContactsSection", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionMessage", + "name": "ComponentSectionHeroSection", "ofType": null }, { "kind": "OBJECT", - "name": "FormMessagesConnectionPublished_at", + "name": "ComponentSectionSimpleSection", "ofType": null }, { "kind": "OBJECT", - "name": "createFormMessagePayload", + "name": "ComponentSectionSingleFeatureSection", "ofType": null }, { "kind": "OBJECT", - "name": "updateFormMessagePayload", + "name": "FormMessages", "ofType": null }, { "kind": "OBJECT", - "name": "deleteFormMessagePayload", + "name": "FormMessagesAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "Global", + "name": "FormMessagesConnection", "ofType": null }, { "kind": "OBJECT", - "name": "updateGlobalPayload", + "name": "FormMessagesConnectionCreated_at", "ofType": null }, { "kind": "OBJECT", - "name": "deleteGlobalPayload", + "name": "FormMessagesConnectionEmail", "ofType": null }, { "kind": "OBJECT", - "name": "Menu", + "name": "FormMessagesConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "MenuConnection", + "name": "FormMessagesConnectionMessage", "ofType": null }, { "kind": "OBJECT", - "name": "MenuAggregator", + "name": "FormMessagesConnectionName", "ofType": null }, { "kind": "OBJECT", - "name": "MenuGroupBy", + "name": "FormMessagesConnectionPublished_at", "ofType": null }, { "kind": "OBJECT", - "name": "MenuConnectionId", + "name": "FormMessagesConnectionUpdated_at", "ofType": null }, { "kind": "OBJECT", - "name": "MenuConnectionCreated_at", + "name": "FormMessagesGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "MenuConnectionUpdated_at", + "name": "Global", "ofType": null }, { "kind": "OBJECT", - "name": "MenuConnectionTitle", + "name": "I18NLocale", "ofType": null }, { "kind": "OBJECT", - "name": "MenuConnectionPublished_at", + "name": "Menu", "ofType": null }, { "kind": "OBJECT", - "name": "createMenuPayload", + "name": "MenuAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "updateMenuPayload", + "name": "MenuConnection", "ofType": null }, { "kind": "OBJECT", - "name": "deleteMenuPayload", + "name": "MenuConnectionCreated_at", "ofType": null }, { "kind": "OBJECT", - "name": "Pages", + "name": "MenuConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnection", + "name": "MenuConnectionLocale", "ofType": null }, { "kind": "OBJECT", - "name": "PagesAggregator", + "name": "MenuConnectionPublished_at", "ofType": null }, { "kind": "OBJECT", - "name": "PagesGroupBy", + "name": "MenuConnectionTitle", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionId", + "name": "MenuConnectionUpdated_at", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionCreated_at", + "name": "MenuGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionUpdated_at", + "name": "Page", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionTitle", + "name": "PageAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionPath", + "name": "PageConnection", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionLocale", + "name": "PageConnectionCreated_at", "ofType": null }, { "kind": "OBJECT", - "name": "PagesConnectionPublished_at", + "name": "PageConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "createPagePayload", + "name": "PageConnectionLocale", "ofType": null }, { "kind": "OBJECT", - "name": "updatePagePayload", + "name": "PageConnectionPath", "ofType": null }, { "kind": "OBJECT", - "name": "deletePagePayload", + "name": "PageConnectionPublished_at", "ofType": null }, { "kind": "OBJECT", - "name": "I18NLocale", + "name": "PageConnectionTitle", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFile", + "name": "PageConnectionUpdated_at", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnection", + "name": "PageGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileAggregator", + "name": "Project", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileAggregatorSum", + "name": "ProjectAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileAggregatorAvg", + "name": "ProjectConnection", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileAggregatorMin", + "name": "ProjectConnectionCompanyName", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileAggregatorMax", + "name": "ProjectConnectionCreated_at", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileGroupBy", + "name": "ProjectConnectionDescription", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionId", + "name": "ProjectConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionCreated_at", + "name": "ProjectConnectionImage", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionUpdated_at", + "name": "ProjectConnectionLinkLabel", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionName", + "name": "ProjectConnectionLinkPath", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionAlternativeText", + "name": "ProjectConnectionLocale", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionCaption", + "name": "ProjectConnectionPath", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionWidth", + "name": "ProjectConnectionProjectType", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionHeight", + "name": "ProjectConnectionPublished_at", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionFormats", + "name": "ProjectConnectionUpdated_at", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionHash", + "name": "ProjectGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionExt", + "name": "UploadFile", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionMime", + "name": "UploadFileAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionSize", + "name": "UploadFileAggregatorAvg", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionUrl", + "name": "UploadFileAggregatorMax", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionPreviewUrl", + "name": "UploadFileAggregatorMin", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionProvider", + "name": "UploadFileAggregatorSum", "ofType": null }, { "kind": "OBJECT", - "name": "UploadFileConnectionProvider_metadata", + "name": "UploadFileConnection", "ofType": null }, { "kind": "OBJECT", - "name": "deleteFilePayload", + "name": "UploadFileConnectionAlternativeText", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsPermission", + "name": "UploadFileConnectionCaption", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRole", + "name": "UploadFileConnectionCreated_at", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnection", + "name": "UploadFileConnectionExt", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleAggregator", + "name": "UploadFileConnectionFormats", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleGroupBy", + "name": "UploadFileConnectionHash", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionId", + "name": "UploadFileConnectionHeight", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionName", + "name": "UploadFileConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionDescription", + "name": "UploadFileConnectionMime", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionType", + "name": "UploadFileConnectionName", "ofType": null }, { "kind": "OBJECT", - "name": "createRolePayload", + "name": "UploadFileConnectionPreviewUrl", "ofType": null }, { "kind": "OBJECT", - "name": "updateRolePayload", + "name": "UploadFileConnectionProvider", "ofType": null }, { "kind": "OBJECT", - "name": "deleteRolePayload", + "name": "UploadFileConnectionProvider_metadata", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUser", + "name": "UploadFileConnectionSize", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "name": "UploadFileConnectionUpdated_at", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserAggregator", + "name": "UploadFileConnectionUrl", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserGroupBy", + "name": "UploadFileConnectionWidth", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionId", + "name": "UploadFileGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionCreated_at", + "name": "UserPermissionsPasswordPayload", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionUpdated_at", + "name": "UsersPermissionsLoginPayload", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionUsername", + "name": "UsersPermissionsMe", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionEmail", + "name": "UsersPermissionsMeRole", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionProvider", + "name": "UsersPermissionsPermission", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionConfirmed", + "name": "UsersPermissionsRole", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionBlocked", + "name": "UsersPermissionsRoleAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionRole", + "name": "UsersPermissionsRoleConnection", "ofType": null }, { "kind": "OBJECT", - "name": "createUserPayload", + "name": "UsersPermissionsRoleConnectionDescription", "ofType": null }, { "kind": "OBJECT", - "name": "updateUserPayload", + "name": "UsersPermissionsRoleConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "deleteUserPayload", + "name": "UsersPermissionsRoleConnectionName", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentBlocksCard", + "name": "UsersPermissionsRoleConnectionType", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentBlocksNavigationBlock", + "name": "UsersPermissionsRoleGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentBlocksSingleFeature", + "name": "UsersPermissionsUser", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentBlocksSocialBubble", + "name": "UsersPermissionsUserAggregator", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentGlobalBottomBar", + "name": "UsersPermissionsUserConnection", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentGlobalCompanyData", + "name": "UsersPermissionsUserConnectionBlocked", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentGlobalFooterData", + "name": "UsersPermissionsUserConnectionConfirmed", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentGlobalHeadquarter", + "name": "UsersPermissionsUserConnectionCreated_at", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentGlobalTopbar", + "name": "UsersPermissionsUserConnectionEmail", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentMenuPageLink", + "name": "UsersPermissionsUserConnectionId", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionCardSection", + "name": "UsersPermissionsUserConnectionProvider", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionContactsSection", + "name": "UsersPermissionsUserConnectionRole", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionFooterSection", + "name": "UsersPermissionsUserConnectionUpdated_at", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionHeroSection", + "name": "UsersPermissionsUserConnectionUsername", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionSimpleSection", + "name": "UsersPermissionsUserGroupBy", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionSingleFeatureSection", + "name": "createFormMessagePayload", "ofType": null - } - ] - }, - { - "kind": "OBJECT", - "name": "Mutation", - "description": null, + }, + { + "kind": "OBJECT", + "name": "createMenuPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "createPagePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "createProjectPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "createRolePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "createUserPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteFilePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteFormMessagePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteGlobalPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteMenuPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deletePagePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteProjectPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteRolePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "deleteUserPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updateFormMessagePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updateGlobalPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updateMenuPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updatePagePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updateProjectPayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updateRolePayload", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "updateUserPayload", + "ofType": null + } + ] + }, + { + "kind": "OBJECT", + "name": "Mutation", + "description": null, "fields": [ { "name": "createFormMessage", @@ -4860,7 +4890,7 @@ "deprecationReason": null }, { - "name": "updateFormMessage", + "name": "createMenu", "description": null, "args": [ { @@ -4868,7 +4898,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "updateFormMessageInput", + "name": "createMenuInput", "ofType": null }, "defaultValue": null, @@ -4878,23 +4908,27 @@ ], "type": { "kind": "OBJECT", - "name": "updateFormMessagePayload", + "name": "createMenuPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteFormMessage", + "name": "createMenuLocalization", "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "deleteFormMessageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "updateMenuInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -4902,15 +4936,19 @@ } ], "type": { - "kind": "OBJECT", - "name": "deleteFormMessagePayload", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateGlobal", + "name": "createPage", "description": null, "args": [ { @@ -4918,7 +4956,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "updateGlobalInput", + "name": "createPageInput", "ofType": null }, "defaultValue": null, @@ -4928,26 +4966,47 @@ ], "type": { "kind": "OBJECT", - "name": "updateGlobalPayload", + "name": "createPagePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteGlobal", + "name": "createPageLocalization", "description": null, - "args": [], + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "updatePageInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "OBJECT", - "name": "deleteGlobalPayload", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createMenu", + "name": "createProject", "description": null, "args": [ { @@ -4955,7 +5014,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "createMenuInput", + "name": "createProjectInput", "ofType": null }, "defaultValue": null, @@ -4965,23 +5024,27 @@ ], "type": { "kind": "OBJECT", - "name": "createMenuPayload", + "name": "createProjectPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateMenu", + "name": "createProjectLocalization", "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "updateMenuInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "updateProjectInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -4989,23 +5052,27 @@ } ], "type": { - "kind": "OBJECT", - "name": "updateMenuPayload", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteMenu", - "description": null, + "name": "createRole", + "description": "Create a new role", "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "deleteMenuInput", + "name": "createRoleInput", "ofType": null }, "defaultValue": null, @@ -5015,22 +5082,22 @@ ], "type": { "kind": "OBJECT", - "name": "deleteMenuPayload", + "name": "createRolePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createPage", - "description": null, + "name": "createUser", + "description": "Create a new user", "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "createPageInput", + "name": "createUserInput", "ofType": null }, "defaultValue": null, @@ -5040,22 +5107,22 @@ ], "type": { "kind": "OBJECT", - "name": "createPagePayload", + "name": "createUserPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updatePage", - "description": null, + "name": "deleteFile", + "description": "Delete one file", "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "updatePageInput", + "name": "deleteFileInput", "ofType": null }, "defaultValue": null, @@ -5065,14 +5132,14 @@ ], "type": { "kind": "OBJECT", - "name": "updatePagePayload", + "name": "deleteFilePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deletePage", + "name": "deleteFormMessage", "description": null, "args": [ { @@ -5080,7 +5147,7 @@ "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "deletePageInput", + "name": "deleteFormMessageInput", "ofType": null }, "defaultValue": null, @@ -5090,22 +5157,34 @@ ], "type": { "kind": "OBJECT", - "name": "deletePagePayload", + "name": "deleteFormMessagePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteFile", - "description": "Delete one file", + "name": "deleteGlobal", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "deleteGlobalPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deleteMenu", + "description": null, "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "deleteFileInput", + "name": "deleteMenuInput", "ofType": null }, "defaultValue": null, @@ -5115,22 +5194,22 @@ ], "type": { "kind": "OBJECT", - "name": "deleteFilePayload", + "name": "deleteMenuPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createRole", - "description": "Create a new role", + "name": "deletePage", + "description": null, "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "createRoleInput", + "name": "deletePageInput", "ofType": null }, "defaultValue": null, @@ -5140,22 +5219,22 @@ ], "type": { "kind": "OBJECT", - "name": "createRolePayload", + "name": "deletePagePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateRole", - "description": "Update an existing role", + "name": "deleteProject", + "description": null, "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "updateRoleInput", + "name": "deleteProjectInput", "ofType": null }, "defaultValue": null, @@ -5165,7 +5244,7 @@ ], "type": { "kind": "OBJECT", - "name": "updateRolePayload", + "name": "deleteProjectPayload", "ofType": null }, "isDeprecated": false, @@ -5197,15 +5276,15 @@ "deprecationReason": null }, { - "name": "createUser", - "description": "Create a new user", + "name": "deleteUser", + "description": "Delete an existing user", "args": [ { "name": "input", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "createUserInput", + "name": "deleteUserInput", "ofType": null }, "defaultValue": null, @@ -5215,23 +5294,27 @@ ], "type": { "kind": "OBJECT", - "name": "createUserPayload", + "name": "deleteUserPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updateUser", - "description": "Update an existing user", + "name": "emailConfirmation", + "description": null, "args": [ { - "name": "input", + "name": "confirmation", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "updateUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -5240,23 +5323,27 @@ ], "type": { "kind": "OBJECT", - "name": "updateUserPayload", + "name": "UsersPermissionsLoginPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "deleteUser", - "description": "Delete an existing user", + "name": "forgotPassword", + "description": null, "args": [ { - "name": "input", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "deleteUserInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -5265,14 +5352,14 @@ ], "type": { "kind": "OBJECT", - "name": "deleteUserPayload", + "name": "UserPermissionsPasswordPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "createPageLocalization", + "name": "login", "description": null, "args": [ { @@ -5283,7 +5370,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "updatePageInput", + "name": "UsersPermissionsLoginInput", "ofType": null } }, @@ -5297,7 +5384,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Pages", + "name": "UsersPermissionsLoginPayload", "ofType": null } }, @@ -5305,15 +5392,15 @@ "deprecationReason": null }, { - "name": "upload", + "name": "multipleUpload", "description": null, "args": [ { - "name": "refId", + "name": "field", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -5321,19 +5408,27 @@ "deprecationReason": null }, { - "name": "ref", + "name": "files", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Upload", + "ofType": null + } + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "field", + "name": "ref", "description": null, "type": { "kind": "SCALAR", @@ -5345,11 +5440,11 @@ "deprecationReason": null }, { - "name": "source", + "name": "refId", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -5357,26 +5452,47 @@ "deprecationReason": null }, { - "name": "info", + "name": "source", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "FileInfoInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadFile", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "register", + "description": null, + "args": [ { - "name": "file", + "name": "input", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Upload", + "kind": "INPUT_OBJECT", + "name": "UsersPermissionsRegisterInput", "ofType": null } }, @@ -5390,7 +5506,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFile", + "name": "UsersPermissionsLoginPayload", "ofType": null } }, @@ -5398,71 +5514,51 @@ "deprecationReason": null }, { - "name": "multipleUpload", + "name": "resetPassword", "description": null, "args": [ { - "name": "refId", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "ref", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "field", + "name": "code", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "source", + "name": "password", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "files", + "name": "passwordConfirmation", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Upload", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, "defaultValue": null, @@ -5471,17 +5567,9 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UploadFile", - "ofType": null - } - } + "kind": "OBJECT", + "name": "UsersPermissionsLoginPayload", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -5536,20 +5624,16 @@ "deprecationReason": null }, { - "name": "login", + "name": "updateFormMessage", "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UsersPermissionsLoginInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "updateFormMessageInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -5557,32 +5641,24 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsersPermissionsLoginPayload", - "ofType": null - } + "kind": "OBJECT", + "name": "updateFormMessagePayload", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "register", + "name": "updateGlobal", "description": null, "args": [ { "name": "input", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UsersPermissionsRegisterInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "updateGlobalInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -5590,32 +5666,24 @@ } ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsersPermissionsLoginPayload", - "ofType": null - } + "kind": "OBJECT", + "name": "updateGlobalPayload", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "forgotPassword", + "name": "updateMenu", "description": null, "args": [ { - "name": "email", + "name": "input", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "updateMenuInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -5624,59 +5692,73 @@ ], "type": { "kind": "OBJECT", - "name": "UserPermissionsPasswordPayload", + "name": "updateMenuPayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "resetPassword", + "name": "updatePage", "description": null, "args": [ { - "name": "password", + "name": "input", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "updatePageInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "updatePagePayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateProject", + "description": null, + "args": [ { - "name": "passwordConfirmation", + "name": "input", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "updateProjectInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "type": { + "kind": "OBJECT", + "name": "updateProjectPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updateRole", + "description": "Update an existing role", + "args": [ { - "name": "code", + "name": "input", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "updateRoleInput", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -5685,37 +5767,126 @@ ], "type": { "kind": "OBJECT", - "name": "UsersPermissionsLoginPayload", + "name": "updateRolePayload", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "emailConfirmation", + "name": "updateUser", + "description": "Update an existing user", + "args": [ + { + "name": "input", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "updateUserInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "updateUserPayload", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "upload", "description": null, "args": [ { - "name": "confirmation", + "name": "field", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "file", "description": null, "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Upload", "ofType": null } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "info", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FileInfoInput", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ref", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "refId", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsLoginPayload", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadFile", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -5727,143 +5898,153 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "PageInput", + "kind": "OBJECT", + "name": "Page", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "title", + "name": "created_at", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "path", + "name": "id", "description": null, + "args": [], "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "sections", + "name": "locale", "description": null, + "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "PagesSectionsDynamicZoneInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "localizations", "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Page", "ofType": null } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "locale", + "name": "path", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "published_at", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "DateTime", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_by", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_by", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Pages", - "description": null, - "fields": [ - { - "name": "id", + "name": "sections", "description": null, "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "UNION", + "name": "PageSectionsDynamicZone", "ofType": null } }, @@ -5871,7 +6052,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "title", "description": null, "args": [], "type": { @@ -5879,7 +6060,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null } }, @@ -5901,138 +6082,87 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "title", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PageAggregator", + "description": null, + "fields": [ { - "name": "path", + "name": "count", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "sections", + "name": "totalCount", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "UNION", - "name": "PagesSectionsDynamicZone", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PageConnection", + "description": null, + "fields": [ { - "name": "locale", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageAggregator", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "published_at", + "name": "groupBy", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "PageGroupBy", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "localizations", + "name": "values", "description": null, - "args": [ - { - "name": "sort", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { "kind": "LIST", "name": null, "ofType": { "kind": "OBJECT", - "name": "Pages", + "name": "Page", "ofType": null } }, @@ -6047,28 +6177,28 @@ }, { "kind": "OBJECT", - "name": "PagesAggregator", + "name": "PageConnectionCreated_at", "description": null, "fields": [ { - "name": "count", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "key", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -6082,44 +6212,28 @@ }, { "kind": "OBJECT", - "name": "PagesConnection", + "name": "PageConnectionId", "description": null, "fields": [ { - "name": "values", - "description": null, - "args": [], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pages", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "groupBy", + "name": "connection", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "PagesGroupBy", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "aggregate", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "PagesAggregator", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -6133,28 +6247,28 @@ }, { "kind": "OBJECT", - "name": "PagesConnectionCreated_at", + "name": "PageConnectionLocale", "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "PagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -6168,28 +6282,28 @@ }, { "kind": "OBJECT", - "name": "PagesConnectionId", + "name": "PageConnectionPath", "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "PagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -6203,28 +6317,28 @@ }, { "kind": "OBJECT", - "name": "PagesConnectionLocale", + "name": "PageConnectionPublished_at", "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "PagesConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -6238,28 +6352,28 @@ }, { "kind": "OBJECT", - "name": "PagesConnectionPath", + "name": "PageConnectionTitle", "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "PagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -6273,28 +6387,28 @@ }, { "kind": "OBJECT", - "name": "PagesConnectionPublished_at", + "name": "PageConnectionUpdated_at", "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "PageConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "PagesConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -6308,81 +6422,43 @@ }, { "kind": "OBJECT", - "name": "PagesConnectionTitle", + "name": "PageGroupBy", "description": null, "fields": [ { - "name": "key", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageConnectionCreated_at", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PagesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PagesConnectionUpdated_at", - "description": null, - "fields": [ - { - "name": "key", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageConnectionId", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "PagesConnection", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PagesGroupBy", - "description": null, - "fields": [ - { - "name": "id", + "name": "locale", "description": null, "args": [], "type": { @@ -6390,7 +6466,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PagesConnectionId", + "name": "PageConnectionLocale", "ofType": null } }, @@ -6398,7 +6474,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "path", "description": null, "args": [], "type": { @@ -6406,7 +6482,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PagesConnectionCreated_at", + "name": "PageConnectionPath", "ofType": null } }, @@ -6414,7 +6490,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "published_at", "description": null, "args": [], "type": { @@ -6422,7 +6498,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PagesConnectionUpdated_at", + "name": "PageConnectionPublished_at", "ofType": null } }, @@ -6438,7 +6514,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PagesConnectionTitle", + "name": "PageConnectionTitle", "ofType": null } }, @@ -6446,7 +6522,7 @@ "deprecationReason": null }, { - "name": "path", + "name": "updated_at", "description": null, "args": [], "type": { @@ -6454,54 +6530,141 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "PagesConnectionPath", + "name": "PageConnectionUpdated_at", "ofType": null } }, "isDeprecated": false, "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PageInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "created_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { "name": "locale", "description": null, - "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localizations", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PagesConnectionLocale", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "published_at", "description": null, - "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sections", + "description": null, "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PagesConnectionPublished_at", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "PageSectionsDynamicZoneInput", + "ofType": null + } } }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "title", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "UNION", - "name": "PagesSectionsDynamicZone", + "name": "PageSectionsDynamicZone", "description": null, "fields": null, "inputFields": null, @@ -6515,30 +6678,30 @@ }, { "kind": "OBJECT", - "name": "ComponentSectionHeroSection", + "name": "ComponentSectionContactsSection", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionSingleFeatureSection", + "name": "ComponentSectionHeroSection", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionContactsSection", + "name": "ComponentSectionSimpleSection", "ofType": null }, { "kind": "OBJECT", - "name": "ComponentSectionSimpleSection", + "name": "ComponentSectionSingleFeatureSection", "ofType": null } ] }, { "kind": "SCALAR", - "name": "PagesSectionsDynamicZoneInput", - "description": "Input type for dynamic zone sections of Pages", + "name": "PageSectionsDynamicZoneInput", + "description": "Input type for dynamic zone sections of Page", "fields": null, "inputFields": null, "interfaces": null, @@ -6546,145 +6709,48 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "PublicationState", + "kind": "OBJECT", + "name": "Project", "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + "fields": [ { - "name": "LIVE", + "name": "blocks", "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "UNION", + "name": "ProjectBlocksDynamicZone", + "ofType": null + } + }, "isDeprecated": false, "deprecationReason": null }, { - "name": "PREVIEW", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ - { - "name": "formMessage", + "name": "companyName", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicationState", - "description": null, - "type": { - "kind": "ENUM", - "name": "PublicationState", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessages", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "formMessages", + "name": "created_at", "description": null, - "args": [ - { - "name": "sort", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicationState", - "description": null, - "type": { - "kind": "ENUM", - "name": "PublicationState", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "FormMessages", + "kind": "SCALAR", + "name": "DateTime", "ofType": null } }, @@ -6692,142 +6758,91 @@ "deprecationReason": null }, { - "name": "formMessagesConnection", + "name": "description", "description": null, - "args": [ - { - "name": "sort", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "start", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessagesConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "global", + "name": "id", "description": null, - "args": [ - { - "name": "publicationState", - "description": null, - "type": { - "kind": "ENUM", - "name": "PublicationState", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", + "description": null, + "args": [], "type": { "kind": "OBJECT", - "name": "Global", + "name": "UploadFile", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "menu", + "name": "linkLabel", "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "publicationState", - "description": null, - "type": { - "kind": "ENUM", - "name": "PublicationState", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], + "args": [], "type": { - "kind": "OBJECT", - "name": "Menu", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "menus", + "name": "linkPath", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localizations", "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -6835,11 +6850,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -6869,18 +6884,6 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "publicationState", - "description": null, - "type": { - "kind": "ENUM", - "name": "PublicationState", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null } ], "type": { @@ -6888,7 +6891,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Menu", + "name": "Project", "ofType": null } }, @@ -6896,25 +6899,1507 @@ "deprecationReason": null }, { - "name": "menusConnection", + "name": "path", "description": null, - "args": [ - { - "name": "sort", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "limit", - "description": null, - "type": { + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectType", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "published_at", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectAggregator", + "description": null, + "fields": [ + { + "name": "count", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "totalCount", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "UNION", + "name": "ProjectBlocksDynamicZone", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "ComponentProjectBlockquoteBlock", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ComponentProjectImageBlock", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "ComponentProjectParagraphBlock", + "ofType": null + } + ] + }, + { + "kind": "SCALAR", + "name": "ProjectBlocksDynamicZoneInput", + "description": "Input type for dynamic zone blocks of Project", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnection", + "description": null, + "fields": [ + { + "name": "aggregate", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectAggregator", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "groupBy", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectGroupBy", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "values", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionCompanyName", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionCreated_at", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionDescription", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionId", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionImage", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionLinkLabel", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionLinkPath", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionLocale", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionPath", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionProjectType", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionPublished_at", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectConnectionUpdated_at", + "description": null, + "fields": [ + { + "name": "connection", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "ProjectConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "key", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "ProjectGroupBy", + "description": null, + "fields": [ + { + "name": "companyName", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionCompanyName", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_at", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionCreated_at", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionDescription", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionId", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionImage", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkLabel", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionLinkLabel", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkPath", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionLinkPath", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionLocale", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionPath", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectType", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionProjectType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "published_at", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionPublished_at", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ProjectConnectionUpdated_at", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "ProjectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "blocks", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ProjectBlocksDynamicZoneInput", + "ofType": null + } + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "companyName", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "created_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "description", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "image", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkLabel", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "linkPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "localizations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "projectType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "published_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PublicationState", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "LIVE", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "PREVIEW", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "files", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicationState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublicationState", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadFile", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "filesConnection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "UploadFileConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formMessage", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicationState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublicationState", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FormMessages", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formMessages", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicationState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublicationState", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FormMessages", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "formMessagesConnection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "FormMessagesConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "global", + "description": null, + "args": [ + { + "name": "publicationState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublicationState", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Global", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "me", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UsersPermissionsMe", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menu", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicationState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublicationState", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menus", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "publicationState", + "description": null, + "type": { + "kind": "ENUM", + "name": "PublicationState", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "start", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "menusConnection", + "description": null, + "args": [ + { + "name": "limit", + "description": null, + "type": { "kind": "SCALAR", "name": "Int", "ofType": null @@ -6923,6 +8408,30 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sort", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "start", "description": null, @@ -6991,7 +8500,7 @@ ], "type": { "kind": "OBJECT", - "name": "Pages", + "name": "Page", "ofType": null }, "isDeprecated": false, @@ -7002,11 +8511,11 @@ "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7014,11 +8523,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "locale", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7026,11 +8535,11 @@ "deprecationReason": null }, { - "name": "start", + "name": "publicationState", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "PublicationState", "ofType": null }, "defaultValue": null, @@ -7038,11 +8547,11 @@ "deprecationReason": null }, { - "name": "where", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7050,11 +8559,11 @@ "deprecationReason": null }, { - "name": "publicationState", + "name": "start", "description": null, "type": { - "kind": "ENUM", - "name": "PublicationState", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7062,11 +8571,11 @@ "deprecationReason": null }, { - "name": "locale", + "name": "where", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null, @@ -7079,7 +8588,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Pages", + "name": "Page", "ofType": null } }, @@ -7091,7 +8600,19 @@ "description": null, "args": [ { - "name": "sort", + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", "description": null, "type": { "kind": "SCALAR", @@ -7103,11 +8624,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7137,13 +8658,42 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + } + ], + "type": { + "kind": "OBJECT", + "name": "PageConnection", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "project", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null }, { - "name": "locale", + "name": "publicationState", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "PublicationState", "ofType": null }, "defaultValue": null, @@ -7153,18 +8703,30 @@ ], "type": { "kind": "OBJECT", - "name": "PagesConnection", + "name": "Project", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "files", + "name": "projects", "description": null, "args": [ { - "name": "sort", + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", "description": null, "type": { "kind": "SCALAR", @@ -7176,11 +8738,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "publicationState", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "PublicationState", "ofType": null }, "defaultValue": null, @@ -7188,11 +8750,11 @@ "deprecationReason": null }, { - "name": "start", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7200,11 +8762,11 @@ "deprecationReason": null }, { - "name": "where", + "name": "start", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7212,11 +8774,11 @@ "deprecationReason": null }, { - "name": "publicationState", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "PublicationState", + "kind": "SCALAR", + "name": "JSON", "ofType": null }, "defaultValue": null, @@ -7229,7 +8791,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFile", + "name": "Project", "ofType": null } }, @@ -7237,11 +8799,23 @@ "deprecationReason": null }, { - "name": "filesConnection", + "name": "projectsConnection", "description": null, "args": [ { - "name": "sort", + "name": "limit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", "description": null, "type": { "kind": "SCALAR", @@ -7253,11 +8827,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7291,7 +8865,7 @@ ], "type": { "kind": "OBJECT", - "name": "UploadFileConnection", + "name": "ProjectConnection", "ofType": null }, "isDeprecated": false, @@ -7343,11 +8917,11 @@ "description": "Retrieve all the existing roles. You can't apply filters on this query.", "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7355,11 +8929,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "publicationState", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "PublicationState", "ofType": null }, "defaultValue": null, @@ -7367,11 +8941,11 @@ "deprecationReason": null }, { - "name": "start", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7379,11 +8953,11 @@ "deprecationReason": null }, { - "name": "where", + "name": "start", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7391,11 +8965,11 @@ "deprecationReason": null }, { - "name": "publicationState", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "PublicationState", + "kind": "SCALAR", + "name": "JSON", "ofType": null }, "defaultValue": null, @@ -7420,11 +8994,11 @@ "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7432,11 +9006,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7522,11 +9096,11 @@ "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7534,11 +9108,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "publicationState", "description": null, "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "ENUM", + "name": "PublicationState", "ofType": null }, "defaultValue": null, @@ -7546,11 +9120,11 @@ "deprecationReason": null }, { - "name": "start", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7558,11 +9132,11 @@ "deprecationReason": null }, { - "name": "where", + "name": "start", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7570,11 +9144,11 @@ "deprecationReason": null }, { - "name": "publicationState", + "name": "where", "description": null, "type": { - "kind": "ENUM", - "name": "PublicationState", + "kind": "SCALAR", + "name": "JSON", "ofType": null }, "defaultValue": null, @@ -7599,11 +9173,11 @@ "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -7611,11 +9185,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7654,18 +9228,6 @@ }, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "me", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "UsersPermissionsMe", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null } ], "inputFields": null, @@ -7680,27 +9242,11 @@ "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "description", + "name": "created_by", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -7708,7 +9254,7 @@ "deprecationReason": null }, { - "name": "type", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -7720,14 +9266,14 @@ "deprecationReason": null }, { - "name": "permissions", + "name": "name", "description": null, "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, @@ -7736,7 +9282,7 @@ "deprecationReason": null }, { - "name": "users", + "name": "permissions", "description": null, "type": { "kind": "LIST", @@ -7752,11 +9298,11 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "type", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -7774,6 +9320,22 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "users", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null } ], "interfaces": null, @@ -7782,93 +9344,39 @@ }, { "kind": "SCALAR", - "name": "Time", - "description": "A time string with format: HH:mm:ss.SSS", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Upload", - "description": "The `Upload` scalar type represents a file upload.", + "name": "String", + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", "fields": null, "inputFields": null, "interfaces": null, "enumValues": null, "possibleTypes": null }, - { - "kind": "OBJECT", - "name": "UploadFile", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "created_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "updated_at", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, + { + "kind": "SCALAR", + "name": "Time", + "description": "A time string with format: HH:mm:ss.SSS", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Upload", + "description": "The `Upload` scalar type represents a file upload.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "UploadFile", + "description": null, + "fields": [ { "name": "alternativeText", "description": null, @@ -7894,24 +9402,28 @@ "deprecationReason": null }, { - "name": "width", + "name": "created_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "height", + "name": "ext", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -7946,19 +9458,19 @@ "deprecationReason": null }, { - "name": "ext", + "name": "height", "description": null, "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "mime", + "name": "id", "description": null, "args": [], "type": { @@ -7966,7 +9478,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -7974,7 +9486,7 @@ "deprecationReason": null }, { - "name": "size", + "name": "mime", "description": null, "args": [], "type": { @@ -7982,7 +9494,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Float", + "name": "String", "ofType": null } }, @@ -7990,7 +9502,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "name", "description": null, "args": [], "type": { @@ -8050,11 +9562,11 @@ "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -8062,11 +9574,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -8109,6 +9621,66 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "size", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_at", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "url", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "width", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -8122,19 +9694,19 @@ "description": null, "fields": [ { - "name": "count", + "name": "avg", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "UploadFileAggregatorAvg", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "totalCount", + "name": "count", "description": null, "args": [], "type": { @@ -8146,48 +9718,48 @@ "deprecationReason": null }, { - "name": "sum", + "name": "max", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "UploadFileAggregatorSum", + "name": "UploadFileAggregatorMax", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "avg", + "name": "min", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "UploadFileAggregatorAvg", + "name": "UploadFileAggregatorMin", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "min", + "name": "sum", "description": null, "args": [], "type": { "kind": "OBJECT", - "name": "UploadFileAggregatorMin", + "name": "UploadFileAggregatorSum", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "max", + "name": "totalCount", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileAggregatorMax", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -8205,7 +9777,7 @@ "description": null, "fields": [ { - "name": "width", + "name": "height", "description": null, "args": [], "type": { @@ -8217,7 +9789,7 @@ "deprecationReason": null }, { - "name": "height", + "name": "size", "description": null, "args": [], "type": { @@ -8229,7 +9801,7 @@ "deprecationReason": null }, { - "name": "size", + "name": "width", "description": null, "args": [], "type": { @@ -8252,7 +9824,7 @@ "description": null, "fields": [ { - "name": "width", + "name": "height", "description": null, "args": [], "type": { @@ -8264,7 +9836,7 @@ "deprecationReason": null }, { - "name": "height", + "name": "size", "description": null, "args": [], "type": { @@ -8276,7 +9848,7 @@ "deprecationReason": null }, { - "name": "size", + "name": "width", "description": null, "args": [], "type": { @@ -8299,7 +9871,7 @@ "description": null, "fields": [ { - "name": "width", + "name": "height", "description": null, "args": [], "type": { @@ -8311,7 +9883,7 @@ "deprecationReason": null }, { - "name": "height", + "name": "size", "description": null, "args": [], "type": { @@ -8323,7 +9895,7 @@ "deprecationReason": null }, { - "name": "size", + "name": "width", "description": null, "args": [], "type": { @@ -8346,7 +9918,7 @@ "description": null, "fields": [ { - "name": "width", + "name": "height", "description": null, "args": [], "type": { @@ -8358,7 +9930,7 @@ "deprecationReason": null }, { - "name": "height", + "name": "size", "description": null, "args": [], "type": { @@ -8370,7 +9942,7 @@ "deprecationReason": null }, { - "name": "size", + "name": "width", "description": null, "args": [], "type": { @@ -8393,17 +9965,13 @@ "description": null, "fields": [ { - "name": "values", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UploadFile", - "ofType": null - } + "kind": "OBJECT", + "name": "UploadFileAggregator", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -8421,13 +9989,17 @@ "deprecationReason": null }, { - "name": "aggregate", + "name": "values", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileAggregator", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UploadFile", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -8444,24 +10016,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8479,24 +10051,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8514,24 +10086,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -8549,24 +10121,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8584,24 +10156,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "JSON", "ofType": null }, "isDeprecated": false, @@ -8619,24 +10191,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8654,24 +10226,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -8689,24 +10261,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -8724,24 +10296,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8759,24 +10331,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8794,24 +10366,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8829,24 +10401,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -8864,24 +10436,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "JSON", "ofType": null }, "isDeprecated": false, @@ -8899,24 +10471,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Float", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "Float", "ofType": null }, "isDeprecated": false, @@ -8934,24 +10506,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -8969,24 +10541,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -9004,24 +10576,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "OBJECT", + "name": "UploadFileConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFileConnection", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "isDeprecated": false, @@ -9039,7 +10611,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "alternativeText", "description": null, "args": [], "type": { @@ -9047,7 +10619,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionId", + "name": "UploadFileConnectionAlternativeText", "ofType": null } }, @@ -9055,7 +10627,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "caption", "description": null, "args": [], "type": { @@ -9063,7 +10635,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionCreated_at", + "name": "UploadFileConnectionCaption", "ofType": null } }, @@ -9071,7 +10643,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -9079,7 +10651,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionUpdated_at", + "name": "UploadFileConnectionCreated_at", "ofType": null } }, @@ -9087,7 +10659,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "ext", "description": null, "args": [], "type": { @@ -9095,7 +10667,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionName", + "name": "UploadFileConnectionExt", "ofType": null } }, @@ -9103,7 +10675,7 @@ "deprecationReason": null }, { - "name": "alternativeText", + "name": "formats", "description": null, "args": [], "type": { @@ -9111,7 +10683,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionAlternativeText", + "name": "UploadFileConnectionFormats", "ofType": null } }, @@ -9119,7 +10691,7 @@ "deprecationReason": null }, { - "name": "caption", + "name": "hash", "description": null, "args": [], "type": { @@ -9127,7 +10699,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionCaption", + "name": "UploadFileConnectionHash", "ofType": null } }, @@ -9135,7 +10707,7 @@ "deprecationReason": null }, { - "name": "width", + "name": "height", "description": null, "args": [], "type": { @@ -9143,7 +10715,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionWidth", + "name": "UploadFileConnectionHeight", "ofType": null } }, @@ -9151,7 +10723,7 @@ "deprecationReason": null }, { - "name": "height", + "name": "id", "description": null, "args": [], "type": { @@ -9159,7 +10731,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionHeight", + "name": "UploadFileConnectionId", "ofType": null } }, @@ -9167,7 +10739,7 @@ "deprecationReason": null }, { - "name": "formats", + "name": "mime", "description": null, "args": [], "type": { @@ -9175,7 +10747,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionFormats", + "name": "UploadFileConnectionMime", "ofType": null } }, @@ -9183,7 +10755,7 @@ "deprecationReason": null }, { - "name": "hash", + "name": "name", "description": null, "args": [], "type": { @@ -9191,7 +10763,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionHash", + "name": "UploadFileConnectionName", "ofType": null } }, @@ -9199,7 +10771,7 @@ "deprecationReason": null }, { - "name": "ext", + "name": "previewUrl", "description": null, "args": [], "type": { @@ -9207,7 +10779,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionExt", + "name": "UploadFileConnectionPreviewUrl", "ofType": null } }, @@ -9215,7 +10787,7 @@ "deprecationReason": null }, { - "name": "mime", + "name": "provider", "description": null, "args": [], "type": { @@ -9223,7 +10795,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionMime", + "name": "UploadFileConnectionProvider", "ofType": null } }, @@ -9231,7 +10803,7 @@ "deprecationReason": null }, { - "name": "size", + "name": "provider_metadata", "description": null, "args": [], "type": { @@ -9239,7 +10811,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionSize", + "name": "UploadFileConnectionProvider_metadata", "ofType": null } }, @@ -9247,7 +10819,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "size", "description": null, "args": [], "type": { @@ -9255,7 +10827,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionUrl", + "name": "UploadFileConnectionSize", "ofType": null } }, @@ -9263,7 +10835,7 @@ "deprecationReason": null }, { - "name": "previewUrl", + "name": "updated_at", "description": null, "args": [], "type": { @@ -9271,7 +10843,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionPreviewUrl", + "name": "UploadFileConnectionUpdated_at", "ofType": null } }, @@ -9279,7 +10851,7 @@ "deprecationReason": null }, { - "name": "provider", + "name": "url", "description": null, "args": [], "type": { @@ -9287,7 +10859,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionProvider", + "name": "UploadFileConnectionUrl", "ofType": null } }, @@ -9295,7 +10867,7 @@ "deprecationReason": null }, { - "name": "provider_metadata", + "name": "width", "description": null, "args": [], "type": { @@ -9303,7 +10875,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UploadFileConnectionProvider_metadata", + "name": "UploadFileConnectionWidth", "ofType": null } }, @@ -9323,43 +10895,35 @@ "fields": null, "inputFields": [ { - "name": "username", + "name": "blocked", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "email", + "name": "confirmationToken", "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "provider", + "name": "confirmed", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -9367,11 +10931,11 @@ "deprecationReason": null }, { - "name": "password", + "name": "created_by", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -9379,19 +10943,23 @@ "deprecationReason": null }, { - "name": "resetPasswordToken", + "name": "email", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "confirmationToken", + "name": "password", "description": null, "type": { "kind": "SCALAR", @@ -9403,11 +10971,11 @@ "deprecationReason": null }, { - "name": "confirmed", + "name": "provider", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9415,11 +10983,11 @@ "deprecationReason": null }, { - "name": "blocked", + "name": "resetPasswordToken", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -9439,7 +11007,7 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "updated_by", "description": null, "type": { "kind": "SCALAR", @@ -9451,12 +11019,16 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "username", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, @@ -9594,33 +11166,25 @@ "description": null, "fields": [ { - "name": "id", + "name": "blocked", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "username", + "name": "confirmed", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -9642,37 +11206,45 @@ "deprecationReason": null }, { - "name": "confirmed", + "name": "id", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "blocked", + "name": "role", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UsersPermissionsMeRole", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "username", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsMeRole", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -9688,6 +11260,18 @@ "name": "UsersPermissionsMeRole", "description": null, "fields": [ + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -9720,18 +11304,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "type", "description": null, @@ -9756,23 +11328,7 @@ "description": null, "fields": [ { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", + "name": "action", "description": null, "args": [], "type": { @@ -9804,7 +11360,7 @@ "deprecationReason": null }, { - "name": "action", + "name": "enabled", "description": null, "args": [], "type": { @@ -9812,7 +11368,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, @@ -9820,7 +11376,7 @@ "deprecationReason": null }, { - "name": "enabled", + "name": "id", "description": null, "args": [], "type": { @@ -9828,7 +11384,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, @@ -9858,6 +11414,22 @@ }, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null } ], "inputFields": null, @@ -9872,7 +11444,7 @@ "fields": null, "inputFields": [ { - "name": "username", + "name": "email", "description": null, "type": { "kind": "NON_NULL", @@ -9888,7 +11460,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "password", "description": null, "type": { "kind": "NON_NULL", @@ -9904,7 +11476,7 @@ "deprecationReason": null }, { - "name": "password", + "name": "username", "description": null, "type": { "kind": "NON_NULL", @@ -9929,6 +11501,18 @@ "name": "UsersPermissionsRole", "description": null, "fields": [ + { + "name": "description", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "id", "description": null, @@ -9961,40 +11545,16 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "description", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "permissions", "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -10002,11 +11562,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10050,16 +11610,28 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "type", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "users", "description": null, "args": [ { - "name": "sort", + "name": "limit", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -10067,11 +11639,11 @@ "deprecationReason": null }, { - "name": "limit", + "name": "sort", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -10162,17 +11734,13 @@ "description": null, "fields": [ { - "name": "values", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsersPermissionsRole", - "ofType": null - } + "kind": "OBJECT", + "name": "UsersPermissionsRoleAggregator", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -10190,13 +11758,17 @@ "deprecationReason": null }, { - "name": "aggregate", + "name": "values", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRoleAggregator", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UsersPermissionsRole", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -10213,24 +11785,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsRoleConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRoleConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -10248,24 +11820,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "UsersPermissionsRoleConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRoleConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -10283,24 +11855,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsRoleConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRoleConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -10318,24 +11890,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsRoleConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRoleConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -10353,7 +11925,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "description", "description": null, "args": [], "type": { @@ -10361,7 +11933,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionId", + "name": "UsersPermissionsRoleConnectionDescription", "ofType": null } }, @@ -10369,7 +11941,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "id", "description": null, "args": [], "type": { @@ -10377,7 +11949,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionName", + "name": "UsersPermissionsRoleConnectionId", "ofType": null } }, @@ -10385,7 +11957,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "name", "description": null, "args": [], "type": { @@ -10393,7 +11965,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsRoleConnectionDescription", + "name": "UsersPermissionsRoleConnectionName", "ofType": null } }, @@ -10428,39 +12000,31 @@ "description": null, "fields": [ { - "name": "id", + "name": "blocked", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_at", + "name": "confirmed", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "updated_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -10476,7 +12040,7 @@ "deprecationReason": null }, { - "name": "username", + "name": "email", "description": null, "args": [], "type": { @@ -10492,7 +12056,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "id", "description": null, "args": [], "type": { @@ -10500,7 +12064,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, @@ -10520,37 +12084,45 @@ "deprecationReason": null }, { - "name": "confirmed", + "name": "role", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UsersPermissionsRole", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "blocked", + "name": "updated_at", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null }, { - "name": "role", + "name": "username", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRole", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -10602,17 +12174,13 @@ "description": null, "fields": [ { - "name": "values", + "name": "aggregate", "description": null, "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "UsersPermissionsUser", - "ofType": null - } + "kind": "OBJECT", + "name": "UsersPermissionsUserAggregator", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -10630,13 +12198,17 @@ "deprecationReason": null }, { - "name": "aggregate", + "name": "values", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserAggregator", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "UsersPermissionsUser", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null @@ -10653,24 +12225,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, @@ -10688,24 +12260,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "Boolean", "ofType": null }, "isDeprecated": false, @@ -10723,24 +12295,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -10758,24 +12330,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -10793,24 +12365,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -10828,24 +12400,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -10863,24 +12435,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "isDeprecated": false, @@ -10898,24 +12470,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "DateTime", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "isDeprecated": false, @@ -10933,24 +12505,24 @@ "description": null, "fields": [ { - "name": "key", + "name": "connection", "description": null, "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsUserConnection", "ofType": null }, "isDeprecated": false, "deprecationReason": null }, { - "name": "connection", + "name": "key", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUserConnection", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -10968,7 +12540,7 @@ "description": null, "fields": [ { - "name": "id", + "name": "blocked", "description": null, "args": [], "type": { @@ -10976,7 +12548,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionId", + "name": "UsersPermissionsUserConnectionBlocked", "ofType": null } }, @@ -10984,7 +12556,7 @@ "deprecationReason": null }, { - "name": "created_at", + "name": "confirmed", "description": null, "args": [], "type": { @@ -10992,7 +12564,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionCreated_at", + "name": "UsersPermissionsUserConnectionConfirmed", "ofType": null } }, @@ -11000,7 +12572,7 @@ "deprecationReason": null }, { - "name": "updated_at", + "name": "created_at", "description": null, "args": [], "type": { @@ -11008,7 +12580,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionUpdated_at", + "name": "UsersPermissionsUserConnectionCreated_at", "ofType": null } }, @@ -11016,7 +12588,7 @@ "deprecationReason": null }, { - "name": "username", + "name": "email", "description": null, "args": [], "type": { @@ -11024,7 +12596,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionUsername", + "name": "UsersPermissionsUserConnectionEmail", "ofType": null } }, @@ -11032,7 +12604,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "id", "description": null, "args": [], "type": { @@ -11040,7 +12612,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionEmail", + "name": "UsersPermissionsUserConnectionId", "ofType": null } }, @@ -11064,7 +12636,7 @@ "deprecationReason": null }, { - "name": "confirmed", + "name": "role", "description": null, "args": [], "type": { @@ -11072,7 +12644,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionConfirmed", + "name": "UsersPermissionsUserConnectionRole", "ofType": null } }, @@ -11080,7 +12652,7 @@ "deprecationReason": null }, { - "name": "blocked", + "name": "updated_at", "description": null, "args": [], "type": { @@ -11088,7 +12660,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionBlocked", + "name": "UsersPermissionsUserConnectionUpdated_at", "ofType": null } }, @@ -11096,7 +12668,7 @@ "deprecationReason": null }, { - "name": "role", + "name": "username", "description": null, "args": [], "type": { @@ -11104,7 +12676,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "UsersPermissionsUserConnectionRole", + "name": "UsersPermissionsUserConnectionUsername", "ofType": null } }, @@ -11118,385 +12690,409 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "createFormMessageInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "__Directive", + "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", + "fields": [ { - "name": "data", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "FormMessageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "createFormMessagePayload", - "description": null, - "fields": [ + }, { - "name": "formMessage", + "name": "description", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessages", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "createMenuInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "isRepeatable", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "MenuInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "createMenuPayload", - "description": null, - "fields": [ + }, { - "name": "menu", + "name": "locations", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Menu", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__DirectiveLocation", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "createPageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "args", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "PageInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "createPagePayload", - "description": null, - "fields": [ + "kind": "ENUM", + "name": "__DirectiveLocation", + "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "QUERY", + "description": "Location adjacent to a query operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "MUTATION", + "description": "Location adjacent to a mutation operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SUBSCRIPTION", + "description": "Location adjacent to a subscription operation.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD", + "description": "Location adjacent to a field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_DEFINITION", + "description": "Location adjacent to a fragment definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FRAGMENT_SPREAD", + "description": "Location adjacent to a fragment spread.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INLINE_FRAGMENT", + "description": "Location adjacent to an inline fragment.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "VARIABLE_DEFINITION", + "description": "Location adjacent to a variable definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCHEMA", + "description": "Location adjacent to a schema definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "SCALAR", + "description": "Location adjacent to a scalar definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "OBJECT", + "description": "Location adjacent to an object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "FIELD_DEFINITION", + "description": "Location adjacent to a field definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ARGUMENT_DEFINITION", + "description": "Location adjacent to an argument definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Location adjacent to an interface definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Location adjacent to a union definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Location adjacent to an enum definition.", + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "page", - "description": null, - "args": [], - "type": { - "kind": "OBJECT", - "name": "Pages", - "ofType": null - }, + "name": "ENUM_VALUE", + "description": "Location adjacent to an enum value definition.", "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "createRoleInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "data", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "RoleInput", - "ofType": null - }, - "defaultValue": null, + "name": "INPUT_OBJECT", + "description": "Location adjacent to an input object type definition.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INPUT_FIELD_DEFINITION", + "description": "Location adjacent to an input object field definition.", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "createRolePayload", - "description": null, + "name": "__EnumValue", + "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", "fields": [ { - "name": "role", + "name": "name", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRole", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "createUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "description", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "UserInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "createUserPayload", - "description": null, - "fields": [ + }, { - "name": "user", + "name": "isDeprecated", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUser", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "deleteFileInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "deprecationReason", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "OBJECT", - "name": "deleteFilePayload", - "description": null, + "name": "__Field", + "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", "fields": [ { - "name": "file", + "name": "name", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UploadFile", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "deleteFormMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "description", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", + "kind": "SCALAR", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "deleteFormMessagePayload", - "description": null, - "fields": [ + }, { - "name": "formMessage", + "name": "args", "description": null, - "args": [], + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "OBJECT", - "name": "FormMessages", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } + } }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "deleteGlobalPayload", - "description": null, - "fields": [ + }, { - "name": "global", + "name": "type", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Global", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "deleteMenuInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "where", + "name": "isDeprecated", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "deleteMenuPayload", - "description": null, - "fields": [ + }, { - "name": "menu", + "name": "deprecationReason", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Menu", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -11509,132 +13105,89 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "deletePageInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "__InputValue", + "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", + "fields": [ { - "name": "where", + "name": "name", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "deletePagePayload", - "description": null, - "fields": [ + }, { - "name": "page", + "name": "description", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "Pages", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "deleteRoleInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "type", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "deleteRolePayload", - "description": null, - "fields": [ + }, { - "name": "role", - "description": null, + "name": "defaultValue", + "description": "A GraphQL-formatted string representing the default value for this input value.", "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRole", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "deleteUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "isDeprecated", "description": null, + "args": [], "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "deleteUserPayload", - "description": null, - "fields": [ + }, { - "name": "user", + "name": "deprecationReason", "description": null, "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUser", + "kind": "SCALAR", + "name": "String", "ofType": null }, "isDeprecated": false, @@ -11647,313 +13200,401 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksCardInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "__Schema", + "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", + "fields": [ { - "name": "id", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", - "description": null, + "name": "types", + "description": "A list of all types supported by this server.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", - "description": null, + "name": "queryType", + "description": "The type that query operations will be rooted at.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", - "description": null, + "name": "mutationType", + "description": "If this server supports mutation, the type that mutation operations will be rooted at.", + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "__Type", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": null, + "name": "subscriptionType", + "description": "If this server support subscription, the type that subscription operations will be rooted at.", + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__Type", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "name": "directives", + "description": "A list of all directives supported by this server.", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Directive", + "ofType": null + } + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksNavigationBlockInput", - "description": null, - "fields": null, - "inputFields": [ + "kind": "OBJECT", + "name": "__Type", + "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByUrl`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", + "fields": [ { - "name": "id", + "name": "kind", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "__TypeKind", + "ofType": null + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", + "name": "name", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "description", "description": null, + "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksSingleFeatureInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "id", + "name": "specifiedByUrl", "description": null, + "args": [], "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "fields", "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Field", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "title", + "name": "interfaces", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "image", + "name": "possibleTypes", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__Type", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "url", + "name": "enumValues", "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__EnumValue", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "bubbleColor", + "name": "inputFields", "description": null, + "args": [ + { + "name": "includeDeprecated", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": "false", + "isDeprecated": false, + "deprecationReason": null + } + ], "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "__InputValue", + "ofType": null + } + } }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "label", + "name": "ofType", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "__Type", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksSocialBubbleInput", - "description": null, + "kind": "ENUM", + "name": "__TypeKind", + "description": "An enum describing what kind of type a given `__Type` is.", "fields": null, - "inputFields": [ + "inputFields": null, + "interfaces": null, + "enumValues": [ { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, + "name": "SCALAR", + "description": "Indicates this type is a scalar.", "isDeprecated": false, "deprecationReason": null }, { - "name": "url", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "OBJECT", + "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "INTERFACE", + "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "UNION", + "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "ENUM", + "description": "Indicates this type is an enum. `enumValues` is a valid field.", "isDeprecated": false, "deprecationReason": null }, { - "name": "bubbleColor", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "INPUT_OBJECT", + "description": "Indicates this type is an input object. `inputFields` is a valid field.", "isDeprecated": false, "deprecationReason": null }, { - "name": "bubbleHoverColor", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, + "name": "LIST", + "description": "Indicates this type is a list. `ofType` is a valid field.", "isDeprecated": false, "deprecationReason": null }, { - "name": "image", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, + "name": "NON_NULL", + "description": "Indicates this type is a non-null. `ofType` is a valid field.", "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, - "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "editComponentGlobalBottomBarInput", + "name": "createFormMessageInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "FormMessageInput", "ofType": null }, "defaultValue": null, @@ -11966,329 +13607,477 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "editComponentGlobalCompanyDatumInput", + "kind": "OBJECT", + "name": "createFormMessagePayload", "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + "fields": [ { - "name": "primaryEmail", + "name": "formMessage", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FormMessages", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "createMenuInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "companyName", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "MenuInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "createMenuPayload", + "description": null, + "fields": [ { - "name": "additionalLegalInfo", + "name": "menu", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Menu", "ofType": null }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "locations", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "editComponentGlobalHeadquarterInput", - "ofType": null - } - }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "createPageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "capital", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "Long", + "kind": "INPUT_OBJECT", + "name": "PageInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "createPagePayload", + "description": null, + "fields": [ { - "name": "vatId", + "name": "page", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Page", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "createProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "copyright", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ProjectInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "createProjectPayload", + "description": null, + "fields": [ { - "name": "legalCompanyName", + "name": "project", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "editComponentGlobalFooterDatumInput", + "name": "createRoleInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "RoleInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "createRolePayload", + "description": null, + "fields": [ { - "name": "description", + "name": "role", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsRole", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "editComponentGlobalHeadquarterInput", + "name": "createUserInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "data", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "UserInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "createUserPayload", + "description": null, + "fields": [ { - "name": "province", + "name": "user", "description": null, - "type": { - "kind": "SCALAR", - "name": "String", + "args": [], + "type": { + "kind": "OBJECT", + "name": "UsersPermissionsUser", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "deleteFileInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "provinceInitials", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deleteFilePayload", + "description": null, + "fields": [ { - "name": "type", + "name": "file", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UploadFile", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "deleteFormMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "street", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deleteFormMessagePayload", + "description": null, + "fields": [ { - "name": "city", + "name": "formMessage", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "FormMessages", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deleteGlobalPayload", + "description": null, + "fields": [ { - "name": "cap", + "name": "global", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "Long", + "kind": "OBJECT", + "name": "Global", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "editComponentGlobalTopbarInput", + "name": "deleteMenuInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deleteMenuPayload", + "description": null, + "fields": [ { "name": "menu", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Menu", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "editComponentMenuPageLinkInput", + "name": "deletePageInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deletePagePayload", + "description": null, + "fields": [ { - "name": "pageLinkName", + "name": "page", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Page", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "deleteProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "link", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, "defaultValue": null, @@ -12301,92 +14090,132 @@ "possibleTypes": null }, { - "kind": "INPUT_OBJECT", - "name": "editComponentSectionCardSectionInput", + "kind": "OBJECT", + "name": "deleteProjectPayload", "description": null, - "fields": null, - "inputFields": [ + "fields": [ { - "name": "id", + "name": "project", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "ID", + "kind": "OBJECT", + "name": "Project", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "deleteRoleInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "title", + "name": "where", "description": null, "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deleteRolePayload", + "description": null, + "fields": [ { - "name": "subtitle", + "name": "role", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsRole", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "deleteUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "sections", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksCardInput", - "ofType": null - } + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InputID", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "deleteUserPayload", + "description": null, + "fields": [ { - "name": "sectionTitle", + "name": "user", "description": null, + "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "UsersPermissionsUser", "ofType": null }, - "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "interfaces": null, + "inputFields": null, + "interfaces": [], "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "editComponentSectionContactsSectionInput", + "name": "editComponentBlocksCardInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12394,11 +14223,11 @@ "deprecationReason": null }, { - "name": "title", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12406,11 +14235,11 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12418,7 +14247,7 @@ "deprecationReason": null }, { - "name": "email", + "name": "label", "description": null, "type": { "kind": "SCALAR", @@ -12430,7 +14259,7 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -12442,16 +14271,12 @@ "deprecationReason": null }, { - "name": "socialBubbles", + "name": "url", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksSocialBubbleInput", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, @@ -12464,7 +14289,7 @@ }, { "kind": "INPUT_OBJECT", - "name": "editComponentSectionFooterSectionInput", + "name": "editComponentBlocksLinkInput", "description": null, "fields": null, "inputFields": [ @@ -12481,31 +14306,7 @@ "deprecationReason": null }, { - "name": "description", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "email", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "copyright", + "name": "label", "description": null, "type": { "kind": "SCALAR", @@ -12517,7 +14318,7 @@ "deprecationReason": null }, { - "name": "sharedCapital", + "name": "url", "description": null, "type": { "kind": "SCALAR", @@ -12527,9 +14328,20 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentBlocksSingleFeatureInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "street", + "name": "bubbleColor", "description": null, "type": { "kind": "SCALAR", @@ -12541,7 +14353,7 @@ "deprecationReason": null }, { - "name": "city", + "name": "description", "description": null, "type": { "kind": "SCALAR", @@ -12553,11 +14365,11 @@ "deprecationReason": null }, { - "name": "vatNumber", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12565,30 +14377,7 @@ "deprecationReason": null }, { - "name": "cap", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "editComponentSectionHeroSectionInput", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", + "name": "image", "description": null, "type": { "kind": "SCALAR", @@ -12600,7 +14389,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "label", "description": null, "type": { "kind": "SCALAR", @@ -12612,7 +14401,7 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -12624,11 +14413,11 @@ "deprecationReason": null }, { - "name": "areBubblesActive", + "name": "url", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12642,16 +14431,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "editComponentSectionSimpleSectionInput", + "name": "editComponentBlocksSocialBubbleInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "bubbleColor", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12659,7 +14448,7 @@ "deprecationReason": null }, { - "name": "sectionTitle", + "name": "bubbleHoverColor", "description": null, "type": { "kind": "SCALAR", @@ -12671,11 +14460,11 @@ "deprecationReason": null }, { - "name": "sectionTitleColor", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12683,11 +14472,11 @@ "deprecationReason": null }, { - "name": "title", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12695,7 +14484,7 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "url", "description": null, "type": { "kind": "SCALAR", @@ -12713,16 +14502,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "editComponentSectionSingleFeatureSectionInput", + "name": "editComponentGlobalCompanyDatumInput", "description": null, "fields": null, "inputFields": [ { - "name": "id", + "name": "additionalLegalInfo", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12730,11 +14519,11 @@ "deprecationReason": null }, { - "name": "title", + "name": "capital", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null }, "defaultValue": null, @@ -12742,7 +14531,7 @@ "deprecationReason": null }, { - "name": "subtitle", + "name": "companyName", "description": null, "type": { "kind": "SCALAR", @@ -12754,23 +14543,7 @@ "deprecationReason": null }, { - "name": "sections", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "editComponentBlocksSingleFeatureInput", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sectionTitle", + "name": "copyright", "description": null, "type": { "kind": "SCALAR", @@ -12780,24 +14553,13 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "editFileInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "name", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12805,7 +14567,7 @@ "deprecationReason": null }, { - "name": "alternativeText", + "name": "legalCompanyName", "description": null, "type": { "kind": "SCALAR", @@ -12817,23 +14579,27 @@ "deprecationReason": null }, { - "name": "caption", + "name": "locations", "description": null, "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "editComponentGlobalHeadquarterInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "width", + "name": "primaryEmail", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12841,23 +14607,34 @@ "deprecationReason": null }, { - "name": "height", + "name": "vatId", "description": null, "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentGlobalFooterInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "formats", + "name": "description", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null }, "defaultValue": null, @@ -12865,23 +14642,34 @@ "deprecationReason": null }, { - "name": "hash", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentGlobalHeadquarterInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ext", + "name": "cap", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Long", "ofType": null }, "defaultValue": null, @@ -12889,7 +14677,7 @@ "deprecationReason": null }, { - "name": "mime", + "name": "city", "description": null, "type": { "kind": "SCALAR", @@ -12901,11 +14689,11 @@ "deprecationReason": null }, { - "name": "size", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "Float", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -12913,7 +14701,7 @@ "deprecationReason": null }, { - "name": "url", + "name": "province", "description": null, "type": { "kind": "SCALAR", @@ -12925,7 +14713,7 @@ "deprecationReason": null }, { - "name": "previewUrl", + "name": "provinceInitials", "description": null, "type": { "kind": "SCALAR", @@ -12937,7 +14725,7 @@ "deprecationReason": null }, { - "name": "provider", + "name": "street", "description": null, "type": { "kind": "SCALAR", @@ -12949,35 +14737,30 @@ "deprecationReason": null }, { - "name": "provider_metadata", + "name": "type", "description": null, "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "related", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentGlobalTopbarInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "created_by", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -12989,7 +14772,7 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "menu", "description": null, "type": { "kind": "SCALAR", @@ -13007,16 +14790,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "editFormMessageInput", + "name": "editComponentProjectBlockquoteBlockInput", "description": null, "fields": null, "inputFields": [ { - "name": "email", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -13024,7 +14807,7 @@ "deprecationReason": null }, { - "name": "name", + "name": "text", "description": null, "type": { "kind": "SCALAR", @@ -13034,13 +14817,24 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentProjectImageBlockInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "message", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -13048,19 +14842,30 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "image", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "ID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentProjectParagraphBlockInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "created_by", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -13072,11 +14877,11 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "text", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13090,28 +14895,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "editGlobalInput", + "name": "editComponentSectionCardSectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "topbar", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "editComponentGlobalTopbarInput", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "companyData", + "name": "id", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editComponentGlobalCompanyDatumInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -13119,11 +14912,11 @@ "deprecationReason": null }, { - "name": "footer", + "name": "sectionTitle", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editComponentGlobalFooterDatumInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13131,23 +14924,27 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "sections", "description": null, "type": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "editComponentBlocksCardInput", + "ofType": null + } }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_by", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13155,11 +14952,11 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "title", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13173,24 +14970,12 @@ }, { "kind": "INPUT_OBJECT", - "name": "editLocaleInput", + "name": "editComponentSectionContactsSectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "code", + "name": "email", "description": null, "type": { "kind": "SCALAR", @@ -13202,7 +14987,7 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -13214,37 +14999,26 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "sectionTitle", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "editMenuInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "links", + "name": "socialBubbles", "description": null, "type": { "kind": "LIST", "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "editComponentBlocksNavigationBlockInput", + "name": "editComponentBlocksSocialBubbleInput", "ofType": null } }, @@ -13253,7 +15027,7 @@ "deprecationReason": null }, { - "name": "title", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", @@ -13265,23 +15039,34 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "title", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentSectionHeroSectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "created_by", + "name": "areBubblesActive", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null }, "defaultValue": null, @@ -13289,7 +15074,7 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "id", "description": null, "type": { "kind": "SCALAR", @@ -13299,20 +15084,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "editPageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "title", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", @@ -13324,7 +15098,7 @@ "deprecationReason": null }, { - "name": "path", + "name": "title", "description": null, "type": { "kind": "SCALAR", @@ -13334,45 +15108,32 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, - { - "name": "sections", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "PagesSectionsDynamicZoneInput", - "ofType": null - } - } - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editComponentSectionSimpleSectionInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "localizations", + "name": "id", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "locale", + "name": "sectionTitle", "description": null, "type": { "kind": "SCALAR", @@ -13384,11 +15145,11 @@ "deprecationReason": null }, { - "name": "published_at", + "name": "sectionTitleColor", "description": null, "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13396,11 +15157,11 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13408,11 +15169,11 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "title", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13426,16 +15187,16 @@ }, { "kind": "INPUT_OBJECT", - "name": "editRoleInput", + "name": "editComponentSectionSingleFeatureSectionInput", "description": null, "fields": null, "inputFields": [ { - "name": "name", + "name": "id", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, "defaultValue": null, @@ -13443,7 +15204,7 @@ "deprecationReason": null }, { - "name": "description", + "name": "sectionTitle", "description": null, "type": { "kind": "SCALAR", @@ -13455,7 +15216,23 @@ "deprecationReason": null }, { - "name": "type", + "name": "sections", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "editComponentBlocksSingleFeatureInput", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "subtitle", "description": null, "type": { "kind": "SCALAR", @@ -13467,43 +15244,46 @@ "deprecationReason": null }, { - "name": "permissions", + "name": "title", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editFileInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "users", + "name": "alternativeText", "description": null, "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "created_by", + "name": "caption", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13511,7 +15291,7 @@ "deprecationReason": null }, { - "name": "updated_by", + "name": "created_by", "description": null, "type": { "kind": "SCALAR", @@ -13521,20 +15301,9 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "editUserInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "username", + "name": "ext", "description": null, "type": { "kind": "SCALAR", @@ -13546,11 +15315,11 @@ "deprecationReason": null }, { - "name": "email", + "name": "formats", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null }, "defaultValue": null, @@ -13558,7 +15327,7 @@ "deprecationReason": null }, { - "name": "provider", + "name": "hash", "description": null, "type": { "kind": "SCALAR", @@ -13570,11 +15339,11 @@ "deprecationReason": null }, { - "name": "password", + "name": "height", "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13582,7 +15351,7 @@ "deprecationReason": null }, { - "name": "resetPasswordToken", + "name": "mime", "description": null, "type": { "kind": "SCALAR", @@ -13594,7 +15363,7 @@ "deprecationReason": null }, { - "name": "confirmationToken", + "name": "name", "description": null, "type": { "kind": "SCALAR", @@ -13606,11 +15375,11 @@ "deprecationReason": null }, { - "name": "confirmed", + "name": "previewUrl", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13618,11 +15387,11 @@ "deprecationReason": null }, { - "name": "blocked", + "name": "provider", "description": null, "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13630,11 +15399,11 @@ "deprecationReason": null }, { - "name": "role", + "name": "provider_metadata", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "JSON", "ofType": null }, "defaultValue": null, @@ -13642,11 +15411,27 @@ "deprecationReason": null }, { - "name": "created_by", + "name": "related", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "size", "description": null, "type": { "kind": "SCALAR", - "name": "ID", + "name": "Float", "ofType": null }, "defaultValue": null, @@ -13664,24 +15449,13 @@ "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "updateFormMessageInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "url", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13689,11 +15463,11 @@ "deprecationReason": null }, { - "name": "data", + "name": "width", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editFormMessageInput", + "kind": "SCALAR", + "name": "Int", "ofType": null }, "defaultValue": null, @@ -13706,86 +15480,53 @@ "possibleTypes": null }, { - "kind": "OBJECT", - "name": "updateFormMessagePayload", + "kind": "INPUT_OBJECT", + "name": "editFormMessageInput", "description": null, - "fields": [ + "fields": null, + "inputFields": [ { - "name": "formMessage", + "name": "created_by", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "FormMessages", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "updateGlobalInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "data", + "name": "email", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editGlobalInput", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "updateGlobalPayload", - "description": null, - "fields": [ + }, { - "name": "global", + "name": "message", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Global", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "updateMenuInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "name", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13793,57 +15534,46 @@ "deprecationReason": null }, { - "name": "data", + "name": "published_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editMenuInput", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "updateMenuPayload", - "description": null, - "fields": [ + }, { - "name": "menu", + "name": "updated_by", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Menu", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "updatePageInput", + "name": "editGlobalInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "companyData", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "InputID", + "name": "editComponentGlobalCompanyDatumInput", "ofType": null }, "defaultValue": null, @@ -13851,57 +15581,35 @@ "deprecationReason": null }, { - "name": "data", + "name": "created_by", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editPageInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "updatePagePayload", - "description": null, - "fields": [ + }, { - "name": "page", + "name": "footer", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "Pages", + "kind": "INPUT_OBJECT", + "name": "editComponentGlobalFooterInput", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "updateRoleInput", - "description": null, - "fields": null, - "inputFields": [ + }, { - "name": "where", + "name": "published_at", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, "defaultValue": null, @@ -13909,57 +15617,46 @@ "deprecationReason": null }, { - "name": "data", + "name": "topbar", "description": null, "type": { "kind": "INPUT_OBJECT", - "name": "editRoleInput", + "name": "editComponentGlobalTopbarInput", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "updateRolePayload", - "description": null, - "fields": [ + }, { - "name": "role", + "name": "updated_by", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsRole", + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { "kind": "INPUT_OBJECT", - "name": "updateUserInput", + "name": "editLocaleInput", "description": null, "fields": null, "inputFields": [ { - "name": "where", + "name": "code", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "InputID", + "kind": "SCALAR", + "name": "String", "ofType": null }, "defaultValue": null, @@ -13967,230 +15664,222 @@ "deprecationReason": null }, { - "name": "data", + "name": "created_by", "description": null, "type": { - "kind": "INPUT_OBJECT", - "name": "editUserInput", + "kind": "SCALAR", + "name": "ID", "ofType": null }, "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "updateUserPayload", - "description": null, - "fields": [ + }, { - "name": "user", + "name": "name", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "UsersPermissionsUser", + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Schema", - "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "editMenuInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "description", + "name": "created_by", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "types", - "description": "A list of all types supported by this server.", - "args": [], + "name": "links", + "description": null, "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } + "kind": "INPUT_OBJECT", + "name": "editComponentBlocksLinkInput", + "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "queryType", - "description": "The type that query operations will be rooted at.", - "args": [], + "name": "locale", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "mutationType", - "description": "If this server supports mutation, the type that mutation operations will be rooted at.", - "args": [], + "name": "localizations", + "description": null, "type": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "subscriptionType", - "description": "If this server support subscription, the type that subscription operations will be rooted at.", - "args": [], + "name": "published_at", + "description": null, "type": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "DateTime", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "directives", - "description": "A list of all directives supported by this server.", - "args": [], + "name": "title", + "description": null, "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Directive", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "updated_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Type", - "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByUrl`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "editPageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "kind", + "name": "created_by", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__TypeKind", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "name", + "name": "locale", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "localizations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "path", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "specifiedByUrl", + "name": "published_at", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "fields", + "name": "sections", "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { "kind": "LIST", "name": null, @@ -14198,39 +15887,54 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Field", + "kind": "SCALAR", + "name": "PageSectionsDynamicZoneInput", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "interfaces", + "name": "title", "description": null, - "args": [], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "possibleTypes", + "name": "updated_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "editProjectInput", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "blocks", "description": null, - "args": [], "type": { "kind": "LIST", "name": null, @@ -14238,533 +15942,509 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "ProjectBlocksDynamicZoneInput", "ofType": null } } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "enumValues", + "name": "companyName", "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__EnumValue", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "inputFields", + "name": "created_by", "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ofType", + "name": "description", "description": null, - "args": [], "type": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "__TypeKind", - "description": "An enum describing what kind of type a given `__Type` is.", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ + }, { - "name": "SCALAR", - "description": "Indicates this type is a scalar.", + "name": "image", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "OBJECT", - "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.", + "name": "linkLabel", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "INTERFACE", - "description": "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.", + "name": "linkPath", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "locale", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "UNION", - "description": "Indicates this type is a union. `possibleTypes` is a valid field.", + "name": "localizations", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "ENUM", - "description": "Indicates this type is an enum. `enumValues` is a valid field.", + "name": "path", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "INPUT_OBJECT", - "description": "Indicates this type is an input object. `inputFields` is a valid field.", + "name": "projectType", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "LIST", - "description": "Indicates this type is a list. `ofType` is a valid field.", + "name": "published_at", + "description": null, + "type": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "NON_NULL", - "description": "Indicates this type is a non-null. `ofType` is a valid field.", + "name": "updated_by", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], + "interfaces": null, + "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Field", - "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "editRoleInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "created_by", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { "name": "description", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "args", + "name": "name", "description": null, - "args": [ - { - "name": "includeDeprecated", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": "false", - "isDeprecated": false, - "deprecationReason": null - } - ], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "permissions", "description": null, - "args": [], "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "__Type", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDeprecated", + "name": "type", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deprecationReason", + "name": "updated_by", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__InputValue", - "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "editUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "blocked", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "confirmationToken", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "type", + "name": "confirmed", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__Type", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "defaultValue", - "description": "A GraphQL-formatted string representing the default value for this input value.", - "args": [], + "name": "created_by", + "description": null, "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDeprecated", + "name": "email", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deprecationReason", + "name": "password", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "__EnumValue", - "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.", - "fields": [ + }, + { + "name": "provider", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null, + "isDeprecated": false, + "deprecationReason": null + }, { - "name": "name", + "name": "resetPasswordToken", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "role", "description": null, - "args": [], "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "isDeprecated", + "name": "updated_by", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "deprecationReason", + "name": "username", "description": null, - "args": [], "type": { "kind": "SCALAR", "name": "String", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null } ], - "inputFields": null, - "interfaces": [], + "interfaces": null, "enumValues": null, "possibleTypes": null }, { - "kind": "OBJECT", - "name": "__Directive", - "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.", - "fields": [ + "kind": "INPUT_OBJECT", + "name": "updateFormMessageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "name", + "name": "data", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "editFormMessageInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "description", + "name": "where", "description": null, - "args": [], "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "InputID", "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updateFormMessagePayload", + "description": null, + "fields": [ { - "name": "isRepeatable", + "name": "formMessage", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "OBJECT", + "name": "FormMessages", + "ofType": null }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "updateGlobalInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "locations", + "name": "data", "description": null, - "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "__DirectiveLocation", - "ofType": null - } - } - } + "kind": "INPUT_OBJECT", + "name": "editGlobalInput", + "ofType": null }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updateGlobalPayload", + "description": null, + "fields": [ { - "name": "args", + "name": "global", "description": null, "args": [], "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "__InputValue", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "Global", + "ofType": null }, "isDeprecated": false, "deprecationReason": null @@ -14776,132 +16456,322 @@ "possibleTypes": null }, { - "kind": "ENUM", - "name": "__DirectiveLocation", - "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.", + "kind": "INPUT_OBJECT", + "name": "updateMenuInput", + "description": null, "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "QUERY", - "description": "Location adjacent to a query operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "MUTATION", - "description": "Location adjacent to a mutation operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "SUBSCRIPTION", - "description": "Location adjacent to a subscription operation.", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "FIELD", - "description": "Location adjacent to a field.", - "isDeprecated": false, - "deprecationReason": null - }, + "inputFields": [ { - "name": "FRAGMENT_DEFINITION", - "description": "Location adjacent to a fragment definition.", + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "editMenuInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "FRAGMENT_SPREAD", - "description": "Location adjacent to a fragment spread.", + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InputID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updateMenuPayload", + "description": null, + "fields": [ { - "name": "INLINE_FRAGMENT", - "description": "Location adjacent to an inline fragment.", + "name": "menu", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Menu", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "updatePageInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "VARIABLE_DEFINITION", - "description": "Location adjacent to a variable definition.", + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "editPageInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "SCHEMA", - "description": "Location adjacent to a schema definition.", + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InputID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updatePagePayload", + "description": null, + "fields": [ { - "name": "SCALAR", - "description": "Location adjacent to a scalar definition.", + "name": "page", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Page", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "updateProjectInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "OBJECT", - "description": "Location adjacent to an object type definition.", + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "editProjectInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "FIELD_DEFINITION", - "description": "Location adjacent to a field definition.", + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InputID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updateProjectPayload", + "description": null, + "fields": [ { - "name": "ARGUMENT_DEFINITION", - "description": "Location adjacent to an argument definition.", + "name": "project", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "Project", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "updateRoleInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "INTERFACE", - "description": "Location adjacent to an interface definition.", + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "editRoleInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "UNION", - "description": "Location adjacent to a union definition.", + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InputID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updateRolePayload", + "description": null, + "fields": [ { - "name": "ENUM", - "description": "Location adjacent to an enum definition.", + "name": "role", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UsersPermissionsRole", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "updateUserInput", + "description": null, + "fields": null, + "inputFields": [ { - "name": "ENUM_VALUE", - "description": "Location adjacent to an enum value definition.", + "name": "data", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "editUserInput", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null }, { - "name": "INPUT_OBJECT", - "description": "Location adjacent to an input object type definition.", + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "InputID", + "ofType": null + }, + "defaultValue": null, "isDeprecated": false, "deprecationReason": null - }, + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "updateUserPayload", + "description": null, + "fields": [ { - "name": "INPUT_FIELD_DEFINITION", - "description": "Location adjacent to an input object field definition.", + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "OBJECT", + "name": "UsersPermissionsUser", + "ofType": null + }, "isDeprecated": false, "deprecationReason": null } ], + "inputFields": null, + "interfaces": [], + "enumValues": null, "possibleTypes": null } ], "directives": [ + { + "name": "deprecated", + "description": "Marks an element of a GraphQL schema as no longer supported.", + "isRepeatable": false, + "locations": [ + "ARGUMENT_DEFINITION", + "ENUM_VALUE", + "FIELD_DEFINITION", + "INPUT_FIELD_DEFINITION" + ], + "args": [ + { + "name": "reason", + "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": "\"No longer supported\"", + "isDeprecated": false, + "deprecationReason": null + } + ] + }, { "name": "include", "description": "Directs the executor to include this field or fragment only when the `if` argument is true.", @@ -14958,31 +16828,6 @@ } ] }, - { - "name": "deprecated", - "description": "Marks an element of a GraphQL schema as no longer supported.", - "isRepeatable": false, - "locations": [ - "FIELD_DEFINITION", - "ARGUMENT_DEFINITION", - "INPUT_FIELD_DEFINITION", - "ENUM_VALUE" - ], - "args": [ - { - "name": "reason", - "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": "\"No longer supported\"", - "isDeprecated": false, - "deprecationReason": null - } - ] - }, { "name": "specifiedBy", "description": "Exposes a URL that specifies the behaviour of this scalar.", diff --git a/frontend/graphql/generated.ts b/frontend/graphql/generated.ts index a12ce07b..dcd86710 100644 --- a/frontend/graphql/generated.ts +++ b/frontend/graphql/generated.ts @@ -17,8 +17,10 @@ export type Scalars = { JSON: any; /** The `Long` scalar type represents 52-bit integers */ Long: any; - /** Input type for dynamic zone sections of Pages */ - PagesSectionsDynamicZoneInput: any; + /** Input type for dynamic zone sections of Page */ + PageSectionsDynamicZoneInput: any; + /** Input type for dynamic zone blocks of Project */ + ProjectBlocksDynamicZoneInput: any; /** A time string with format: HH:mm:ss.SSS */ Time: any; /** The `Upload` scalar type represents a file upload. */ @@ -27,139 +29,130 @@ export type Scalars = { export type AdminUser = { __typename?: 'AdminUser'; - id: Scalars['ID']; - username?: Maybe; firstname: Scalars['String']; + id: Scalars['ID']; lastname: Scalars['String']; + username?: Maybe; }; export type ComponentBlocksCard = { __typename?: 'ComponentBlocksCard'; + description?: Maybe; id: Scalars['ID']; - title: Scalars['String']; - description: Scalars['String']; image?: Maybe; - url: Scalars['String']; label: Scalars['String']; + title?: Maybe; + url: Scalars['String']; }; export type ComponentBlocksCardInput = { - title: Scalars['String']; - description: Scalars['String']; + description?: Maybe; image?: Maybe; - url: Scalars['String']; label: Scalars['String']; + title?: Maybe; + url: Scalars['String']; }; -export type ComponentBlocksNavigationBlock = { - __typename?: 'ComponentBlocksNavigationBlock'; +export type ComponentBlocksLink = { + __typename?: 'ComponentBlocksLink'; id: Scalars['ID']; label?: Maybe; url?: Maybe; }; -export type ComponentBlocksNavigationBlockInput = { +export type ComponentBlocksLinkInput = { label?: Maybe; url?: Maybe; }; export type ComponentBlocksSingleFeature = { __typename?: 'ComponentBlocksSingleFeature'; + bubbleColor?: Maybe; + description?: Maybe; id: Scalars['ID']; - description: Scalars['String']; - title: Scalars['String']; image?: Maybe; - url: Scalars['String']; - bubbleColor?: Maybe; label: Scalars['String']; + title?: Maybe; + url: Scalars['String']; }; export type ComponentBlocksSingleFeatureInput = { - description: Scalars['String']; - title: Scalars['String']; - image?: Maybe; - url: Scalars['String']; bubbleColor?: Maybe; + description?: Maybe; + image?: Maybe; label: Scalars['String']; + title?: Maybe; + url: Scalars['String']; }; export type ComponentBlocksSocialBubble = { __typename?: 'ComponentBlocksSocialBubble'; - id: Scalars['ID']; - url?: Maybe; bubbleColor?: Maybe; bubbleHoverColor?: Maybe; + id: Scalars['ID']; image?: Maybe; + url?: Maybe; }; export type ComponentBlocksSocialBubbleInput = { - url?: Maybe; bubbleColor?: Maybe; bubbleHoverColor?: Maybe; image?: Maybe; -}; - -export type ComponentGlobalBottomBar = { - __typename?: 'ComponentGlobalBottomBar'; - id: Scalars['ID']; -}; - -export type ComponentGlobalBottomBarInput = { - _?: Maybe; + url?: Maybe; }; export type ComponentGlobalCompanyData = { __typename?: 'ComponentGlobalCompanyData'; - id: Scalars['ID']; - primaryEmail?: Maybe; - companyName?: Maybe; additionalLegalInfo?: Maybe; - locations?: Maybe>>; capital?: Maybe; - vatId?: Maybe; + companyName?: Maybe; copyright?: Maybe; + id: Scalars['ID']; legalCompanyName?: Maybe; + locations?: Maybe>>; + primaryEmail?: Maybe; + vatId?: Maybe; }; export type ComponentGlobalCompanyDatumInput = { - primaryEmail?: Maybe; - companyName?: Maybe; additionalLegalInfo?: Maybe; - locations?: Maybe>>; capital?: Maybe; - vatId?: Maybe; + companyName?: Maybe; copyright?: Maybe; legalCompanyName?: Maybe; + locations?: Maybe>>; + primaryEmail?: Maybe; + vatId?: Maybe; }; -export type ComponentGlobalFooterData = { - __typename?: 'ComponentGlobalFooterData'; - id: Scalars['ID']; +export type ComponentGlobalFooter = { + __typename?: 'ComponentGlobalFooter'; description?: Maybe; + id: Scalars['ID']; }; -export type ComponentGlobalFooterDatumInput = { +export type ComponentGlobalFooterInput = { description?: Maybe; }; export type ComponentGlobalHeadquarter = { __typename?: 'ComponentGlobalHeadquarter'; + cap?: Maybe; + city?: Maybe; id: Scalars['ID']; province?: Maybe; provinceInitials?: Maybe; - type?: Maybe; street?: Maybe; - city?: Maybe; - cap?: Maybe; + type?: Maybe; }; export type ComponentGlobalHeadquarterInput = { + cap?: Maybe; + city?: Maybe; province?: Maybe; provinceInitials?: Maybe; - type?: Maybe; street?: Maybe; - city?: Maybe; - cap?: Maybe; + type?: Maybe; }; export type ComponentGlobalTopbar = { @@ -172,88 +165,82 @@ export type ComponentGlobalTopbarInput = { menu?: Maybe; }; -export type ComponentMenuPageLink = { - __typename?: 'ComponentMenuPageLink'; +export type ComponentProjectBlockquoteBlock = { + __typename?: 'ComponentProjectBlockquoteBlock'; + id: Scalars['ID']; + text?: Maybe; +}; + +export type ComponentProjectBlockquoteBlockInput = { + text?: Maybe; +}; + +export type ComponentProjectImageBlock = { + __typename?: 'ComponentProjectImageBlock'; id: Scalars['ID']; - pageLinkName: Scalars['String']; - link?: Maybe; + image?: Maybe; +}; + +export type ComponentProjectImageBlockInput = { + image?: Maybe; }; -export type ComponentMenuPageLinkInput = { - pageLinkName: Scalars['String']; - link?: Maybe; +export type ComponentProjectParagraphBlock = { + __typename?: 'ComponentProjectParagraphBlock'; + id: Scalars['ID']; + text?: Maybe; +}; + +export type ComponentProjectParagraphBlockInput = { + text?: Maybe; }; export type ComponentSectionCardSection = { __typename?: 'ComponentSectionCardSection'; id: Scalars['ID']; - title?: Maybe; - subtitle?: Maybe; - sections?: Maybe>>; sectionTitle?: Maybe; + sections?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionCardSectionInput = { - title?: Maybe; - subtitle?: Maybe; - sections?: Maybe>>; sectionTitle?: Maybe; + sections?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionContactsSection = { __typename?: 'ComponentSectionContactsSection'; - id: Scalars['ID']; - title?: Maybe; - subtitle?: Maybe; email?: Maybe; + id: Scalars['ID']; sectionTitle?: Maybe; socialBubbles?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionContactsSectionInput = { - title?: Maybe; - subtitle?: Maybe; email?: Maybe; sectionTitle?: Maybe; socialBubbles?: Maybe>>; -}; - -export type ComponentSectionFooterSection = { - __typename?: 'ComponentSectionFooterSection'; - id: Scalars['ID']; - description?: Maybe; - email?: Maybe; - copyright?: Maybe; - sharedCapital?: Maybe; - street?: Maybe; - city?: Maybe; - vatNumber?: Maybe; - cap?: Maybe; -}; - -export type ComponentSectionFooterSectionInput = { - description?: Maybe; - email?: Maybe; - copyright?: Maybe; - sharedCapital?: Maybe; - street?: Maybe; - city?: Maybe; - vatNumber?: Maybe; - cap?: Maybe; + subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionHeroSection = { __typename?: 'ComponentSectionHeroSection'; + areBubblesActive?: Maybe; id: Scalars['ID']; - title?: Maybe; subtitle?: Maybe; - areBubblesActive?: Maybe; + title?: Maybe; }; export type ComponentSectionHeroSectionInput = { - title?: Maybe; - subtitle?: Maybe; areBubblesActive?: Maybe; + subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionSimpleSection = { @@ -261,79 +248,79 @@ export type ComponentSectionSimpleSection = { id: Scalars['ID']; sectionTitle?: Maybe; sectionTitleColor?: Maybe; - title?: Maybe; subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionSimpleSectionInput = { sectionTitle?: Maybe; sectionTitleColor?: Maybe; - title?: Maybe; subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionSingleFeatureSection = { __typename?: 'ComponentSectionSingleFeatureSection'; id: Scalars['ID']; - title?: Maybe; - subtitle?: Maybe; - sections?: Maybe>>; sectionTitle?: Maybe; + sections?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type ComponentSectionSingleFeatureSectionInput = { - title?: Maybe; - subtitle?: Maybe; - sections?: Maybe>>; sectionTitle?: Maybe; + sections?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type FileInfoInput = { - name?: Maybe; alternativeText?: Maybe; caption?: Maybe; + name?: Maybe; }; export type FileInput = { - name: Scalars['String']; alternativeText?: Maybe; caption?: Maybe; - width?: Maybe; - height?: Maybe; + created_by?: Maybe; + ext?: Maybe; formats?: Maybe; hash: Scalars['String']; - ext?: Maybe; + height?: Maybe; mime: Scalars['String']; - size: Scalars['Float']; - url: Scalars['String']; + name: Scalars['String']; previewUrl?: Maybe; provider: Scalars['String']; provider_metadata?: Maybe; related?: Maybe>>; - created_by?: Maybe; + size: Scalars['Float']; updated_by?: Maybe; + url: Scalars['String']; + width?: Maybe; }; export type FormMessageInput = { + created_by?: Maybe; email?: Maybe; - name?: Maybe; message?: Maybe; + name?: Maybe; published_at?: Maybe; - created_by?: Maybe; updated_by?: Maybe; }; export type FormMessages = { __typename?: 'FormMessages'; - id: Scalars['ID']; created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; email?: Maybe; - name?: Maybe; + id: Scalars['ID']; message?: Maybe; + name?: Maybe; published_at?: Maybe; + updated_at: Scalars['DateTime']; }; export type FormMessagesAggregator = { @@ -344,91 +331,91 @@ export type FormMessagesAggregator = { export type FormMessagesConnection = { __typename?: 'FormMessagesConnection'; - values?: Maybe>>; - groupBy?: Maybe; aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; }; export type FormMessagesConnectionCreated_At = { __typename?: 'FormMessagesConnectionCreated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesConnectionEmail = { __typename?: 'FormMessagesConnectionEmail'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesConnectionId = { __typename?: 'FormMessagesConnectionId'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesConnectionMessage = { __typename?: 'FormMessagesConnectionMessage'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesConnectionName = { __typename?: 'FormMessagesConnectionName'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesConnectionPublished_At = { __typename?: 'FormMessagesConnectionPublished_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesConnectionUpdated_At = { __typename?: 'FormMessagesConnectionUpdated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type FormMessagesGroupBy = { __typename?: 'FormMessagesGroupBy'; - id?: Maybe>>; created_at?: Maybe>>; - updated_at?: Maybe>>; email?: Maybe>>; - name?: Maybe>>; + id?: Maybe>>; message?: Maybe>>; + name?: Maybe>>; published_at?: Maybe>>; + updated_at?: Maybe>>; }; export type Global = { __typename?: 'Global'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - topbar?: Maybe; companyData?: Maybe; - footer?: Maybe; + created_at: Scalars['DateTime']; + footer?: Maybe; + id: Scalars['ID']; published_at?: Maybe; + topbar?: Maybe; + updated_at: Scalars['DateTime']; }; export type GlobalInput = { - topbar?: Maybe; companyData?: Maybe; - footer?: Maybe; - published_at?: Maybe; created_by?: Maybe; + footer?: Maybe; + published_at?: Maybe; + topbar?: Maybe; updated_by?: Maybe; }; export type I18NLocale = { __typename?: 'I18NLocale'; - id: Scalars['ID']; + code?: Maybe; created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; + id: Scalars['ID']; name?: Maybe; - code?: Maybe; + updated_at: Scalars['DateTime']; }; export type InputId = { @@ -437,21 +424,31 @@ export type InputId = { export type LocaleInput = { - name?: Maybe; code?: Maybe; created_by?: Maybe; + name?: Maybe; updated_by?: Maybe; }; export type Menu = { __typename?: 'Menu'; - id: Scalars['ID']; created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - links?: Maybe>>; - title: Scalars['String']; + id: Scalars['ID']; + links?: Maybe>>; + locale?: Maybe; + localizations?: Maybe>>; published_at?: Maybe; + title: Scalars['String']; + updated_at: Scalars['DateTime']; +}; + + +export type MenuLocalizationsArgs = { + limit?: Maybe; + sort?: Maybe; + start?: Maybe; + where?: Maybe; }; export type MenuAggregator = { @@ -462,96 +459,110 @@ export type MenuAggregator = { export type MenuConnection = { __typename?: 'MenuConnection'; - values?: Maybe>>; - groupBy?: Maybe; aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; }; export type MenuConnectionCreated_At = { __typename?: 'MenuConnectionCreated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type MenuConnectionId = { __typename?: 'MenuConnectionId'; + connection?: Maybe; key?: Maybe; +}; + +export type MenuConnectionLocale = { + __typename?: 'MenuConnectionLocale'; connection?: Maybe; + key?: Maybe; }; export type MenuConnectionPublished_At = { __typename?: 'MenuConnectionPublished_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type MenuConnectionTitle = { __typename?: 'MenuConnectionTitle'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type MenuConnectionUpdated_At = { __typename?: 'MenuConnectionUpdated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type MenuGroupBy = { __typename?: 'MenuGroupBy'; - id?: Maybe>>; created_at?: Maybe>>; - updated_at?: Maybe>>; - title?: Maybe>>; + id?: Maybe>>; + locale?: Maybe>>; published_at?: Maybe>>; + title?: Maybe>>; + updated_at?: Maybe>>; }; export type MenuInput = { - links?: Maybe>>; - title?: Maybe; - published_at?: Maybe; created_by?: Maybe; + links?: Maybe>>; + locale?: Maybe; + localizations?: Maybe>>; + published_at?: Maybe; + title: Scalars['String']; updated_by?: Maybe; }; -export type Morph = UsersPermissionsMe | UsersPermissionsMeRole | UsersPermissionsLoginPayload | UserPermissionsPasswordPayload | FormMessages | FormMessagesConnection | FormMessagesAggregator | FormMessagesGroupBy | FormMessagesConnectionId | FormMessagesConnectionCreated_At | FormMessagesConnectionUpdated_At | FormMessagesConnectionEmail | FormMessagesConnectionName | FormMessagesConnectionMessage | FormMessagesConnectionPublished_At | CreateFormMessagePayload | UpdateFormMessagePayload | DeleteFormMessagePayload | Global | UpdateGlobalPayload | DeleteGlobalPayload | Menu | MenuConnection | MenuAggregator | MenuGroupBy | MenuConnectionId | MenuConnectionCreated_At | MenuConnectionUpdated_At | MenuConnectionTitle | MenuConnectionPublished_At | CreateMenuPayload | UpdateMenuPayload | DeleteMenuPayload | Pages | PagesConnection | PagesAggregator | PagesGroupBy | PagesConnectionId | PagesConnectionCreated_At | PagesConnectionUpdated_At | PagesConnectionTitle | PagesConnectionPath | PagesConnectionLocale | PagesConnectionPublished_At | CreatePagePayload | UpdatePagePayload | DeletePagePayload | I18NLocale | UploadFile | UploadFileConnection | UploadFileAggregator | UploadFileAggregatorSum | UploadFileAggregatorAvg | UploadFileAggregatorMin | UploadFileAggregatorMax | UploadFileGroupBy | UploadFileConnectionId | UploadFileConnectionCreated_At | UploadFileConnectionUpdated_At | UploadFileConnectionName | UploadFileConnectionAlternativeText | UploadFileConnectionCaption | UploadFileConnectionWidth | UploadFileConnectionHeight | UploadFileConnectionFormats | UploadFileConnectionHash | UploadFileConnectionExt | UploadFileConnectionMime | UploadFileConnectionSize | UploadFileConnectionUrl | UploadFileConnectionPreviewUrl | UploadFileConnectionProvider | UploadFileConnectionProvider_Metadata | DeleteFilePayload | UsersPermissionsPermission | UsersPermissionsRole | UsersPermissionsRoleConnection | UsersPermissionsRoleAggregator | UsersPermissionsRoleGroupBy | UsersPermissionsRoleConnectionId | UsersPermissionsRoleConnectionName | UsersPermissionsRoleConnectionDescription | UsersPermissionsRoleConnectionType | CreateRolePayload | UpdateRolePayload | DeleteRolePayload | UsersPermissionsUser | UsersPermissionsUserConnection | UsersPermissionsUserAggregator | UsersPermissionsUserGroupBy | UsersPermissionsUserConnectionId | UsersPermissionsUserConnectionCreated_At | UsersPermissionsUserConnectionUpdated_At | UsersPermissionsUserConnectionUsername | UsersPermissionsUserConnectionEmail | UsersPermissionsUserConnectionProvider | UsersPermissionsUserConnectionConfirmed | UsersPermissionsUserConnectionBlocked | UsersPermissionsUserConnectionRole | CreateUserPayload | UpdateUserPayload | DeleteUserPayload | ComponentBlocksCard | ComponentBlocksNavigationBlock | ComponentBlocksSingleFeature | ComponentBlocksSocialBubble | ComponentGlobalBottomBar | ComponentGlobalCompanyData | ComponentGlobalFooterData | ComponentGlobalHeadquarter | ComponentGlobalTopbar | ComponentMenuPageLink | ComponentSectionCardSection | ComponentSectionContactsSection | ComponentSectionFooterSection | ComponentSectionHeroSection | ComponentSectionSimpleSection | ComponentSectionSingleFeatureSection; +export type Morph = ComponentBlocksCard | ComponentBlocksLink | ComponentBlocksSingleFeature | ComponentBlocksSocialBubble | ComponentGlobalCompanyData | ComponentGlobalFooter | ComponentGlobalHeadquarter | ComponentGlobalTopbar | ComponentProjectBlockquoteBlock | ComponentProjectImageBlock | ComponentProjectParagraphBlock | ComponentSectionCardSection | ComponentSectionContactsSection | ComponentSectionHeroSection | ComponentSectionSimpleSection | ComponentSectionSingleFeatureSection | FormMessages | FormMessagesAggregator | FormMessagesConnection | FormMessagesConnectionCreated_At | FormMessagesConnectionEmail | FormMessagesConnectionId | FormMessagesConnectionMessage | FormMessagesConnectionName | FormMessagesConnectionPublished_At | FormMessagesConnectionUpdated_At | FormMessagesGroupBy | Global | I18NLocale | Menu | MenuAggregator | MenuConnection | MenuConnectionCreated_At | MenuConnectionId | MenuConnectionLocale | MenuConnectionPublished_At | MenuConnectionTitle | MenuConnectionUpdated_At | MenuGroupBy | Page | PageAggregator | PageConnection | PageConnectionCreated_At | PageConnectionId | PageConnectionLocale | PageConnectionPath | PageConnectionPublished_At | PageConnectionTitle | PageConnectionUpdated_At | PageGroupBy | Project | ProjectAggregator | ProjectConnection | ProjectConnectionCompanyName | ProjectConnectionCreated_At | ProjectConnectionDescription | ProjectConnectionId | ProjectConnectionImage | ProjectConnectionLinkLabel | ProjectConnectionLinkPath | ProjectConnectionLocale | ProjectConnectionPath | ProjectConnectionProjectType | ProjectConnectionPublished_At | ProjectConnectionUpdated_At | ProjectGroupBy | UploadFile | UploadFileAggregator | UploadFileAggregatorAvg | UploadFileAggregatorMax | UploadFileAggregatorMin | UploadFileAggregatorSum | UploadFileConnection | UploadFileConnectionAlternativeText | UploadFileConnectionCaption | UploadFileConnectionCreated_At | UploadFileConnectionExt | UploadFileConnectionFormats | UploadFileConnectionHash | UploadFileConnectionHeight | UploadFileConnectionId | UploadFileConnectionMime | UploadFileConnectionName | UploadFileConnectionPreviewUrl | UploadFileConnectionProvider | UploadFileConnectionProvider_Metadata | UploadFileConnectionSize | UploadFileConnectionUpdated_At | UploadFileConnectionUrl | UploadFileConnectionWidth | UploadFileGroupBy | UserPermissionsPasswordPayload | UsersPermissionsLoginPayload | UsersPermissionsMe | UsersPermissionsMeRole | UsersPermissionsPermission | UsersPermissionsRole | UsersPermissionsRoleAggregator | UsersPermissionsRoleConnection | UsersPermissionsRoleConnectionDescription | UsersPermissionsRoleConnectionId | UsersPermissionsRoleConnectionName | UsersPermissionsRoleConnectionType | UsersPermissionsRoleGroupBy | UsersPermissionsUser | UsersPermissionsUserAggregator | UsersPermissionsUserConnection | UsersPermissionsUserConnectionBlocked | UsersPermissionsUserConnectionConfirmed | UsersPermissionsUserConnectionCreated_At | UsersPermissionsUserConnectionEmail | UsersPermissionsUserConnectionId | UsersPermissionsUserConnectionProvider | UsersPermissionsUserConnectionRole | UsersPermissionsUserConnectionUpdated_At | UsersPermissionsUserConnectionUsername | UsersPermissionsUserGroupBy | CreateFormMessagePayload | CreateMenuPayload | CreatePagePayload | CreateProjectPayload | CreateRolePayload | CreateUserPayload | DeleteFilePayload | DeleteFormMessagePayload | DeleteGlobalPayload | DeleteMenuPayload | DeletePagePayload | DeleteProjectPayload | DeleteRolePayload | DeleteUserPayload | UpdateFormMessagePayload | UpdateGlobalPayload | UpdateMenuPayload | UpdatePagePayload | UpdateProjectPayload | UpdateRolePayload | UpdateUserPayload; export type Mutation = { __typename?: 'Mutation'; createFormMessage?: Maybe; - updateFormMessage?: Maybe; - deleteFormMessage?: Maybe; - updateGlobal?: Maybe; - deleteGlobal?: Maybe; createMenu?: Maybe; - updateMenu?: Maybe; - deleteMenu?: Maybe; + createMenuLocalization: Menu; createPage?: Maybe; - updatePage?: Maybe; - deletePage?: Maybe; - /** Delete one file */ - deleteFile?: Maybe; + createPageLocalization: Page; + createProject?: Maybe; + createProjectLocalization: Project; /** Create a new role */ createRole?: Maybe; - /** Update an existing role */ - updateRole?: Maybe; - /** Delete an existing role */ - deleteRole?: Maybe; /** Create a new user */ createUser?: Maybe; - /** Update an existing user */ - updateUser?: Maybe; + /** Delete one file */ + deleteFile?: Maybe; + deleteFormMessage?: Maybe; + deleteGlobal?: Maybe; + deleteMenu?: Maybe; + deletePage?: Maybe; + deleteProject?: Maybe; + /** Delete an existing role */ + deleteRole?: Maybe; /** Delete an existing user */ deleteUser?: Maybe; - createPageLocalization: Pages; - upload: UploadFile; - multipleUpload: Array>; - updateFileInfo: UploadFile; + emailConfirmation?: Maybe; + forgotPassword?: Maybe; login: UsersPermissionsLoginPayload; + multipleUpload: Array>; register: UsersPermissionsLoginPayload; - forgotPassword?: Maybe; resetPassword?: Maybe; - emailConfirmation?: Maybe; + updateFileInfo: UploadFile; + updateFormMessage?: Maybe; + updateGlobal?: Maybe; + updateMenu?: Maybe; + updatePage?: Maybe; + updateProject?: Maybe; + /** Update an existing role */ + updateRole?: Maybe; + /** Update an existing user */ + updateUser?: Maybe; + upload: UploadFile; }; @@ -560,48 +571,43 @@ export type MutationCreateFormMessageArgs = { }; -export type MutationUpdateFormMessageArgs = { - input?: Maybe; -}; - - -export type MutationDeleteFormMessageArgs = { - input?: Maybe; +export type MutationCreateMenuArgs = { + input?: Maybe; }; -export type MutationUpdateGlobalArgs = { - input?: Maybe; +export type MutationCreateMenuLocalizationArgs = { + input: UpdateMenuInput; }; -export type MutationCreateMenuArgs = { - input?: Maybe; +export type MutationCreatePageArgs = { + input?: Maybe; }; -export type MutationUpdateMenuArgs = { - input?: Maybe; +export type MutationCreatePageLocalizationArgs = { + input: UpdatePageInput; }; -export type MutationDeleteMenuArgs = { - input?: Maybe; +export type MutationCreateProjectArgs = { + input?: Maybe; }; -export type MutationCreatePageArgs = { - input?: Maybe; +export type MutationCreateProjectLocalizationArgs = { + input: UpdateProjectInput; }; -export type MutationUpdatePageArgs = { - input?: Maybe; +export type MutationCreateRoleArgs = { + input?: Maybe; }; -export type MutationDeletePageArgs = { - input?: Maybe; +export type MutationCreateUserArgs = { + input?: Maybe; }; @@ -610,28 +616,28 @@ export type MutationDeleteFileArgs = { }; -export type MutationCreateRoleArgs = { - input?: Maybe; +export type MutationDeleteFormMessageArgs = { + input?: Maybe; }; -export type MutationUpdateRoleArgs = { - input?: Maybe; +export type MutationDeleteMenuArgs = { + input?: Maybe; }; -export type MutationDeleteRoleArgs = { - input?: Maybe; +export type MutationDeletePageArgs = { + input?: Maybe; }; -export type MutationCreateUserArgs = { - input?: Maybe; +export type MutationDeleteProjectArgs = { + input?: Maybe; }; -export type MutationUpdateUserArgs = { - input?: Maybe; +export type MutationDeleteRoleArgs = { + input?: Maybe; }; @@ -640,27 +646,39 @@ export type MutationDeleteUserArgs = { }; -export type MutationCreatePageLocalizationArgs = { - input: UpdatePageInput; +export type MutationEmailConfirmationArgs = { + confirmation: Scalars['String']; }; -export type MutationUploadArgs = { - refId?: Maybe; - ref?: Maybe; - field?: Maybe; - source?: Maybe; - info?: Maybe; - file: Scalars['Upload']; +export type MutationForgotPasswordArgs = { + email: Scalars['String']; +}; + + +export type MutationLoginArgs = { + input: UsersPermissionsLoginInput; }; export type MutationMultipleUploadArgs = { - refId?: Maybe; - ref?: Maybe; field?: Maybe; - source?: Maybe; files: Array>; + ref?: Maybe; + refId?: Maybe; + source?: Maybe; +}; + + +export type MutationRegisterArgs = { + input: UsersPermissionsRegisterInput; +}; + + +export type MutationResetPasswordArgs = { + code: Scalars['String']; + password: Scalars['String']; + passwordConfirmation: Scalars['String']; }; @@ -670,132 +688,296 @@ export type MutationUpdateFileInfoArgs = { }; -export type MutationLoginArgs = { - input: UsersPermissionsLoginInput; +export type MutationUpdateFormMessageArgs = { + input?: Maybe; }; -export type MutationRegisterArgs = { - input: UsersPermissionsRegisterInput; +export type MutationUpdateGlobalArgs = { + input?: Maybe; }; -export type MutationForgotPasswordArgs = { - email: Scalars['String']; +export type MutationUpdateMenuArgs = { + input?: Maybe; }; -export type MutationResetPasswordArgs = { - password: Scalars['String']; - passwordConfirmation: Scalars['String']; - code: Scalars['String']; +export type MutationUpdatePageArgs = { + input?: Maybe; }; -export type MutationEmailConfirmationArgs = { - confirmation: Scalars['String']; +export type MutationUpdateProjectArgs = { + input?: Maybe; }; -export type PageInput = { - title?: Maybe; - path: Scalars['String']; - sections?: Maybe>; - localizations?: Maybe>>; + +export type MutationUpdateRoleArgs = { + input?: Maybe; +}; + + +export type MutationUpdateUserArgs = { + input?: Maybe; +}; + + +export type MutationUploadArgs = { + field?: Maybe; + file: Scalars['Upload']; + info?: Maybe; + ref?: Maybe; + refId?: Maybe; + source?: Maybe; +}; + +export type Page = { + __typename?: 'Page'; + created_at: Scalars['DateTime']; + id: Scalars['ID']; locale?: Maybe; + localizations?: Maybe>>; + path?: Maybe; published_at?: Maybe; + sections?: Maybe>>; + title: Scalars['String']; + updated_at: Scalars['DateTime']; +}; + + +export type PageLocalizationsArgs = { + limit?: Maybe; + sort?: Maybe; + start?: Maybe; + where?: Maybe; +}; + +export type PageAggregator = { + __typename?: 'PageAggregator'; + count?: Maybe; + totalCount?: Maybe; +}; + +export type PageConnection = { + __typename?: 'PageConnection'; + aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; +}; + +export type PageConnectionCreated_At = { + __typename?: 'PageConnectionCreated_at'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageConnectionId = { + __typename?: 'PageConnectionId'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageConnectionLocale = { + __typename?: 'PageConnectionLocale'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageConnectionPath = { + __typename?: 'PageConnectionPath'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageConnectionPublished_At = { + __typename?: 'PageConnectionPublished_at'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageConnectionTitle = { + __typename?: 'PageConnectionTitle'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageConnectionUpdated_At = { + __typename?: 'PageConnectionUpdated_at'; + connection?: Maybe; + key?: Maybe; +}; + +export type PageGroupBy = { + __typename?: 'PageGroupBy'; + created_at?: Maybe>>; + id?: Maybe>>; + locale?: Maybe>>; + path?: Maybe>>; + published_at?: Maybe>>; + title?: Maybe>>; + updated_at?: Maybe>>; +}; + +export type PageInput = { created_by?: Maybe; + locale?: Maybe; + localizations?: Maybe>>; + path?: Maybe; + published_at?: Maybe; + sections?: Maybe>; + title?: Maybe; updated_by?: Maybe; }; -export type Pages = { - __typename?: 'Pages'; - id: Scalars['ID']; +export type PageSectionsDynamicZone = ComponentSectionCardSection | ComponentSectionContactsSection | ComponentSectionHeroSection | ComponentSectionSimpleSection | ComponentSectionSingleFeatureSection; + + +export type Project = { + __typename?: 'Project'; + blocks?: Maybe>>; + companyName?: Maybe; created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - title: Scalars['String']; - path: Scalars['String']; - sections?: Maybe>>; + description?: Maybe; + id: Scalars['ID']; + image?: Maybe; + linkLabel?: Maybe; + linkPath?: Maybe; locale?: Maybe; + localizations?: Maybe>>; + path?: Maybe; + projectType?: Maybe; published_at?: Maybe; - localizations?: Maybe>>; + updated_at: Scalars['DateTime']; }; -export type PagesLocalizationsArgs = { - sort?: Maybe; +export type ProjectLocalizationsArgs = { limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; -export type PagesAggregator = { - __typename?: 'PagesAggregator'; +export type ProjectAggregator = { + __typename?: 'ProjectAggregator'; count?: Maybe; totalCount?: Maybe; }; -export type PagesConnection = { - __typename?: 'PagesConnection'; - values?: Maybe>>; - groupBy?: Maybe; - aggregate?: Maybe; +export type ProjectBlocksDynamicZone = ComponentProjectBlockquoteBlock | ComponentProjectImageBlock | ComponentProjectParagraphBlock; + + +export type ProjectConnection = { + __typename?: 'ProjectConnection'; + aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; +}; + +export type ProjectConnectionCompanyName = { + __typename?: 'ProjectConnectionCompanyName'; + connection?: Maybe; + key?: Maybe; }; -export type PagesConnectionCreated_At = { - __typename?: 'PagesConnectionCreated_at'; +export type ProjectConnectionCreated_At = { + __typename?: 'ProjectConnectionCreated_at'; + connection?: Maybe; key?: Maybe; - connection?: Maybe; }; -export type PagesConnectionId = { - __typename?: 'PagesConnectionId'; +export type ProjectConnectionDescription = { + __typename?: 'ProjectConnectionDescription'; + connection?: Maybe; + key?: Maybe; +}; + +export type ProjectConnectionId = { + __typename?: 'ProjectConnectionId'; + connection?: Maybe; + key?: Maybe; +}; + +export type ProjectConnectionImage = { + __typename?: 'ProjectConnectionImage'; + connection?: Maybe; key?: Maybe; - connection?: Maybe; }; -export type PagesConnectionLocale = { - __typename?: 'PagesConnectionLocale'; +export type ProjectConnectionLinkLabel = { + __typename?: 'ProjectConnectionLinkLabel'; + connection?: Maybe; key?: Maybe; - connection?: Maybe; }; -export type PagesConnectionPath = { - __typename?: 'PagesConnectionPath'; +export type ProjectConnectionLinkPath = { + __typename?: 'ProjectConnectionLinkPath'; + connection?: Maybe; key?: Maybe; - connection?: Maybe; }; -export type PagesConnectionPublished_At = { - __typename?: 'PagesConnectionPublished_at'; - key?: Maybe; - connection?: Maybe; +export type ProjectConnectionLocale = { + __typename?: 'ProjectConnectionLocale'; + connection?: Maybe; + key?: Maybe; }; -export type PagesConnectionTitle = { - __typename?: 'PagesConnectionTitle'; +export type ProjectConnectionPath = { + __typename?: 'ProjectConnectionPath'; + connection?: Maybe; key?: Maybe; - connection?: Maybe; }; -export type PagesConnectionUpdated_At = { - __typename?: 'PagesConnectionUpdated_at'; - key?: Maybe; - connection?: Maybe; +export type ProjectConnectionProjectType = { + __typename?: 'ProjectConnectionProjectType'; + connection?: Maybe; + key?: Maybe; }; -export type PagesGroupBy = { - __typename?: 'PagesGroupBy'; - id?: Maybe>>; - created_at?: Maybe>>; - updated_at?: Maybe>>; - title?: Maybe>>; - path?: Maybe>>; - locale?: Maybe>>; - published_at?: Maybe>>; +export type ProjectConnectionPublished_At = { + __typename?: 'ProjectConnectionPublished_at'; + connection?: Maybe; + key?: Maybe; }; -export type PagesSectionsDynamicZone = ComponentSectionCardSection | ComponentSectionHeroSection | ComponentSectionSingleFeatureSection | ComponentSectionContactsSection | ComponentSectionSimpleSection; +export type ProjectConnectionUpdated_At = { + __typename?: 'ProjectConnectionUpdated_at'; + connection?: Maybe; + key?: Maybe; +}; +export type ProjectGroupBy = { + __typename?: 'ProjectGroupBy'; + companyName?: Maybe>>; + created_at?: Maybe>>; + description?: Maybe>>; + id?: Maybe>>; + image?: Maybe>>; + linkLabel?: Maybe>>; + linkPath?: Maybe>>; + locale?: Maybe>>; + path?: Maybe>>; + projectType?: Maybe>>; + published_at?: Maybe>>; + updated_at?: Maybe>>; +}; + +export type ProjectInput = { + blocks?: Maybe>; + companyName?: Maybe; + created_by?: Maybe; + description?: Maybe; + image?: Maybe; + linkLabel?: Maybe; + linkPath?: Maybe; + locale?: Maybe; + localizations?: Maybe>>; + path?: Maybe; + projectType?: Maybe; + published_at?: Maybe; + updated_by?: Maybe; +}; export enum PublicationState { Live = 'LIVE', @@ -804,18 +986,22 @@ export enum PublicationState { export type Query = { __typename?: 'Query'; + files?: Maybe>>; + filesConnection?: Maybe; formMessage?: Maybe; formMessages?: Maybe>>; formMessagesConnection?: Maybe; global?: Maybe; + me?: Maybe; menu?: Maybe; menus?: Maybe>>; menusConnection?: Maybe; - page?: Maybe; - pages?: Maybe>>; - pagesConnection?: Maybe; - files?: Maybe>>; - filesConnection?: Maybe; + page?: Maybe; + pages?: Maybe>>; + pagesConnection?: Maybe; + project?: Maybe; + projects?: Maybe>>; + projectsConnection?: Maybe; role?: Maybe; /** Retrieve all the existing roles. You can't apply filters on this query. */ roles?: Maybe>>; @@ -823,7 +1009,23 @@ export type Query = { user?: Maybe; users?: Maybe>>; usersConnection?: Maybe; - me?: Maybe; +}; + + +export type QueryFilesArgs = { + limit?: Maybe; + publicationState?: Maybe; + sort?: Maybe; + start?: Maybe; + where?: Maybe; +}; + + +export type QueryFilesConnectionArgs = { + limit?: Maybe; + sort?: Maybe; + start?: Maybe; + where?: Maybe; }; @@ -834,17 +1036,17 @@ export type QueryFormMessageArgs = { export type QueryFormMessagesArgs = { - sort?: Maybe; limit?: Maybe; + publicationState?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - publicationState?: Maybe; }; export type QueryFormMessagesConnectionArgs = { - sort?: Maybe; limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; @@ -862,17 +1064,19 @@ export type QueryMenuArgs = { export type QueryMenusArgs = { - sort?: Maybe; limit?: Maybe; + locale?: Maybe; + publicationState?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - publicationState?: Maybe; }; export type QueryMenusConnectionArgs = { - sort?: Maybe; limit?: Maybe; + locale?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; @@ -885,36 +1089,44 @@ export type QueryPageArgs = { export type QueryPagesArgs = { - sort?: Maybe; limit?: Maybe; + locale?: Maybe; + publicationState?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - publicationState?: Maybe; - locale?: Maybe; }; export type QueryPagesConnectionArgs = { - sort?: Maybe; limit?: Maybe; + locale?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - locale?: Maybe; }; -export type QueryFilesArgs = { - sort?: Maybe; +export type QueryProjectArgs = { + id: Scalars['ID']; + publicationState?: Maybe; +}; + + +export type QueryProjectsArgs = { limit?: Maybe; + locale?: Maybe; + publicationState?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - publicationState?: Maybe; }; -export type QueryFilesConnectionArgs = { - sort?: Maybe; +export type QueryProjectsConnectionArgs = { limit?: Maybe; + locale?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; @@ -927,17 +1139,17 @@ export type QueryRoleArgs = { export type QueryRolesArgs = { - sort?: Maybe; limit?: Maybe; + publicationState?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - publicationState?: Maybe; }; export type QueryRolesConnectionArgs = { - sort?: Maybe; limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; @@ -950,243 +1162,243 @@ export type QueryUserArgs = { export type QueryUsersArgs = { - sort?: Maybe; limit?: Maybe; + publicationState?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; - publicationState?: Maybe; }; export type QueryUsersConnectionArgs = { - sort?: Maybe; limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; export type RoleInput = { - name: Scalars['String']; + created_by?: Maybe; description?: Maybe; - type?: Maybe; + name: Scalars['String']; permissions?: Maybe>>; - users?: Maybe>>; - created_by?: Maybe; + type?: Maybe; updated_by?: Maybe; + users?: Maybe>>; }; export type UploadFile = { __typename?: 'UploadFile'; - id: Scalars['ID']; - created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - name: Scalars['String']; alternativeText?: Maybe; caption?: Maybe; - width?: Maybe; - height?: Maybe; + created_at: Scalars['DateTime']; + ext?: Maybe; formats?: Maybe; hash: Scalars['String']; - ext?: Maybe; + height?: Maybe; + id: Scalars['ID']; mime: Scalars['String']; - size: Scalars['Float']; - url: Scalars['String']; + name: Scalars['String']; previewUrl?: Maybe; provider: Scalars['String']; provider_metadata?: Maybe; related?: Maybe>>; + size: Scalars['Float']; + updated_at: Scalars['DateTime']; + url: Scalars['String']; + width?: Maybe; }; export type UploadFileRelatedArgs = { - sort?: Maybe; limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; export type UploadFileAggregator = { __typename?: 'UploadFileAggregator'; - count?: Maybe; - totalCount?: Maybe; - sum?: Maybe; avg?: Maybe; - min?: Maybe; + count?: Maybe; max?: Maybe; + min?: Maybe; + sum?: Maybe; + totalCount?: Maybe; }; export type UploadFileAggregatorAvg = { __typename?: 'UploadFileAggregatorAvg'; - width?: Maybe; height?: Maybe; size?: Maybe; + width?: Maybe; }; export type UploadFileAggregatorMax = { __typename?: 'UploadFileAggregatorMax'; - width?: Maybe; height?: Maybe; size?: Maybe; + width?: Maybe; }; export type UploadFileAggregatorMin = { __typename?: 'UploadFileAggregatorMin'; - width?: Maybe; height?: Maybe; size?: Maybe; + width?: Maybe; }; export type UploadFileAggregatorSum = { __typename?: 'UploadFileAggregatorSum'; - width?: Maybe; height?: Maybe; size?: Maybe; + width?: Maybe; }; export type UploadFileConnection = { __typename?: 'UploadFileConnection'; - values?: Maybe>>; - groupBy?: Maybe; aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; }; export type UploadFileConnectionAlternativeText = { __typename?: 'UploadFileConnectionAlternativeText'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionCaption = { __typename?: 'UploadFileConnectionCaption'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionCreated_At = { __typename?: 'UploadFileConnectionCreated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionExt = { __typename?: 'UploadFileConnectionExt'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionFormats = { __typename?: 'UploadFileConnectionFormats'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionHash = { __typename?: 'UploadFileConnectionHash'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionHeight = { __typename?: 'UploadFileConnectionHeight'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionId = { __typename?: 'UploadFileConnectionId'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionMime = { __typename?: 'UploadFileConnectionMime'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionName = { __typename?: 'UploadFileConnectionName'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionPreviewUrl = { __typename?: 'UploadFileConnectionPreviewUrl'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionProvider = { __typename?: 'UploadFileConnectionProvider'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionProvider_Metadata = { __typename?: 'UploadFileConnectionProvider_metadata'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionSize = { __typename?: 'UploadFileConnectionSize'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionUpdated_At = { __typename?: 'UploadFileConnectionUpdated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionUrl = { __typename?: 'UploadFileConnectionUrl'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileConnectionWidth = { __typename?: 'UploadFileConnectionWidth'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UploadFileGroupBy = { __typename?: 'UploadFileGroupBy'; - id?: Maybe>>; - created_at?: Maybe>>; - updated_at?: Maybe>>; - name?: Maybe>>; alternativeText?: Maybe>>; caption?: Maybe>>; - width?: Maybe>>; - height?: Maybe>>; + created_at?: Maybe>>; + ext?: Maybe>>; formats?: Maybe>>; hash?: Maybe>>; - ext?: Maybe>>; + height?: Maybe>>; + id?: Maybe>>; mime?: Maybe>>; - size?: Maybe>>; - url?: Maybe>>; + name?: Maybe>>; previewUrl?: Maybe>>; provider?: Maybe>>; provider_metadata?: Maybe>>; + size?: Maybe>>; + updated_at?: Maybe>>; + url?: Maybe>>; + width?: Maybe>>; }; export type UserInput = { - username: Scalars['String']; + blocked?: Maybe; + confirmationToken?: Maybe; + confirmed?: Maybe; + created_by?: Maybe; email: Scalars['String']; - provider?: Maybe; password?: Maybe; + provider?: Maybe; resetPasswordToken?: Maybe; - confirmationToken?: Maybe; - confirmed?: Maybe; - blocked?: Maybe; role?: Maybe; - created_by?: Maybe; updated_by?: Maybe; + username: Scalars['String']; }; export type UserPermissionsPasswordPayload = { @@ -1208,61 +1420,61 @@ export type UsersPermissionsLoginPayload = { export type UsersPermissionsMe = { __typename?: 'UsersPermissionsMe'; - id: Scalars['ID']; - username: Scalars['String']; - email: Scalars['String']; - confirmed?: Maybe; blocked?: Maybe; + confirmed?: Maybe; + email: Scalars['String']; + id: Scalars['ID']; role?: Maybe; + username: Scalars['String']; }; export type UsersPermissionsMeRole = { __typename?: 'UsersPermissionsMeRole'; + description?: Maybe; id: Scalars['ID']; name: Scalars['String']; - description?: Maybe; type?: Maybe; }; export type UsersPermissionsPermission = { __typename?: 'UsersPermissionsPermission'; - id: Scalars['ID']; - type: Scalars['String']; - controller: Scalars['String']; action: Scalars['String']; + controller: Scalars['String']; enabled: Scalars['Boolean']; + id: Scalars['ID']; policy?: Maybe; role?: Maybe; + type: Scalars['String']; }; export type UsersPermissionsRegisterInput = { - username: Scalars['String']; email: Scalars['String']; password: Scalars['String']; + username: Scalars['String']; }; export type UsersPermissionsRole = { __typename?: 'UsersPermissionsRole'; + description?: Maybe; id: Scalars['ID']; name: Scalars['String']; - description?: Maybe; - type?: Maybe; permissions?: Maybe>>; + type?: Maybe; users?: Maybe>>; }; export type UsersPermissionsRolePermissionsArgs = { - sort?: Maybe; limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; export type UsersPermissionsRoleUsersArgs = { - sort?: Maybe; limit?: Maybe; + sort?: Maybe; start?: Maybe; where?: Maybe; }; @@ -1275,54 +1487,54 @@ export type UsersPermissionsRoleAggregator = { export type UsersPermissionsRoleConnection = { __typename?: 'UsersPermissionsRoleConnection'; - values?: Maybe>>; - groupBy?: Maybe; aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; }; export type UsersPermissionsRoleConnectionDescription = { __typename?: 'UsersPermissionsRoleConnectionDescription'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsRoleConnectionId = { __typename?: 'UsersPermissionsRoleConnectionId'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsRoleConnectionName = { __typename?: 'UsersPermissionsRoleConnectionName'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsRoleConnectionType = { __typename?: 'UsersPermissionsRoleConnectionType'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsRoleGroupBy = { __typename?: 'UsersPermissionsRoleGroupBy'; + description?: Maybe>>; id?: Maybe>>; name?: Maybe>>; - description?: Maybe>>; type?: Maybe>>; }; export type UsersPermissionsUser = { __typename?: 'UsersPermissionsUser'; - id: Scalars['ID']; + blocked?: Maybe; + confirmed?: Maybe; created_at: Scalars['DateTime']; - updated_at: Scalars['DateTime']; - username: Scalars['String']; email: Scalars['String']; + id: Scalars['ID']; provider?: Maybe; - confirmed?: Maybe; - blocked?: Maybe; role?: Maybe; + updated_at: Scalars['DateTime']; + username: Scalars['String']; }; export type UsersPermissionsUserAggregator = { @@ -1333,76 +1545,76 @@ export type UsersPermissionsUserAggregator = { export type UsersPermissionsUserConnection = { __typename?: 'UsersPermissionsUserConnection'; - values?: Maybe>>; - groupBy?: Maybe; aggregate?: Maybe; + groupBy?: Maybe; + values?: Maybe>>; }; export type UsersPermissionsUserConnectionBlocked = { __typename?: 'UsersPermissionsUserConnectionBlocked'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionConfirmed = { __typename?: 'UsersPermissionsUserConnectionConfirmed'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionCreated_At = { __typename?: 'UsersPermissionsUserConnectionCreated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionEmail = { __typename?: 'UsersPermissionsUserConnectionEmail'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionId = { __typename?: 'UsersPermissionsUserConnectionId'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionProvider = { __typename?: 'UsersPermissionsUserConnectionProvider'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionRole = { __typename?: 'UsersPermissionsUserConnectionRole'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionUpdated_At = { __typename?: 'UsersPermissionsUserConnectionUpdated_at'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserConnectionUsername = { __typename?: 'UsersPermissionsUserConnectionUsername'; - key?: Maybe; connection?: Maybe; + key?: Maybe; }; export type UsersPermissionsUserGroupBy = { __typename?: 'UsersPermissionsUserGroupBy'; - id?: Maybe>>; + blocked?: Maybe>>; + confirmed?: Maybe>>; created_at?: Maybe>>; - updated_at?: Maybe>>; - username?: Maybe>>; email?: Maybe>>; + id?: Maybe>>; provider?: Maybe>>; - confirmed?: Maybe>>; - blocked?: Maybe>>; role?: Maybe>>; + updated_at?: Maybe>>; + username?: Maybe>>; }; export type CreateFormMessageInput = { @@ -1429,7 +1641,16 @@ export type CreatePageInput = { export type CreatePagePayload = { __typename?: 'createPagePayload'; - page?: Maybe; + page?: Maybe; +}; + +export type CreateProjectInput = { + data?: Maybe; +}; + +export type CreateProjectPayload = { + __typename?: 'createProjectPayload'; + project?: Maybe; }; export type CreateRoleInput = { @@ -1488,7 +1709,16 @@ export type DeletePageInput = { export type DeletePagePayload = { __typename?: 'deletePagePayload'; - page?: Maybe; + page?: Maybe; +}; + +export type DeleteProjectInput = { + where?: Maybe; +}; + +export type DeleteProjectPayload = { + __typename?: 'deleteProjectPayload'; + project?: Maybe; }; export type DeleteRoleInput = { @@ -1510,67 +1740,63 @@ export type DeleteUserPayload = { }; export type EditComponentBlocksCardInput = { - id?: Maybe; - title?: Maybe; description?: Maybe; + id?: Maybe; image?: Maybe; - url?: Maybe; label?: Maybe; + title?: Maybe; + url?: Maybe; }; -export type EditComponentBlocksNavigationBlockInput = { +export type EditComponentBlocksLinkInput = { id?: Maybe; label?: Maybe; url?: Maybe; }; export type EditComponentBlocksSingleFeatureInput = { - id?: Maybe; + bubbleColor?: Maybe; description?: Maybe; - title?: Maybe; + id?: Maybe; image?: Maybe; - url?: Maybe; - bubbleColor?: Maybe; label?: Maybe; + title?: Maybe; + url?: Maybe; }; export type EditComponentBlocksSocialBubbleInput = { - id?: Maybe; - url?: Maybe; bubbleColor?: Maybe; bubbleHoverColor?: Maybe; - image?: Maybe; -}; - -export type EditComponentGlobalBottomBarInput = { id?: Maybe; + image?: Maybe; + url?: Maybe; }; export type EditComponentGlobalCompanyDatumInput = { - id?: Maybe; - primaryEmail?: Maybe; - companyName?: Maybe; additionalLegalInfo?: Maybe; - locations?: Maybe>>; capital?: Maybe; - vatId?: Maybe; + companyName?: Maybe; copyright?: Maybe; + id?: Maybe; legalCompanyName?: Maybe; + locations?: Maybe>>; + primaryEmail?: Maybe; + vatId?: Maybe; }; -export type EditComponentGlobalFooterDatumInput = { - id?: Maybe; +export type EditComponentGlobalFooterInput = { description?: Maybe; + id?: Maybe; }; export type EditComponentGlobalHeadquarterInput = { + cap?: Maybe; + city?: Maybe; id?: Maybe; province?: Maybe; provinceInitials?: Maybe; - type?: Maybe; street?: Maybe; - city?: Maybe; - cap?: Maybe; + type?: Maybe; }; export type EditComponentGlobalTopbarInput = { @@ -1578,155 +1804,170 @@ export type EditComponentGlobalTopbarInput = { menu?: Maybe; }; -export type EditComponentMenuPageLinkInput = { +export type EditComponentProjectBlockquoteBlockInput = { + id?: Maybe; + text?: Maybe; +}; + +export type EditComponentProjectImageBlockInput = { id?: Maybe; - pageLinkName?: Maybe; - link?: Maybe; + image?: Maybe; +}; + +export type EditComponentProjectParagraphBlockInput = { + id?: Maybe; + text?: Maybe; }; export type EditComponentSectionCardSectionInput = { id?: Maybe; - title?: Maybe; - subtitle?: Maybe; - sections?: Maybe>>; sectionTitle?: Maybe; + sections?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type EditComponentSectionContactsSectionInput = { - id?: Maybe; - title?: Maybe; - subtitle?: Maybe; email?: Maybe; + id?: Maybe; sectionTitle?: Maybe; socialBubbles?: Maybe>>; -}; - -export type EditComponentSectionFooterSectionInput = { - id?: Maybe; - description?: Maybe; - email?: Maybe; - copyright?: Maybe; - sharedCapital?: Maybe; - street?: Maybe; - city?: Maybe; - vatNumber?: Maybe; - cap?: Maybe; + subtitle?: Maybe; + title?: Maybe; }; export type EditComponentSectionHeroSectionInput = { + areBubblesActive?: Maybe; id?: Maybe; - title?: Maybe; subtitle?: Maybe; - areBubblesActive?: Maybe; + title?: Maybe; }; export type EditComponentSectionSimpleSectionInput = { id?: Maybe; sectionTitle?: Maybe; sectionTitleColor?: Maybe; - title?: Maybe; subtitle?: Maybe; + title?: Maybe; }; export type EditComponentSectionSingleFeatureSectionInput = { id?: Maybe; - title?: Maybe; - subtitle?: Maybe; - sections?: Maybe>>; sectionTitle?: Maybe; + sections?: Maybe>>; + subtitle?: Maybe; + title?: Maybe; }; export type EditFileInput = { - name?: Maybe; alternativeText?: Maybe; caption?: Maybe; - width?: Maybe; - height?: Maybe; + created_by?: Maybe; + ext?: Maybe; formats?: Maybe; hash?: Maybe; - ext?: Maybe; + height?: Maybe; mime?: Maybe; - size?: Maybe; - url?: Maybe; + name?: Maybe; previewUrl?: Maybe; provider?: Maybe; provider_metadata?: Maybe; related?: Maybe>>; - created_by?: Maybe; + size?: Maybe; updated_by?: Maybe; + url?: Maybe; + width?: Maybe; }; export type EditFormMessageInput = { + created_by?: Maybe; email?: Maybe; - name?: Maybe; message?: Maybe; + name?: Maybe; published_at?: Maybe; - created_by?: Maybe; updated_by?: Maybe; }; export type EditGlobalInput = { - topbar?: Maybe; companyData?: Maybe; - footer?: Maybe; - published_at?: Maybe; created_by?: Maybe; + footer?: Maybe; + published_at?: Maybe; + topbar?: Maybe; updated_by?: Maybe; }; export type EditLocaleInput = { - name?: Maybe; code?: Maybe; created_by?: Maybe; + name?: Maybe; updated_by?: Maybe; }; export type EditMenuInput = { - links?: Maybe>>; - title?: Maybe; - published_at?: Maybe; created_by?: Maybe; + links?: Maybe>>; + locale?: Maybe; + localizations?: Maybe>>; + published_at?: Maybe; + title?: Maybe; updated_by?: Maybe; }; export type EditPageInput = { - title?: Maybe; - path?: Maybe; - sections?: Maybe>; - localizations?: Maybe>>; + created_by?: Maybe; locale?: Maybe; + localizations?: Maybe>>; + path?: Maybe; published_at?: Maybe; + sections?: Maybe>; + title?: Maybe; + updated_by?: Maybe; +}; + +export type EditProjectInput = { + blocks?: Maybe>; + companyName?: Maybe; created_by?: Maybe; + description?: Maybe; + image?: Maybe; + linkLabel?: Maybe; + linkPath?: Maybe; + locale?: Maybe; + localizations?: Maybe>>; + path?: Maybe; + projectType?: Maybe; + published_at?: Maybe; updated_by?: Maybe; }; export type EditRoleInput = { - name?: Maybe; + created_by?: Maybe; description?: Maybe; - type?: Maybe; + name?: Maybe; permissions?: Maybe>>; - users?: Maybe>>; - created_by?: Maybe; + type?: Maybe; updated_by?: Maybe; + users?: Maybe>>; }; export type EditUserInput = { - username?: Maybe; + blocked?: Maybe; + confirmationToken?: Maybe; + confirmed?: Maybe; + created_by?: Maybe; email?: Maybe; - provider?: Maybe; password?: Maybe; + provider?: Maybe; resetPasswordToken?: Maybe; - confirmationToken?: Maybe; - confirmed?: Maybe; - blocked?: Maybe; role?: Maybe; - created_by?: Maybe; updated_by?: Maybe; + username?: Maybe; }; export type UpdateFormMessageInput = { - where?: Maybe; data?: Maybe; + where?: Maybe; }; export type UpdateFormMessagePayload = { @@ -1744,8 +1985,8 @@ export type UpdateGlobalPayload = { }; export type UpdateMenuInput = { - where?: Maybe; data?: Maybe; + where?: Maybe; }; export type UpdateMenuPayload = { @@ -1754,18 +1995,28 @@ export type UpdateMenuPayload = { }; export type UpdatePageInput = { - where?: Maybe; data?: Maybe; + where?: Maybe; }; export type UpdatePagePayload = { __typename?: 'updatePagePayload'; - page?: Maybe; + page?: Maybe; }; -export type UpdateRoleInput = { +export type UpdateProjectInput = { + data?: Maybe; where?: Maybe; +}; + +export type UpdateProjectPayload = { + __typename?: 'updateProjectPayload'; + project?: Maybe; +}; + +export type UpdateRoleInput = { data?: Maybe; + where?: Maybe; }; export type UpdateRolePayload = { @@ -1774,8 +2025,8 @@ export type UpdateRolePayload = { }; export type UpdateUserInput = { - where?: Maybe; data?: Maybe; + where?: Maybe; }; export type UpdateUserPayload = { @@ -1789,113 +2040,33 @@ export type GetPagesQueryVariables = Exact<{ }>; -export type GetPagesQuery = ( - { __typename?: 'Query' } - & { pages?: Maybe - & { localizations?: Maybe - )>>>, sections?: Maybe - & { sections?: Maybe - & { image?: Maybe<( - { __typename?: 'UploadFile' } - & Pick - )> } - )>>> } - ) | ( - { __typename: 'ComponentSectionHeroSection' } - & Pick - ) | ( - { __typename: 'ComponentSectionSingleFeatureSection' } - & Pick - & { sections?: Maybe - & { image?: Maybe<( - { __typename?: 'UploadFile' } - & Pick - )> } - )>>> } - ) | ( - { __typename: 'ComponentSectionContactsSection' } - & Pick - ) | ( - { __typename: 'ComponentSectionSimpleSection' } - & Pick - )>>> } - )>>> } -); +export type GetPagesQuery = { __typename?: 'Query', pages?: Maybe, title: string, locale?: Maybe, localizations?: Maybe, locale?: Maybe }>>>, sections?: Maybe, title?: Maybe, subtitle?: Maybe, sections?: Maybe, description?: Maybe, url: string, label: string, image?: Maybe<{ __typename?: 'UploadFile', id: string, url: string, alternativeText?: Maybe }> }>>> } | { __typename: 'ComponentSectionContactsSection', id: string, title?: Maybe, subtitle?: Maybe, email?: Maybe, sectionTitle?: Maybe } | { __typename: 'ComponentSectionHeroSection', id: string, title?: Maybe, subtitle?: Maybe, areBubblesActive?: Maybe } | { __typename: 'ComponentSectionSimpleSection', id: string, sectionTitle?: Maybe, sectionTitleColor?: Maybe, title?: Maybe, subtitle?: Maybe } | { __typename: 'ComponentSectionSingleFeatureSection', id: string, sectionTitle?: Maybe, title?: Maybe, subtitle?: Maybe, sections?: Maybe, title?: Maybe, url: string, label: string, bubbleColor?: Maybe, image?: Maybe<{ __typename?: 'UploadFile', id: string, name: string, alternativeText?: Maybe, width?: Maybe, height?: Maybe, url: string }> }>>> }>>> }>>> }; export type InsertFormMessageMutationVariables = Exact<{ input?: Maybe; }>; -export type InsertFormMessageMutation = ( - { __typename?: 'Mutation' } - & { createFormMessage?: Maybe<( - { __typename?: 'createFormMessagePayload' } - & { formMessage?: Maybe<( - { __typename?: 'FormMessages' } - & Pick - )> } - )> } -); +export type InsertFormMessageMutation = { __typename?: 'Mutation', createFormMessage?: Maybe<{ __typename?: 'createFormMessagePayload', formMessage?: Maybe<{ __typename?: 'FormMessages', id: string, name?: Maybe, email?: Maybe, message?: Maybe }> }> }; export type CreatePageMutationVariables = Exact<{ input?: Maybe; }>; -export type CreatePageMutation = ( - { __typename?: 'Mutation' } - & { createPage?: Maybe<( - { __typename?: 'createPagePayload' } - & { page?: Maybe<( - { __typename?: 'Pages' } - & Pick - )> } - )> } -); +export type CreatePageMutation = { __typename?: 'Mutation', createPage?: Maybe<{ __typename?: 'createPagePayload', page?: Maybe<{ __typename?: 'Page', id: string }> }> }; export type GetGlobalQueryVariables = Exact<{ [key: string]: never; }>; -export type GetGlobalQuery = ( - { __typename?: 'Query' } - & { global?: Maybe<( - { __typename?: 'Global' } - & Pick - & { topbar?: Maybe<( - { __typename?: 'ComponentGlobalTopbar' } - & Pick - & { menu?: Maybe<( - { __typename?: 'Menu' } - & Pick - & { links?: Maybe - )>>> } - )> } - )>, companyData?: Maybe<( - { __typename?: 'ComponentGlobalCompanyData' } - & Pick - & { locations?: Maybe - )>>> } - )>, footer?: Maybe<( - { __typename?: 'ComponentGlobalFooterData' } - & Pick - )> } - )> } -); +export type GetGlobalQuery = { __typename?: 'Query', global?: Maybe<{ __typename?: 'Global', id: string, topbar?: Maybe<{ __typename?: 'ComponentGlobalTopbar', id: string, menu?: Maybe<{ __typename?: 'Menu', id: string, title: string, links?: Maybe, url?: Maybe }>>> }> }>, companyData?: Maybe<{ __typename?: 'ComponentGlobalCompanyData', id: string, primaryEmail?: Maybe, companyName?: Maybe, copyright?: Maybe, vatId?: Maybe, capital?: Maybe, additionalLegalInfo?: Maybe, locations?: Maybe, provinceInitials?: Maybe, type?: Maybe, street?: Maybe, city?: Maybe, cap?: Maybe }>>> }>, footer?: Maybe<{ __typename?: 'ComponentGlobalFooter', id: string, description?: Maybe }> }> }; + +export type GetProjectsQueryVariables = Exact<{ + locale?: Maybe; +}>; + + +export type GetProjectsQuery = { __typename?: 'Query', projects?: Maybe, linkLabel?: Maybe, projectType?: Maybe, companyName?: Maybe, description?: Maybe, path?: Maybe, locale?: Maybe, localizations?: Maybe, locale?: Maybe }>>>, image?: Maybe<{ __typename?: 'UploadFile', id: string, url: string, alternativeText?: Maybe }>, blocks?: Maybe } | { __typename: 'ComponentProjectImageBlock', id: string, image?: Maybe<{ __typename?: 'UploadFile', id: string, url: string, alternativeText?: Maybe }> } | { __typename: 'ComponentProjectParagraphBlock', id: string, text?: Maybe }>>> }>>> }; export type SaveChangesMutationVariables = Exact<{ pageInput?: Maybe; @@ -1904,38 +2075,14 @@ export type SaveChangesMutationVariables = Exact<{ }>; -export type SaveChangesMutation = ( - { __typename?: 'Mutation' } - & { updatePage?: Maybe<( - { __typename?: 'updatePagePayload' } - & { page?: Maybe<( - { __typename?: 'Pages' } - & Pick - )> } - )>, updateGlobal?: Maybe<( - { __typename?: 'updateGlobalPayload' } - & { global?: Maybe<( - { __typename?: 'Global' } - & { companyData?: Maybe<( - { __typename?: 'ComponentGlobalCompanyData' } - & Pick - )>, footer?: Maybe<( - { __typename?: 'ComponentGlobalFooterData' } - & Pick - )> } - )> } - )>, updateMenu?: Maybe<( - { __typename?: 'updateMenuPayload' } - & { menu?: Maybe<( - { __typename?: 'Menu' } - & Pick - & { links?: Maybe - )>>> } - )> } - )> } -); +export type SaveChangesMutation = { __typename?: 'Mutation', updatePage?: Maybe<{ __typename?: 'updatePagePayload', page?: Maybe<{ __typename?: 'Page', id: string }> }>, updateGlobal?: Maybe<{ __typename?: 'updateGlobalPayload', global?: Maybe<{ __typename?: 'Global', companyData?: Maybe<{ __typename?: 'ComponentGlobalCompanyData', id: string }>, footer?: Maybe<{ __typename?: 'ComponentGlobalFooter', id: string }> }> }>, updateMenu?: Maybe<{ __typename?: 'updateMenuPayload', menu?: Maybe<{ __typename?: 'Menu', id: string, title: string, links?: Maybe, label?: Maybe }>>> }> }> }; + +export type UpdateMenuMutationVariables = Exact<{ + input?: Maybe; +}>; + + +export type UpdateMenuMutation = { __typename?: 'Mutation', updateMenu?: Maybe<{ __typename?: 'updateMenuPayload', menu?: Maybe<{ __typename?: 'Menu', id: string }> }> }; export const GetPages = ` @@ -2085,6 +2232,51 @@ export const GetGlobal = ` } } `; +export const GetProjects = ` + query getProjects($locale: String) { + projects(locale: $locale) { + id + linkPath + linkLabel + projectType + companyName + description + path + locale + localizations { + id + path + locale + } + image { + id + url + alternativeText + } + blocks { + ... on ComponentProjectBlockquoteBlock { + __typename + id + text + } + ... on ComponentProjectImageBlock { + __typename + id + image { + id + url + alternativeText + } + } + ... on ComponentProjectParagraphBlock { + __typename + id + text + } + } + } +} + `; export const SaveChanges = ` mutation saveChanges($pageInput: updatePageInput, $globalInput: updateGlobalInput, $topbarInput: updateMenuInput) { updatePage(input: $pageInput) { @@ -2113,5 +2305,14 @@ export const SaveChanges = ` } } } +} + `; +export const UpdateMenu = ` + mutation updateMenu($input: updateMenuInput) { + updateMenu(input: $input) { + menu { + id + } + } } `; \ No newline at end of file diff --git a/frontend/graphql/getProjects.graphql b/frontend/graphql/getProjects.graphql new file mode 100644 index 00000000..8f3902db --- /dev/null +++ b/frontend/graphql/getProjects.graphql @@ -0,0 +1,43 @@ +query getProjects($locale: String) { + projects(locale: $locale) { + id + linkPath + linkLabel + projectType + companyName + description + path + locale + localizations { + id + path + locale + } + image { + id + url + alternativeText + } + blocks { + ... on ComponentProjectBlockquoteBlock { + __typename + id + text + } + ... on ComponentProjectImageBlock { + __typename + id + image { + id + url + alternativeText + } + } + ... on ComponentProjectParagraphBlock { + __typename + id + text + } + } + } +} diff --git a/frontend/graphql/updateMenu.graphql b/frontend/graphql/updateMenu.graphql new file mode 100644 index 00000000..3362bc64 --- /dev/null +++ b/frontend/graphql/updateMenu.graphql @@ -0,0 +1,7 @@ +mutation updateMenu($input: updateMenuInput) { + updateMenu(input: $input) { + menu { + id + } + } +} diff --git a/frontend/layouts/siteLayout/index.tsx b/frontend/layouts/siteLayout/index.tsx index b3f5f2ae..bce200e0 100644 --- a/frontend/layouts/siteLayout/index.tsx +++ b/frontend/layouts/siteLayout/index.tsx @@ -2,7 +2,7 @@ import { Box, useColorMode } from "@chakra-ui/react"; import Head from "next/head"; import React from "react"; -export function DefaultLayout({ children, title }: any) { +export function SiteLayout({ children, title }: any) { const { colorMode } = useColorMode(); return ( diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 956b33a2..a300672f 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -19,6 +19,12 @@ } } }, + "@ardatan/fetch-event-source": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@ardatan/fetch-event-source/-/fetch-event-source-2.0.2.tgz", + "integrity": "sha512-mcpz/wJ7s50PJIVz4OQ1Yim3w/AAchtYtIg0QMWiMR2cZZoI9t23hRyqeumtD5EmyJu0fxtjmQ5WY8GI86V4rQ==", + "dev": true + }, "@babel/code-frame": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", @@ -28,24 +34,24 @@ } }, "@babel/compat-data": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz", - "integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==" + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.7.tgz", + "integrity": "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==" }, "@babel/core": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz", - "integrity": "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==", + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz", + "integrity": "sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==", "requires": { "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", - "@babel/helper-compilation-targets": "^7.15.0", - "@babel/helper-module-transforms": "^7.15.0", - "@babel/helpers": "^7.14.8", - "@babel/parser": "^7.15.0", + "@babel/generator": "^7.14.5", + "@babel/helper-compilation-targets": "^7.14.5", + "@babel/helper-module-transforms": "^7.14.5", + "@babel/helpers": "^7.14.6", + "@babel/parser": "^7.14.6", "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0", + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -55,11 +61,11 @@ } }, "@babel/generator": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz", - "integrity": "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz", + "integrity": "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==", "requires": { - "@babel/types": "^7.15.0", + "@babel/types": "^7.14.5", "jsesc": "^2.5.1", "source-map": "^0.5.0" } @@ -73,26 +79,26 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz", - "integrity": "sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz", + "integrity": "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==", "requires": { - "@babel/compat-data": "^7.15.0", + "@babel/compat-data": "^7.14.5", "@babel/helper-validator-option": "^7.14.5", "browserslist": "^4.16.6", "semver": "^6.3.0" } }, "@babel/helper-create-class-features-plugin": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.0.tgz", - "integrity": "sha512-MdmDXgvTIi4heDVX/e9EFfeGpugqm9fobBVg/iioE8kueXrOHdRDe36FAY7SnE9xXLVeYCoJR/gdrBEIHRC83Q==", + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.6.tgz", + "integrity": "sha512-Z6gsfGofTxH/+LQXqYEK45kxmcensbzmk/oi8DmaQytlQCgqNZt9XQF8iqlI/SeXWVjaMNxvYvzaYw+kh42mDg==", "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-function-name": "^7.14.5", - "@babel/helper-member-expression-to-functions": "^7.15.0", + "@babel/helper-member-expression-to-functions": "^7.14.5", "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.0", + "@babel/helper-replace-supers": "^7.14.5", "@babel/helper-split-export-declaration": "^7.14.5" } }, @@ -123,11 +129,11 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz", - "integrity": "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==", + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz", + "integrity": "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==", "requires": { - "@babel/types": "^7.15.0" + "@babel/types": "^7.14.5" } }, "@babel/helper-module-imports": { @@ -139,18 +145,18 @@ } }, "@babel/helper-module-transforms": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz", - "integrity": "sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz", + "integrity": "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==", "requires": { "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.0", - "@babel/helper-simple-access": "^7.14.8", + "@babel/helper-replace-supers": "^7.14.5", + "@babel/helper-simple-access": "^7.14.5", "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.9", + "@babel/helper-validator-identifier": "^7.14.5", "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" } }, "@babel/helper-optimise-call-expression": { @@ -167,22 +173,22 @@ "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" }, "@babel/helper-replace-supers": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz", - "integrity": "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz", + "integrity": "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==", "requires": { - "@babel/helper-member-expression-to-functions": "^7.15.0", + "@babel/helper-member-expression-to-functions": "^7.14.5", "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" } }, "@babel/helper-simple-access": { - "version": "7.14.8", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz", - "integrity": "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz", + "integrity": "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==", "requires": { - "@babel/types": "^7.14.8" + "@babel/types": "^7.14.5" } }, "@babel/helper-skip-transparent-expression-wrappers": { @@ -202,9 +208,9 @@ } }, "@babel/helper-validator-identifier": { - "version": "7.14.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", - "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==" + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz", + "integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==" }, "@babel/helper-validator-option": { "version": "7.14.5", @@ -212,13 +218,13 @@ "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" }, "@babel/helpers": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.3.tgz", - "integrity": "sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g==", + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.6.tgz", + "integrity": "sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==", "requires": { "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" + "@babel/traverse": "^7.14.5", + "@babel/types": "^7.14.5" } }, "@babel/highlight": { @@ -232,9 +238,9 @@ } }, "@babel/parser": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz", - "integrity": "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==" + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz", + "integrity": "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==" }, "@babel/plugin-proposal-class-properties": { "version": "7.14.5", @@ -306,17 +312,17 @@ } }, "@babel/plugin-transform-block-scoping": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz", - "integrity": "sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.5.tgz", + "integrity": "sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, "@babel/plugin-transform-classes": { - "version": "7.14.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.9.tgz", - "integrity": "sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.5.tgz", + "integrity": "sha512-J4VxKAMykM06K/64z9rwiL6xnBHgB1+FVspqvlgCdwD1KUbQNfszeKVVOMh59w3sztHYIZDgnhOC4WbdEfHFDA==", "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-function-name": "^7.14.5", @@ -386,13 +392,13 @@ } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.0.tgz", - "integrity": "sha512-3H/R9s8cXcOGE8kgMlmjYYC9nqr5ELiPkJn4q0mypBrjhYQoc+5/Maq69vV4xRPWnkzZuwJPf5rArxpB/35Cig==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.5.tgz", + "integrity": "sha512-en8GfBtgnydoao2PS+87mKyw62k02k7kJ9ltbKe0fXTHrQmG6QZZflYuGI1VVG7sVpx4E1n7KBpNlPb8m78J+A==", "requires": { - "@babel/helper-module-transforms": "^7.15.0", + "@babel/helper-module-transforms": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", - "@babel/helper-simple-access": "^7.14.8", + "@babel/helper-simple-access": "^7.14.5", "babel-plugin-dynamic-import-node": "^2.3.3" } }, @@ -422,23 +428,23 @@ } }, "@babel/plugin-transform-react-display-name": { - "version": "7.15.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.15.1.tgz", - "integrity": "sha512-yQZ/i/pUCJAHI/LbtZr413S3VT26qNrEm0M5RRxQJA947/YNYwbZbBaXGDrq6CG5QsZycI1VIP6d7pQaBfP+8Q==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.14.5.tgz", + "integrity": "sha512-07aqY1ChoPgIxsuDviptRpVkWCSbXWmzQqcgy65C6YSFOfPFvb/DX3bBRHh7pCd/PMEEYHYWUTSVkCbkVainYQ==", "requires": { "@babel/helper-plugin-utils": "^7.14.5" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.14.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.9.tgz", - "integrity": "sha512-30PeETvS+AeD1f58i1OVyoDlVYQhap/K20ZrMjLmmzmC2AYR/G43D4sdJAaDAqCD3MYpSWbmrz3kES158QSLjw==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.14.5.tgz", + "integrity": "sha512-7RylxNeDnxc1OleDm0F5Q/BSL+whYRbOAR+bwgCxIr0L32v7UFh/pz1DLMZideAUxKT6eMoS2zQH6fyODLEi8Q==", "requires": { "@babel/helper-annotate-as-pure": "^7.14.5", "@babel/helper-module-imports": "^7.14.5", "@babel/helper-plugin-utils": "^7.14.5", "@babel/plugin-syntax-jsx": "^7.14.5", - "@babel/types": "^7.14.9" + "@babel/types": "^7.14.5" } }, "@babel/plugin-transform-shorthand-properties": { @@ -467,9 +473,9 @@ } }, "@babel/runtime": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz", - "integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==", + "version": "7.14.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.6.tgz", + "integrity": "sha512-/PCB2uJ7oM44tz8YhC4Z/6PeOKXp4K588f+5M3clr1M4zbqztlo0XEfJ2LEzj/FgwfgGcIdl8n7YYjTCI0BYwg==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -484,12 +490,12 @@ } }, "@babel/runtime-corejs3": { - "version": "7.15.3", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz", - "integrity": "sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==", + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.7.tgz", + "integrity": "sha512-Wvzcw4mBYbTagyBVZpAJWI06auSIj033T/yNE0Zn1xcup83MieCddZA7ls3kme17L4NOGBrQ09Q+nKB41RLWBA==", "dev": true, "requires": { - "core-js-pure": "^3.16.0", + "core-js-pure": "^3.15.0", "regenerator-runtime": "^0.13.4" } }, @@ -504,27 +510,27 @@ } }, "@babel/traverse": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz", - "integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==", + "version": "7.14.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz", + "integrity": "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ==", "requires": { "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", + "@babel/generator": "^7.14.5", "@babel/helper-function-name": "^7.14.5", "@babel/helper-hoist-variables": "^7.14.5", "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.15.0", - "@babel/types": "^7.15.0", + "@babel/parser": "^7.14.7", + "@babel/types": "^7.14.5", "debug": "^4.1.0", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.15.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", - "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz", + "integrity": "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==", "requires": { - "@babel/helper-validator-identifier": "^7.14.9", + "@babel/helper-validator-identifier": "^7.14.5", "to-fast-properties": "^2.0.0" } }, @@ -1193,9 +1199,9 @@ } }, "@emotion/sheet": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.0.2.tgz", - "integrity": "sha512-QQPB1B70JEVUHuNtzjHftMGv6eC3Y9wqavyarj4x4lg47RACkeSfNo5pxIOKizwS9AEFLohsqoaxGQj4p0vSIw==" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.0.1.tgz", + "integrity": "sha512-GbIvVMe4U+Zc+929N1V7nW6YYJtidj31lidSmdYcWozwoBIObXBnaJkKNDjZrLm9Nc0BR+ZyHNaRZxqNZbof5g==" }, "@emotion/styled": { "version": "11.3.0", @@ -1242,9 +1248,9 @@ } }, "@eslint/eslintrc": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz", - "integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==", + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.2.tgz", + "integrity": "sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -1259,9 +1265,9 @@ }, "dependencies": { "globals": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.10.0.tgz", - "integrity": "sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==", + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz", + "integrity": "sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -1298,34 +1304,35 @@ } }, "@graphql-codegen/cli": { - "version": "1.21.5", - "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-1.21.5.tgz", - "integrity": "sha512-w3SovNJ9qtMhFLAdPZeCdGvHXDgfdb53mueWDTyncOt04m+tohVnY4qExvyKLTN5zlGxrA/5ubp2x8Az0xQarA==", - "dev": true, - "requires": { - "@graphql-codegen/core": "1.17.10", - "@graphql-codegen/plugin-helpers": "^1.18.7", - "@graphql-tools/apollo-engine-loader": "^6.2.5", - "@graphql-tools/code-file-loader": "^6.3.1", - "@graphql-tools/git-loader": "^6.2.6", - "@graphql-tools/github-loader": "^6.2.5", - "@graphql-tools/graphql-file-loader": "^6.2.7", - "@graphql-tools/json-file-loader": "^6.2.6", - "@graphql-tools/load": "^6.2.8", - "@graphql-tools/prisma-loader": "^6.3.0", - "@graphql-tools/url-loader": "^6.10.1", - "@graphql-tools/utils": "^7.9.1", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.0.1.tgz", + "integrity": "sha512-ExCS7w0INpeKvIuPq2y1xfb0L6X2p4bP8Ai+CAsMpW7Yp7F2U/oe/2YBJkCi82oXyOkohW9Z04s/TI1f8xzNLQ==", + "dev": true, + "requires": { + "@graphql-codegen/core": "2.0.0", + "@graphql-codegen/plugin-helpers": "^2.0.0", + "@graphql-tools/apollo-engine-loader": "^7.0.1", + "@graphql-tools/code-file-loader": "^7.0.1", + "@graphql-tools/git-loader": "^7.0.1", + "@graphql-tools/github-loader": "^7.0.1", + "@graphql-tools/graphql-file-loader": "^7.0.1", + "@graphql-tools/json-file-loader": "^7.0.1", + "@graphql-tools/load": "^7.1.0", + "@graphql-tools/prisma-loader": "^7.0.1", + "@graphql-tools/url-loader": "^7.0.3", + "@graphql-tools/utils": "^8.0.1", "ansi-escapes": "^4.3.1", "chalk": "^4.1.0", "change-case-all": "1.0.14", - "chokidar": "^3.5.1", + "chokidar": "^3.5.2", "common-tags": "^1.8.0", "cosmiconfig": "^7.0.0", "debounce": "^1.2.0", "dependency-graph": "^0.11.0", "detect-indent": "^6.0.0", "glob": "^7.1.6", - "graphql-config": "^3.3.0", + "globby": "^11.0.4", + "graphql-config": "^4.0.1", "inquirer": "^7.3.3", "is-glob": "^4.0.1", "json-to-pretty-yaml": "^1.2.2", @@ -1337,13 +1344,36 @@ "mkdirp": "^1.0.4", "string-env-interpolation": "^1.0.1", "ts-log": "^2.2.3", - "tslib": "~2.2.0", + "tslib": "~2.3.0", "valid-url": "^1.0.9", "wrap-ansi": "^7.0.0", "yaml": "^1.10.0", "yargs": "^17.0.0" }, "dependencies": { + "@graphql-codegen/plugin-helpers": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz", + "integrity": "sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.1.1", + "change-case-all": "1.0.14", + "common-tags": "1.8.0", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.3.0" + } + }, + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -1363,6 +1393,22 @@ "supports-color": "^7.1.0" } }, + "chokidar": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", + "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, "cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -1390,9 +1436,9 @@ "dev": true }, "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, "requires": { "@types/parse-json": "^4.0.0", @@ -1402,18 +1448,47 @@ "yaml": "^1.10.0" } }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "dev": true + }, "mkdirp": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "dev": true }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -1423,12 +1498,6 @@ "has-flag": "^4.0.0" } }, - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true - }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -1447,9 +1516,9 @@ "dev": true }, "yargs": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.0.tgz", - "integrity": "sha512-SQr7qqmQ2sNijjJGHL4u7t8vyDZdZ3Ahkmo4sc1w5xI9TBX0QDdG/g4SFnxtWOsGLjwHQue57eFALfwFCnixgg==", + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.1.1.tgz", + "integrity": "sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==", "dev": true, "requires": { "cliui": "^7.0.2", @@ -1470,76 +1539,143 @@ } }, "@graphql-codegen/core": { - "version": "1.17.10", - "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-1.17.10.tgz", - "integrity": "sha512-RA3umgVDs/RI/+ztHh+H4GfJxrJUfWJQqoAkMfX4qPTVO5qsy3R4vPudE0oP8w+kFbL8dFsRfAAPUZxI4jV/hQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.0.0.tgz", + "integrity": "sha512-58NwI1WiJLElrsLGAryb/A9G+G61vYv97xDNm9P0XI8sDSbp/JcFkfrSk18HgdWpxxZYCFdPp7qr/DMWKqt0xQ==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", - "@graphql-tools/merge": "^6.2.14", - "@graphql-tools/utils": "^7.9.1", - "tslib": "~2.2.0" + "@graphql-codegen/plugin-helpers": "^2.0.0", + "@graphql-tools/merge": "^6.2.16", + "@graphql-tools/utils": "^8.0.1", + "tslib": "~2.3.0" }, "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", + "@graphql-codegen/plugin-helpers": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz", + "integrity": "sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.1.1", + "change-case-all": "1.0.14", + "common-tags": "1.8.0", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.3.0" + } + }, + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, + "import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", "dev": true } } }, "@graphql-codegen/introspection": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-1.18.2.tgz", - "integrity": "sha512-1SuhWu6nbOIOSZdQLNmHHVN8VsTavUQUD6OWjUuR3Bjpw9jfykNYXPpGGQxdCa5hmiWvn2JQU+qtgtERzz4+rg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-2.0.0.tgz", + "integrity": "sha512-wfveK5l155b/uyOxsBPa4XzZ9KB0vpYRKKs6qakxBpRXGLYMUEKrPmDbzFXuj8uOppyTqVuewspiiI/ax6srPQ==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.5", - "tslib": "~2.2.0" + "@graphql-codegen/plugin-helpers": "^2.0.0", + "tslib": "~2.3.0" }, "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", + "@graphql-codegen/plugin-helpers": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz", + "integrity": "sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.1.1", + "change-case-all": "1.0.14", + "common-tags": "1.8.0", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.3.0" + } + }, + "@graphql-tools/utils": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.1.tgz", + "integrity": "sha512-xjyetFpDy2/MY8P4+NiE7i1czCrAI36Twjm+jcoBfPctMnJegZkZnLfepmjwYQ92Sv9hnhr+x52OUQAddj29CQ==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, + "import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", "dev": true } } }, "@graphql-codegen/plugin-helpers": { - "version": "1.18.8", - "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-1.18.8.tgz", - "integrity": "sha512-mb4I9j9lMGqvGggYuZ0CV+Hme08nar68xkpPbAVotg/ZBmlhZIok/HqW2BcMQi7Rj+Il5HQMeQ1wQ1M7sv/TlQ==", + "version": "1.18.7", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-1.18.7.tgz", + "integrity": "sha512-8ICOrXlsvyL1dpVz8C9b7H31d4DJpDd75WfjMn6Xjqz81Ah8xDn1Bi+7YXRCCILCBmvI94k6fi8qpsIVhFBBjQ==", "requires": { "@graphql-tools/utils": "^7.9.1", "common-tags": "1.8.0", - "import-from": "4.0.0", + "import-from": "3.0.0", "lodash": "~4.17.0", - "tslib": "~2.3.0" + "tslib": "~2.2.0" + }, + "dependencies": { + "tslib": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", + "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==" + } } }, "@graphql-codegen/typescript": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-1.22.3.tgz", - "integrity": "sha512-qLSnVN2g/UxxzhRWHZcHw/Xkvx5wZh0RDzmg9MjAlPnDwAI89jg/ljKDwtTOfN+F6M8W4gQ9mjkWd6NxBQRgXw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.0.0.tgz", + "integrity": "sha512-SsgN3DG0MntpMENkMEzbLSUQr8HBVqEcuDY5259+aJM4TizfVVfxbpWuBCxBLz2d0RdQpF5YzkzdDrJ123rQ0g==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", - "@graphql-codegen/visitor-plugin-common": "1.21.2", + "@graphql-codegen/plugin-helpers": "^2.0.0", + "@graphql-codegen/visitor-plugin-common": "2.0.0", "auto-bind": "~4.0.0", "tslib": "~2.3.0" }, "dependencies": { + "@graphql-codegen/plugin-helpers": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz", + "integrity": "sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.1.1", + "change-case-all": "1.0.14", + "common-tags": "1.8.0", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.3.0" + } + }, "@graphql-codegen/visitor-plugin-common": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-1.21.2.tgz", - "integrity": "sha512-Bb5P2Hw7f+lNWfazjcGwVcX434stNd7/EhgA+S2Ro0Bn1xVCK/WL0IHT2TGb+pf6/lWg3Y+J9wo2aOKkqDHT6A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.0.0.tgz", + "integrity": "sha512-JUmOgUwc/hNiUDyihuzDQH/YZtAQseGo67buRDYLe5QW7XW9c9twEC0DlqzEKO8poJDDeemDAr8TPgBlLykXgg==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", + "@graphql-codegen/plugin-helpers": "^2.0.0", "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.3.3", "array.prototype.flatmap": "^1.2.4", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", @@ -1548,6 +1684,117 @@ "parse-filepath": "^1.0.2", "tslib": "~2.3.0" } + }, + "@graphql-tools/relay-operation-optimizer": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.0.tgz", + "integrity": "sha512-auNvHC8gHu9BHBPnLA5c8Iv5VAXQG866KZJz7ljhKpXPdlPevK4zjHlVJwqnF8H6clJ9NgZpizN4kNNCe/3R9g==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.2.0", + "relay-compiler": "11.0.2", + "tslib": "~2.3.0" + } + }, + "@graphql-tools/utils": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.1.tgz", + "integrity": "sha512-xjyetFpDy2/MY8P4+NiE7i1czCrAI36Twjm+jcoBfPctMnJegZkZnLfepmjwYQ92Sv9hnhr+x52OUQAddj29CQ==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "dev": true + }, + "relay-compiler": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-11.0.2.tgz", + "integrity": "sha512-nDVAURT1YncxSiDOKa39OiERkAr0DUcPmlHlg+C8zD+EiDo2Sgczf2R6cDsN4UcDvucYtkLlDLFErPwgLs8WzA==", + "dev": true, + "requires": { + "@babel/core": "^7.0.0", + "@babel/generator": "^7.5.0", + "@babel/parser": "^7.0.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.3.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "11.0.2", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + } + }, + "relay-runtime": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-11.0.2.tgz", + "integrity": "sha512-xxZkIRnL8kNE1cxmwDXX8P+wSeWLR+0ACFyAiAhvfWWAyjXb+bhjJ2FSsRGlNYfkqaTNEuDqpnodQV1/fF7Idw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.0.0", + "fbjs": "^3.0.0", + "invariant": "^2.2.4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, @@ -1563,27 +1810,41 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-1.18.2.tgz", - "integrity": "sha512-AF9OCNBq0HuW3C5nsO11+53fgFGE40lNUtjSIJocvMcstEKvHx4GrzYO0XIpZsjRPrnyds00Y5xTSynLqB0XxA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.0.1.tgz", + "integrity": "sha512-AY0iwqPjlxLsdUskQAP/vhpA9Kp+OZl35B6Pp2UOlQzs6eQ/8yHtlFFRdo5Pn9D+S3u4zQxLZvK03fV6lxxPrA==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", - "@graphql-codegen/typescript": "^1.22.3", - "@graphql-codegen/visitor-plugin-common": "1.21.2", + "@graphql-codegen/plugin-helpers": "^2.0.0", + "@graphql-codegen/typescript": "^2.0.0", + "@graphql-codegen/visitor-plugin-common": "2.0.0", "auto-bind": "~4.0.0", "tslib": "~2.3.0" }, "dependencies": { + "@graphql-codegen/plugin-helpers": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz", + "integrity": "sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.1.1", + "change-case-all": "1.0.14", + "common-tags": "1.8.0", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.3.0" + } + }, "@graphql-codegen/visitor-plugin-common": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-1.21.2.tgz", - "integrity": "sha512-Bb5P2Hw7f+lNWfazjcGwVcX434stNd7/EhgA+S2Ro0Bn1xVCK/WL0IHT2TGb+pf6/lWg3Y+J9wo2aOKkqDHT6A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.0.0.tgz", + "integrity": "sha512-JUmOgUwc/hNiUDyihuzDQH/YZtAQseGo67buRDYLe5QW7XW9c9twEC0DlqzEKO8poJDDeemDAr8TPgBlLykXgg==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", + "@graphql-codegen/plugin-helpers": "^2.0.0", "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.3.3", "array.prototype.flatmap": "^1.2.4", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", @@ -1592,31 +1853,156 @@ "parse-filepath": "^1.0.2", "tslib": "~2.3.0" } + }, + "@graphql-tools/relay-operation-optimizer": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.0.tgz", + "integrity": "sha512-auNvHC8gHu9BHBPnLA5c8Iv5VAXQG866KZJz7ljhKpXPdlPevK4zjHlVJwqnF8H6clJ9NgZpizN4kNNCe/3R9g==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.2.0", + "relay-compiler": "11.0.2", + "tslib": "~2.3.0" + } + }, + "@graphql-tools/utils": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.1.tgz", + "integrity": "sha512-xjyetFpDy2/MY8P4+NiE7i1czCrAI36Twjm+jcoBfPctMnJegZkZnLfepmjwYQ92Sv9hnhr+x52OUQAddj29CQ==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "dev": true + }, + "relay-compiler": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-11.0.2.tgz", + "integrity": "sha512-nDVAURT1YncxSiDOKa39OiERkAr0DUcPmlHlg+C8zD+EiDo2Sgczf2R6cDsN4UcDvucYtkLlDLFErPwgLs8WzA==", + "dev": true, + "requires": { + "@babel/core": "^7.0.0", + "@babel/generator": "^7.5.0", + "@babel/parser": "^7.0.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.3.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "11.0.2", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + } + }, + "relay-runtime": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-11.0.2.tgz", + "integrity": "sha512-xxZkIRnL8kNE1cxmwDXX8P+wSeWLR+0ACFyAiAhvfWWAyjXb+bhjJ2FSsRGlNYfkqaTNEuDqpnodQV1/fF7Idw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.0.0", + "fbjs": "^3.0.0", + "invariant": "^2.2.4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, "@graphql-codegen/typescript-react-apollo": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-react-apollo/-/typescript-react-apollo-2.2.7.tgz", - "integrity": "sha512-s7j+ZCzNdkt/d6NxbSYKXAonFHWwcrYkFrGQ6N+FoCtsP/WaGf57glMyzpewuKGJiNugNsMjv/cpDKoc0j/QPw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-react-apollo/-/typescript-react-apollo-3.0.0.tgz", + "integrity": "sha512-acg2GArcdHYusLragNCqrDjLLbE3M2I9cUuckIoo8KiDtB3/PzQ9eCg3WRjgPYA5zaFpLaFS6QQlRJhD/j0Wgw==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", - "@graphql-codegen/visitor-plugin-common": "1.21.2", + "@graphql-codegen/plugin-helpers": "^2.0.0", + "@graphql-codegen/visitor-plugin-common": "2.0.0", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", "tslib": "~2.3.0" }, "dependencies": { + "@graphql-codegen/plugin-helpers": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.1.1.tgz", + "integrity": "sha512-7jjN9fekMQkpd7cRTbaBxgqt/hkR3CXeOUSsEyHFDDHKtvCrnev3iyc75IeWXpO9tOwDE8mVPTzEZnu4QukrNA==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.1.1", + "change-case-all": "1.0.14", + "common-tags": "1.8.0", + "import-from": "4.0.0", + "lodash": "~4.17.0", + "tslib": "~2.3.0" + } + }, "@graphql-codegen/visitor-plugin-common": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-1.21.2.tgz", - "integrity": "sha512-Bb5P2Hw7f+lNWfazjcGwVcX434stNd7/EhgA+S2Ro0Bn1xVCK/WL0IHT2TGb+pf6/lWg3Y+J9wo2aOKkqDHT6A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.0.0.tgz", + "integrity": "sha512-JUmOgUwc/hNiUDyihuzDQH/YZtAQseGo67buRDYLe5QW7XW9c9twEC0DlqzEKO8poJDDeemDAr8TPgBlLykXgg==", "dev": true, "requires": { - "@graphql-codegen/plugin-helpers": "^1.18.7", + "@graphql-codegen/plugin-helpers": "^2.0.0", "@graphql-tools/optimize": "^1.0.1", - "@graphql-tools/relay-operation-optimizer": "^6.3.0", + "@graphql-tools/relay-operation-optimizer": "^6.3.3", "array.prototype.flatmap": "^1.2.4", "auto-bind": "~4.0.0", "change-case-all": "1.0.14", @@ -1625,6 +2011,117 @@ "parse-filepath": "^1.0.2", "tslib": "~2.3.0" } + }, + "@graphql-tools/relay-operation-optimizer": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.4.0.tgz", + "integrity": "sha512-auNvHC8gHu9BHBPnLA5c8Iv5VAXQG866KZJz7ljhKpXPdlPevK4zjHlVJwqnF8H6clJ9NgZpizN4kNNCe/3R9g==", + "dev": true, + "requires": { + "@graphql-tools/utils": "^8.2.0", + "relay-compiler": "11.0.2", + "tslib": "~2.3.0" + } + }, + "@graphql-tools/utils": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.1.tgz", + "integrity": "sha512-xjyetFpDy2/MY8P4+NiE7i1czCrAI36Twjm+jcoBfPctMnJegZkZnLfepmjwYQ92Sv9hnhr+x52OUQAddj29CQ==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", + "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "dev": true + }, + "relay-compiler": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-11.0.2.tgz", + "integrity": "sha512-nDVAURT1YncxSiDOKa39OiERkAr0DUcPmlHlg+C8zD+EiDo2Sgczf2R6cDsN4UcDvucYtkLlDLFErPwgLs8WzA==", + "dev": true, + "requires": { + "@babel/core": "^7.0.0", + "@babel/generator": "^7.5.0", + "@babel/parser": "^7.0.0", + "@babel/runtime": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "babel-preset-fbjs": "^3.3.0", + "chalk": "^4.0.0", + "fb-watchman": "^2.0.0", + "fbjs": "^3.0.0", + "glob": "^7.1.1", + "immutable": "~3.7.6", + "invariant": "^2.2.4", + "nullthrows": "^1.1.1", + "relay-runtime": "11.0.2", + "signedsource": "^1.0.0", + "yargs": "^15.3.1" + } + }, + "relay-runtime": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-11.0.2.tgz", + "integrity": "sha512-xxZkIRnL8kNE1cxmwDXX8P+wSeWLR+0ACFyAiAhvfWWAyjXb+bhjJ2FSsRGlNYfkqaTNEuDqpnodQV1/fF7Idw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.0.0", + "fbjs": "^3.0.0", + "invariant": "^2.2.4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, @@ -1646,248 +2143,266 @@ } }, "@graphql-tools/apollo-engine-loader": { - "version": "6.2.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-6.2.5.tgz", - "integrity": "sha512-CE4uef6PyxtSG+7OnLklIr2BZZDgjO89ZXK47EKdY7jQy/BQD/9o+8SxPsgiBc+2NsDJH2I6P/nqoaJMOEat6g==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.1.0.tgz", + "integrity": "sha512-JKK34xQiB1l2sBfi8G5c1HZZkleQbwOlLAkySycKTrU+VMzu5lEjhzYwowIbLLjTthjUHQkRFANHkxvB42t5SQ==", "dev": true, "requires": { - "@graphql-tools/utils": "^7.0.0", - "cross-fetch": "3.0.6", - "tslib": "~2.0.1" + "@graphql-tools/utils": "^8.2.0", + "cross-fetch": "^3.1.4", + "sync-fetch": "0.3.0", + "tslib": "~2.3.0" }, "dependencies": { - "cross-fetch": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz", - "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==", + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { - "node-fetch": "2.6.1" + "tslib": "~2.3.0" } - }, - "tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", - "dev": true } } }, "@graphql-tools/batch-execute": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.1.2.tgz", - "integrity": "sha512-IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.1.0.tgz", + "integrity": "sha512-PPf8SZto4elBtkaV65RldkjvxCuwYV7tLYKH+w6QnsxogfjrtiwijmewtqIlfnpPRnuhmMzmOlhoDyf0I8EwHw==", "dev": true, "requires": { - "@graphql-tools/utils": "^7.7.0", + "@graphql-tools/utils": "^8.2.0", "dataloader": "2.0.0", - "tslib": "~2.2.0", - "value-or-promise": "1.0.6" + "tslib": "~2.3.0", + "value-or-promise": "1.0.10" }, "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true - }, - "value-or-promise": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.6.tgz", - "integrity": "sha512-9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, "@graphql-tools/code-file-loader": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-6.3.1.tgz", - "integrity": "sha512-ZJimcm2ig+avgsEOWWVvAaxZrXXhiiSZyYYOJi0hk9wh5BxZcLUNKkTp6EFnZE/jmGUwuos3pIjUD3Hwi3Bwhg==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.1.0.tgz", + "integrity": "sha512-1EVuKGzTDcZoPQAjJYy0Fw2vwLN1ZnWYDlCZLaqml87tCUzJcqcHlQw26SRhDEvVnJC/oCV+mH+2QE55UxqWuA==", "dev": true, "requires": { - "@graphql-tools/graphql-tag-pluck": "^6.5.1", - "@graphql-tools/utils": "^7.0.0", - "tslib": "~2.1.0" + "@graphql-tools/graphql-tag-pluck": "^7.1.0", + "@graphql-tools/utils": "^8.2.0", + "globby": "^11.0.3", + "tslib": "~2.3.0", + "unixify": "^1.0.0" }, "dependencies": { - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, "@graphql-tools/delegate": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.5.tgz", - "integrity": "sha512-bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g==", + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-8.2.1.tgz", + "integrity": "sha512-fvQjSrCJCfchSQlLNHPcj1TwojyV1CPtXmwtSEVKvyp9axokuP37WGyliOWUYCepfwpklklLFUeTEiWlCoxv2Q==", "dev": true, "requires": { - "@ardatan/aggregate-error": "0.0.6", - "@graphql-tools/batch-execute": "^7.1.2", - "@graphql-tools/schema": "^7.1.5", - "@graphql-tools/utils": "^7.7.1", + "@graphql-tools/batch-execute": "^8.1.0", + "@graphql-tools/schema": "^8.2.0", + "@graphql-tools/utils": "^8.2.0", "dataloader": "2.0.0", - "tslib": "~2.2.0", - "value-or-promise": "1.0.6" + "tslib": "~2.3.0", + "value-or-promise": "1.0.10" }, "dependencies": { - "@graphql-tools/schema": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-7.1.5.tgz", - "integrity": "sha512-uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==", + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { - "@graphql-tools/utils": "^7.1.2", - "tslib": "~2.2.0", - "value-or-promise": "1.0.6" + "tslib": "~2.3.0" } - }, - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true - }, - "value-or-promise": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.6.tgz", - "integrity": "sha512-9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg==", - "dev": true } } }, "@graphql-tools/git-loader": { - "version": "6.2.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-6.2.6.tgz", - "integrity": "sha512-ooQTt2CaG47vEYPP3CPD+nbA0F+FYQXfzrB1Y1ABN9K3d3O2RK3g8qwslzZaI8VJQthvKwt0A95ZeE4XxteYfw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-7.1.0.tgz", + "integrity": "sha512-n6JBKc7Po8aE9/pueH0wO2EXicueuCT3VCo9YcFcCkdEl1tUZwIoIUgNUqgki2eS8u2Z76F2EWZwWBWO2ipXEw==", "dev": true, "requires": { - "@graphql-tools/graphql-tag-pluck": "^6.2.6", - "@graphql-tools/utils": "^7.0.0", - "tslib": "~2.1.0" + "@graphql-tools/graphql-tag-pluck": "^7.1.0", + "@graphql-tools/utils": "^8.2.0", + "is-glob": "4.0.1", + "micromatch": "^4.0.4", + "tslib": "~2.3.0", + "unixify": "^1.0.0" }, "dependencies": { - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, "@graphql-tools/github-loader": { - "version": "6.2.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-6.2.5.tgz", - "integrity": "sha512-DLuQmYeNNdPo8oWus8EePxWCfCAyUXPZ/p1PWqjrX/NGPyH2ZObdqtDAfRHztljt0F/qkBHbGHCEk2TKbRZTRw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-7.1.0.tgz", + "integrity": "sha512-RL8bREscN+CO/gP58BE+aA+PXUIwMY7okmrWtrupjRyo1IYv0bfaZXKHRF+qb2gqlJxksM5Q9HevO/MIj6T1eQ==", "dev": true, "requires": { - "@graphql-tools/graphql-tag-pluck": "^6.2.6", - "@graphql-tools/utils": "^7.0.0", - "cross-fetch": "3.0.6", - "tslib": "~2.0.1" + "@graphql-tools/graphql-tag-pluck": "^7.1.0", + "@graphql-tools/utils": "^8.2.0", + "cross-fetch": "3.1.4", + "tslib": "~2.3.0" }, "dependencies": { - "cross-fetch": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.0.6.tgz", - "integrity": "sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ==", + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { - "node-fetch": "2.6.1" + "tslib": "~2.3.0" } - }, - "tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", - "dev": true } } }, "@graphql-tools/graphql-file-loader": { - "version": "6.2.7", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.2.7.tgz", - "integrity": "sha512-5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.1.0.tgz", + "integrity": "sha512-VWGetkBuyWrUxSpMnbpzZs2yHWBFeo9nTYjc8+o+xyJKpG/CRfvQrhBRNRFfV/5C0j5/Z1FMfUgsroEAG5H3HQ==", "dev": true, "requires": { - "@graphql-tools/import": "^6.2.6", - "@graphql-tools/utils": "^7.0.0", - "tslib": "~2.1.0" + "@graphql-tools/import": "^6.4.0", + "@graphql-tools/utils": "^8.2.0", + "globby": "^11.0.3", + "tslib": "~2.3.0", + "unixify": "^1.0.0" }, "dependencies": { - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, "@graphql-tools/graphql-tag-pluck": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-6.5.1.tgz", - "integrity": "sha512-7qkm82iFmcpb8M6/yRgzjShtW6Qu2OlCSZp8uatA3J0eMl87TxyJoUmL3M3UMMOSundAK8GmoyNVFUrueueV5Q==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.1.0.tgz", + "integrity": "sha512-Y0iRqHKoB0i1RCpskuFKmvnehBcKSu9awEq7ml4/RWSMHRkVlJs8PAFuChyOO6jASC2ttkyfssB6qLJugvc+DQ==", "dev": true, "requires": { - "@babel/parser": "7.12.16", - "@babel/traverse": "7.12.13", - "@babel/types": "7.12.13", - "@graphql-tools/utils": "^7.0.0", - "tslib": "~2.1.0" + "@babel/parser": "7.15.3", + "@babel/traverse": "7.15.0", + "@babel/types": "7.15.0", + "@graphql-tools/utils": "^8.2.0", + "tslib": "~2.3.0" }, "dependencies": { + "@babel/generator": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz", + "integrity": "sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==", + "dev": true, + "requires": { + "@babel/types": "^7.15.4", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "@babel/types": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.4.tgz", + "integrity": "sha512-0f1HJFuGmmbrKTCZtbm3cU+b/AqdEYk5toj5iQur58xkVMlS0JWaKxTBSmCXd47uiN7vbcozAupm6Mvs80GNhw==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.14.9", + "to-fast-properties": "^2.0.0" + } + } + } + }, + "@babel/helper-validator-identifier": { + "version": "7.14.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", + "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", + "dev": true + }, "@babel/parser": { - "version": "7.12.16", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.16.tgz", - "integrity": "sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw==", + "version": "7.15.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.3.tgz", + "integrity": "sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA==", "dev": true }, "@babel/traverse": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz", - "integrity": "sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz", + "integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==", "dev": true, "requires": { - "@babel/code-frame": "^7.12.13", - "@babel/generator": "^7.12.13", - "@babel/helper-function-name": "^7.12.13", - "@babel/helper-split-export-declaration": "^7.12.13", - "@babel/parser": "^7.12.13", - "@babel/types": "^7.12.13", + "@babel/code-frame": "^7.14.5", + "@babel/generator": "^7.15.0", + "@babel/helper-function-name": "^7.14.5", + "@babel/helper-hoist-variables": "^7.14.5", + "@babel/helper-split-export-declaration": "^7.14.5", + "@babel/parser": "^7.15.0", + "@babel/types": "^7.15.0", "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" + "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz", - "integrity": "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz", + "integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "lodash": "^4.17.19", + "@babel/helper-validator-identifier": "^7.14.9", "to-fast-properties": "^2.0.0" } }, - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, "@graphql-tools/import": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-6.3.1.tgz", - "integrity": "sha512-1szR19JI6WPibjYurMLdadHKZoG9C//8I/FZ0Dt4vJSbrMdVNp8WFxg4QnZrDeMG4MzZc90etsyF5ofKjcC+jw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-6.4.0.tgz", + "integrity": "sha512-jfE01oPcmc4vzAcYLs6xT7XC4jJWrM1HNtIwc7HyyHTxrC3nf36XrF3txEZ2l20GT53+OWnMgYx1HhauLGdJmA==", "dev": true, "requires": { "resolve-from": "5.0.0", - "tslib": "~2.2.0" + "tslib": "~2.3.0" }, "dependencies": { "resolve-from": { @@ -1895,57 +2410,51 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true - }, - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true } } }, "@graphql-tools/json-file-loader": { - "version": "6.2.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-6.2.6.tgz", - "integrity": "sha512-CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.2.0.tgz", + "integrity": "sha512-YMGjYtjYoalmGHUynypSqxm99fSBOXWqoDeDVYTHAZy970yo61yTi72owEtg7dwB4fQndL2wCoh6ZDS5ruiDDg==", "dev": true, "requires": { - "@graphql-tools/utils": "^7.0.0", - "tslib": "~2.0.1" + "@graphql-tools/utils": "^8.2.0", + "globby": "^11.0.3", + "tslib": "~2.3.0", + "unixify": "^1.0.0" }, "dependencies": { - "tslib": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", - "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, "@graphql-tools/load": { - "version": "6.2.8", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-6.2.8.tgz", - "integrity": "sha512-JpbyXOXd8fJXdBh2ta0Q4w8ia6uK5FHzrTNmcvYBvflFuWly2LDTk2abbSl81zKkzswQMEd2UIYghXELRg8eTA==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.3.0.tgz", + "integrity": "sha512-ZVipT7yzOpf/DJ2sLI3xGwnULVFp/icu7RFEgDo2ZX0WHiS7EjWZ0cegxEm87+WN4fMwpiysRLzWx67VIHwKGA==", "dev": true, "requires": { - "@graphql-tools/merge": "^6.2.12", - "@graphql-tools/utils": "^7.5.0", - "globby": "11.0.3", - "import-from": "3.0.0", - "is-glob": "4.0.1", + "@graphql-tools/schema": "8.2.0", + "@graphql-tools/utils": "^8.2.0", "p-limit": "3.1.0", - "tslib": "~2.2.0", - "unixify": "1.0.0", - "valid-url": "1.0.9" + "tslib": "~2.3.0" }, "dependencies": { - "import-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", - "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { - "resolve-from": "^5.0.0" + "tslib": "~2.3.0" } }, "p-limit": { @@ -1956,18 +2465,6 @@ "requires": { "yocto-queue": "^0.1.0" } - }, - "resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true - }, - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true } } }, @@ -2009,20 +2506,19 @@ } }, "@graphql-tools/prisma-loader": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-6.3.0.tgz", - "integrity": "sha512-9V3W/kzsFBmUQqOsd96V4a4k7Didz66yh/IK89B1/rrvy9rYj+ULjEqR73x9BYZ+ww9FV8yP8LasWAJwWaqqJQ==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-7.1.0.tgz", + "integrity": "sha512-fehVzximGYuVkbl4mIbXjPz3XlL+7N4BlnXI5QEAif2DJ8fkTpPN7E9PoV80lxWkLDNokFFDHH6qq7hr99JyOg==", "dev": true, "requires": { - "@graphql-tools/url-loader": "^6.8.2", - "@graphql-tools/utils": "^7.0.0", - "@types/http-proxy-agent": "^2.0.2", + "@graphql-tools/url-loader": "^7.1.0", + "@graphql-tools/utils": "^8.2.0", "@types/js-yaml": "^4.0.0", "@types/json-stable-stringify": "^1.0.32", "@types/jsonwebtoken": "^8.5.0", "chalk": "^4.1.0", "debug": "^4.3.1", - "dotenv": "^8.2.0", + "dotenv": "^10.0.0", "graphql-request": "^3.3.0", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", @@ -2033,10 +2529,19 @@ "lodash": "^4.17.20", "replaceall": "^0.1.6", "scuid": "^1.1.0", - "tslib": "~2.1.0", + "tslib": "~2.3.0", "yaml-ast-parser": "^0.0.43" }, "dependencies": { + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -2085,62 +2590,52 @@ "requires": { "has-flag": "^4.0.0" } - }, - "tslib": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", - "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", - "dev": true } } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.3.4", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.3.4.tgz", - "integrity": "sha512-/KLAHGFh8Q8hVpoVBEtqLddrOI0ro2clHR1BsCLOaO6jkYZ7+O8JUGK/y/44Zj2gsxuFiQbgXAuG9tnLbtFLmw==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.3.0.tgz", + "integrity": "sha512-Or3UgRvkY9Fq1AAx7q38oPqFmTepLz7kp6wDHKyR0ceG7AvHv5En22R12mAeISInbhff4Rpwgf6cE8zHRu6bCw==", "requires": { - "@graphql-tools/utils": "8.0.2", - "relay-compiler": "11.0.2", - "tslib": "~2.3.0" + "@graphql-tools/utils": "^7.1.0", + "relay-compiler": "10.1.0", + "tslib": "~2.0.1" }, "dependencies": { - "@graphql-tools/utils": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.0.2.tgz", - "integrity": "sha512-gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==", - "requires": { - "tslib": "~2.3.0" - } + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" } } }, "@graphql-tools/schema": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.0.3.tgz", - "integrity": "sha512-ufJH7r/RcetVPd3kKCZ16/JTRkOX8aB1yGbYnUjqWEIdYEZc3Fpg7AVlcliu2JlvwR+WSNlgWn2QK76QCsFFdA==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.2.0.tgz", + "integrity": "sha512-ufmI5mJQa8NJczzfkh0pUttKvspqDcT5LLakA3jUmOrrE4d4NVj6onZlazdTzF5sAepSNqanFnwhrxZpCAJMKg==", "dev": true, "requires": { - "@graphql-tools/merge": "7.0.0", - "@graphql-tools/utils": "8.0.2", + "@graphql-tools/merge": "^8.1.0", + "@graphql-tools/utils": "^8.2.0", "tslib": "~2.3.0", "value-or-promise": "1.0.10" }, "dependencies": { "@graphql-tools/merge": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-7.0.0.tgz", - "integrity": "sha512-u7TTwKQ7cybAkn6snYPRg3um/C2u690wlD8TgHITAmGQDAExN/yipSSBgu4rXWopsPLsY0G30mJ8tOWToZVE1w==", + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.1.2.tgz", + "integrity": "sha512-kFLd4kKNJXYXnKIhM8q9zgGAtbLmsy3WmGdDxYq3YHBJUogucAxnivQYyRIseUq37KGmSAIWu3pBQ23TKGsGOw==", "dev": true, "requires": { - "@graphql-tools/schema": "^8.0.3", - "@graphql-tools/utils": "8.0.2", + "@graphql-tools/utils": "^8.2.2", "tslib": "~2.3.0" } }, "@graphql-tools/utils": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.0.2.tgz", - "integrity": "sha512-gzkavMOgbhnwkHJYg32Adv6f+LxjbQmmbdD5Hty0+CWxvaiuJq+nU6tzb/7VSU4cwhbNLx/lGu2jbCPEW1McZQ==", + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { "tslib": "~2.3.0" @@ -2149,37 +2644,43 @@ } }, "@graphql-tools/url-loader": { - "version": "6.10.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-6.10.1.tgz", - "integrity": "sha512-DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.1.0.tgz", + "integrity": "sha512-h0NAcjPBei/Zf69OeFZWUbPXKA2aK5YXyfAZkAc+LP8pnBDBZW+mPr2lOZZJPJ8LMZPPjf5hwVHqXGImduHgmA==", "dev": true, "requires": { - "@graphql-tools/delegate": "^7.0.1", - "@graphql-tools/utils": "^7.9.0", - "@graphql-tools/wrap": "^7.0.4", - "@microsoft/fetch-event-source": "2.0.1", - "@types/websocket": "1.0.2", + "@ardatan/fetch-event-source": "2.0.2", + "@graphql-tools/delegate": "^8.2.0", + "@graphql-tools/utils": "^8.2.0", + "@graphql-tools/wrap": "^8.1.0", + "@n1ru4l/graphql-live-query": "0.7.1", + "@types/websocket": "1.0.4", + "@types/ws": "^7.4.7", "abort-controller": "3.0.0", "cross-fetch": "3.1.4", - "extract-files": "9.0.0", + "extract-files": "11.0.0", "form-data": "4.0.0", - "graphql-ws": "^4.4.1", + "graphql-ws": "^5.4.1", "is-promise": "4.0.0", "isomorphic-ws": "4.0.1", "lodash": "4.17.21", "meros": "1.1.4", - "subscriptions-transport-ws": "^0.9.18", + "subscriptions-transport-ws": "^0.10.0", "sync-fetch": "0.3.0", - "tslib": "~2.2.0", + "tslib": "~2.3.0", "valid-url": "1.0.9", - "ws": "7.4.5" + "value-or-promise": "1.0.10", + "ws": "8.2.1" }, "dependencies": { - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", + "dev": true, + "requires": { + "tslib": "~2.3.0" + } } } }, @@ -2201,40 +2702,26 @@ } }, "@graphql-tools/wrap": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-7.0.8.tgz", - "integrity": "sha512-1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-8.1.0.tgz", + "integrity": "sha512-WLT/bFewOIY8KJMzgOJSM/02fXJSFktFvI+JRu39wDH+hwFy1y7pFC0Bs1TP8B/hAEJ+t9+7JspX0LQWAUFjDg==", "dev": true, "requires": { - "@graphql-tools/delegate": "^7.1.5", - "@graphql-tools/schema": "^7.1.5", - "@graphql-tools/utils": "^7.8.1", - "tslib": "~2.2.0", - "value-or-promise": "1.0.6" + "@graphql-tools/delegate": "^8.2.0", + "@graphql-tools/schema": "^8.2.0", + "@graphql-tools/utils": "^8.2.0", + "tslib": "~2.3.0", + "value-or-promise": "1.0.10" }, "dependencies": { - "@graphql-tools/schema": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-7.1.5.tgz", - "integrity": "sha512-uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==", + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { - "@graphql-tools/utils": "^7.1.2", - "tslib": "~2.2.0", - "value-or-promise": "1.0.6" + "tslib": "~2.3.0" } - }, - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true - }, - "value-or-promise": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.6.tgz", - "integrity": "sha512-9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg==", - "dev": true } } }, @@ -2248,9 +2735,9 @@ } }, "@hapi/boom": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz", - "integrity": "sha512-RlrGyZ603hE/eRTZtTltocRm50HHmrmL3kGOP0SQ9MasazlW1mt/fkv4C5P/6rnpFXjwld/POFX1C8tMZE3ldg==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.2.tgz", + "integrity": "sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q==", "requires": { "@hapi/hoek": "9.x.x" } @@ -2271,10 +2758,10 @@ "resolved": "https://registry.npmjs.org/@icons/material/-/material-0.2.4.tgz", "integrity": "sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw==" }, - "@microsoft/fetch-event-source": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz", - "integrity": "sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==", + "@n1ru4l/graphql-live-query": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/@n1ru4l/graphql-live-query/-/graphql-live-query-0.7.1.tgz", + "integrity": "sha512-5kJPe2FkPNsCGu9tocKIzUSNO986qAqdnbk8hIFqWlpVPBAmEAOYb1mr6PA18FYAlu7ojWm9Hm13k29aj2GGlQ==", "dev": true }, "@next/env": { @@ -2394,9 +2881,9 @@ "dev": true }, "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz", + "integrity": "sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==", "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", @@ -2629,24 +3116,15 @@ "hoist-non-react-statics": "^3.3.0" } }, - "@types/http-proxy-agent": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/http-proxy-agent/-/http-proxy-agent-2.0.2.tgz", - "integrity": "sha512-2S6IuBRhqUnH1/AUx9k8KWtY3Esg4eqri946MnxTG5HwehF1S5mqLln8fcyMiuQkY72p2gH3W+rIPqp5li0LyQ==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, "@types/js-cookie": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.7.tgz", - "integrity": "sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==" + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.6.tgz", + "integrity": "sha512-+oY0FDTO2GYKEV0YPvSshGq9t7YozVkgvXLty7zogQNuCxBhT9/3INX9Q7H1aRZ4SUDRXAKlJuA4EA5nTt7SNw==" }, "@types/js-yaml": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.2.tgz", - "integrity": "sha512-KbeHS/Y4R+k+5sWXEYzAZKuB1yQlZtEghuhRxrVRLaqhtoG5+26JwQsa4HyS3AWX8v1Uwukma5HheduUDskasA==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.3.tgz", + "integrity": "sha512-5t9BhoORasuF5uCPr+d5/hdB++zRFUTMIZOzbNkr+jZh3yQht4HYbRDyj9fY8n2TZT30iW9huzav73x4NikqWg==", "dev": true }, "@types/json-stable-stringify": { @@ -2655,19 +3133,25 @@ "integrity": "sha512-qEWiQff6q2tA5gcJGWwzplQcXdJtm+0oy6IHGHzlOf3eFAkGE/FIPXZK9ofWgNSHVp8AFFI33PJJshS0ei3Gvw==", "dev": true }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "dev": true + }, "@types/jsonwebtoken": { - "version": "8.5.4", - "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.4.tgz", - "integrity": "sha512-4L8msWK31oXwdtC81RmRBAULd0ShnAHjBuKT9MRQpjP0piNrZdXyTRcKY9/UIfhGeKIT4PvF5amOOUbbT/9Wpg==", + "version": "8.5.5", + "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.5.tgz", + "integrity": "sha512-OGqtHQ7N5/Ap/TUwO6IgHDuLiAoTmHhGpNvgkCm/F4N6pKzx/RBSfr2OXZSwC6vkfnsEdb6+7DNZVtiXiwdwFw==", "dev": true, "requires": { "@types/node": "*" } }, "@types/lodash": { - "version": "4.14.172", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz", - "integrity": "sha512-/BHF5HAx3em7/KkzVKm3LrsD6HZAXuXO1AJZQ3cRRBZj4oHZDviWPYu0aEplAqDFNHZPW6d3G7KN+ONcCCC7pw==" + "version": "4.14.170", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.170.tgz", + "integrity": "sha512-bpcvu/MKHHeYX+qeEN8GE7DIravODWdACVA1ctevD8CN24RhPZIKMn9ntfAsrvLfSX3cR5RrBKAbYm9bGs0A+Q==" }, "@types/lodash.mergewith": { "version": "4.6.6", @@ -2678,9 +3162,9 @@ } }, "@types/node": { - "version": "16.6.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.6.0.tgz", - "integrity": "sha512-OyiZPohMMjZEYqcVo/UJ04GyAxXOJEZO/FpzyXxcH4r/ArrVoXHf4MbUrkLp0Tz7/p1mMKpo5zJ6ZHl8XBNthQ==" + "version": "15.12.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-15.12.5.tgz", + "integrity": "sha512-se3yX7UHv5Bscf8f1ERKvQOD6sTyycH3hdaoozvaLxgUiY5lIGEeH37AD0G0Qi9kPqihPn0HOfd2yaIEN9VwEg==" }, "@types/parse-json": { "version": "4.0.0", @@ -2688,14 +3172,14 @@ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" }, "@types/prop-types": { - "version": "15.7.4", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", - "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" }, "@types/react": { - "version": "17.0.17", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.17.tgz", - "integrity": "sha512-nrfi7I13cAmrd0wje8czYpf5SFbryczCtPzFc6ijqvdjKcyA3tCvGxwchOUlxb2ucBPuJ9Y3oUqKrRqZvrz0lw==", + "version": "17.0.11", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.11.tgz", + "integrity": "sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA==", "requires": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -2703,9 +3187,9 @@ } }, "@types/react-dom": { - "version": "17.0.9", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.9.tgz", - "integrity": "sha512-wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg==", + "version": "17.0.8", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.8.tgz", + "integrity": "sha512-0ohAiJAx1DAUEcY9UopnfwCE9sSMDGnY/oXjWMax6g3RpzmTt2GMyMVAXcbn0mo8XAff0SbQJl2/SBU+hjSZ1A==", "requires": { "@types/react": "*" } @@ -2732,17 +3216,17 @@ } }, "@types/react-transition-group": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.2.tgz", - "integrity": "sha512-KibDWL6nshuOJ0fu8ll7QnV/LVTo3PzQ9aCPnRUYPfX7eZohHwLIdNHj7pftanREzHNP4/nJa8oeM73uSiavMQ==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", "requires": { "@types/react": "*" } }, "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz", + "integrity": "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==" }, "@types/styled-components": { "version": "5.1.10", @@ -2766,50 +3250,59 @@ "integrity": "sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=" }, "@types/websocket": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.2.tgz", - "integrity": "sha512-B5m9aq7cbbD/5/jThEr33nUY8WEfVi6A2YKCTOvw5Ldy7mtsOkqRvGjnzy6g7iMMDsgu7xREuCzqATLDLQVKcQ==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@types/websocket/-/websocket-1.0.4.tgz", + "integrity": "sha512-qn1LkcFEKK8RPp459jkjzsfpbsx36BBt3oC3pITYtkoBw/aVX+EZFa5j3ThCRTNpLFvIMr5dSTD4RaMdilIOpA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/ws": { + "version": "7.4.7", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz", + "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", "dev": true, "requires": { "@types/node": "*" } }, "@typescript-eslint/parser": { - "version": "4.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.29.1.tgz", - "integrity": "sha512-3fL5iN20hzX3Q4OkG7QEPFjZV2qsVGiDhEwwh+EkmE/w7oteiOvUNzmpu5eSwGJX/anCryONltJ3WDmAzAoCMg==", + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.28.1.tgz", + "integrity": "sha512-UjrMsgnhQIIK82hXGaD+MCN8IfORS1CbMdu7VlZbYa8LCZtbZjJA26De4IPQB7XYZbL8gJ99KWNj0l6WD0guJg==", "dev": true, "requires": { - "@typescript-eslint/scope-manager": "4.29.1", - "@typescript-eslint/types": "4.29.1", - "@typescript-eslint/typescript-estree": "4.29.1", + "@typescript-eslint/scope-manager": "4.28.1", + "@typescript-eslint/types": "4.28.1", + "@typescript-eslint/typescript-estree": "4.28.1", "debug": "^4.3.1" } }, "@typescript-eslint/scope-manager": { - "version": "4.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.29.1.tgz", - "integrity": "sha512-Hzv/uZOa9zrD/W5mftZa54Jd5Fed3tL6b4HeaOpwVSabJK8CJ+2MkDasnX/XK4rqP5ZTWngK1ZDeCi6EnxPQ7A==", + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.28.1.tgz", + "integrity": "sha512-o95bvGKfss6705x7jFGDyS7trAORTy57lwJ+VsYwil/lOUxKQ9tA7Suuq+ciMhJc/1qPwB3XE2DKh9wubW8YYA==", "dev": true, "requires": { - "@typescript-eslint/types": "4.29.1", - "@typescript-eslint/visitor-keys": "4.29.1" + "@typescript-eslint/types": "4.28.1", + "@typescript-eslint/visitor-keys": "4.28.1" } }, "@typescript-eslint/types": { - "version": "4.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.29.1.tgz", - "integrity": "sha512-Jj2yu78IRfw4nlaLtKjVaGaxh/6FhofmQ/j8v3NXmAiKafbIqtAPnKYrf0sbGjKdj0hS316J8WhnGnErbJ4RCA==", + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.28.1.tgz", + "integrity": "sha512-4z+knEihcyX7blAGi7O3Fm3O6YRCP+r56NJFMNGsmtdw+NCdpG5SgNz427LS9nQkRVTswZLhz484hakQwB8RRg==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "4.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.1.tgz", - "integrity": "sha512-lIkkrR9E4lwZkzPiRDNq0xdC3f2iVCUjw/7WPJ4S2Sl6C3nRWkeE1YXCQ0+KsiaQRbpY16jNaokdWnm9aUIsfw==", + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.1.tgz", + "integrity": "sha512-GhKxmC4sHXxHGJv8e8egAZeTZ6HI4mLU6S7FUzvFOtsk7ZIDN1ksA9r9DyOgNqowA9yAtZXV0Uiap61bIO81FQ==", "dev": true, "requires": { - "@typescript-eslint/types": "4.29.1", - "@typescript-eslint/visitor-keys": "4.29.1", + "@typescript-eslint/types": "4.28.1", + "@typescript-eslint/visitor-keys": "4.28.1", "debug": "^4.3.1", "globby": "^11.0.3", "is-glob": "^4.0.1", @@ -2829,12 +3322,12 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "4.29.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.1.tgz", - "integrity": "sha512-zLqtjMoXvgdZY/PG6gqA73V8BjqPs4af1v2kiiETBObp+uC6gRYnJLmJHxC0QyUrrHDLJPIWNYxoBV3wbcRlag==", + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.1.tgz", + "integrity": "sha512-K4HMrdFqr9PFquPu178SaSb92CaWe2yErXyPumc8cYWxFmhgJsNY9eSePmO05j0JhBvf2Cdhptd6E6Yv9HVHcg==", "dev": true, "requires": { - "@typescript-eslint/types": "4.29.1", + "@typescript-eslint/types": "4.28.1", "eslint-visitor-keys": "^2.0.0" } }, @@ -2859,9 +3352,9 @@ "dev": true }, "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", "dev": true }, "agent-base": { @@ -3097,9 +3590,9 @@ "integrity": "sha512-SA5mXJWrId1TaQjfxUYghbqQ/hYioKmLJvPJyDuYRtXXenFNMjj4hSSt1Cf1xsuXSXrtxrVC5Ot4eU6cOtBDdA==" }, "axe-core": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.3.2.tgz", - "integrity": "sha512-5LMaDRWm8ZFPAEdzTYmgjjEdj1YnQcpfrVajO/sn/LhbpGp0Y0H64c2hLZI1gRMxfA+w1S71Uc/nHaOXgcCvGg==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.2.3.tgz", + "integrity": "sha512-pXnVMfJKSIWU2Ml4JHP7pZEPIrgBO1Fd3WGx+fPBsS+KRGhE4vxooD8XBGWbQOIVSZsVK7pUDBBkCicNu80yzQ==", "dev": true }, "axobject-query": { @@ -3127,9 +3620,9 @@ } }, "babel-plugin-styled-components": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.13.2.tgz", - "integrity": "sha512-Vb1R3d4g+MUfPQPVDMCGjm3cDocJEUTR7Xq7QS95JWWeksN1wdFRYpD2kulDgI3Huuaf1CZd+NK4KQmqUFh5dA==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz", + "integrity": "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==", "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", "@babel/helper-module-imports": "^7.0.0", @@ -3325,15 +3818,15 @@ } }, "browserslist": { - "version": "4.16.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.7.tgz", - "integrity": "sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA==", + "version": "4.16.6", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", + "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", "requires": { - "caniuse-lite": "^1.0.30001248", + "caniuse-lite": "^1.0.30001219", "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.793", + "electron-to-chromium": "^1.3.723", "escalade": "^3.1.1", - "node-releases": "^1.1.73" + "node-releases": "^1.1.71" } }, "bser": { @@ -3446,9 +3939,9 @@ "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" }, "caniuse-lite": { - "version": "1.0.30001251", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001251.tgz", - "integrity": "sha512-HOe1r+9VkU4TFmnU70z+r7OLmtR+/chB1rdcJUeQlAinjEeb0cKL20tlAtOagNZhbrtLnCvV19B4FmF1rgzl6A==" + "version": "1.0.30001241", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001241.tgz", + "integrity": "sha512-1uoSZ1Pq1VpH0WerIMqwptXHNNGfdl7d1cJUFs80CwQ/lVzdhTvsFZCeNFslze7AjsQnb4C85tzclPa1VShbeQ==" }, "capital-case": { "version": "1.0.4", @@ -3635,9 +4128,9 @@ "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, "codemirror": { - "version": "5.62.2", - "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.62.2.tgz", - "integrity": "sha512-tVFMUa4J3Q8JUd1KL9yQzQB0/BJt7ZYZujZmTPgo/54Lpuq3ez4C8x/ATUY/wv7b7X3AUq8o3Xd+2C5ZrCGWHw==" + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.62.0.tgz", + "integrity": "sha512-Xnl3304iCc8nyVZuRkzDVVwc794uc9QNX0UcPGeNic1fbzkSrO4l4GVXho9tRNKBgPYZXgocUqXyfIv3BILhCQ==" }, "color-convert": { "version": "1.9.3", @@ -3653,18 +4146,18 @@ "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "color-string": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", - "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", + "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", "requires": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" } }, "colorette": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.3.0.tgz", - "integrity": "sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w==" + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", + "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" }, "combined-stream": { "version": "1.0.8", @@ -3737,9 +4230,9 @@ "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" }, "core-js-pure": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.16.1.tgz", - "integrity": "sha512-TyofCdMzx0KMhi84mVRS8rL1XsRk2SPUNz2azmth53iRN0/08Uim9fdhQTaZTG1LqaXHYVci4RDHka6WrXfnvg==", + "version": "3.15.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.15.1.tgz", + "integrity": "sha512-OZuWHDlYcIda8sJLY4Ec6nWq2hRjlyCqCZ+jCflyleMkVt3tPedDVErvHslyS2nbO+SlBFMSBJYvtLMwxnrzjA==", "dev": true }, "core-util-is": { @@ -3965,9 +4458,9 @@ "dev": true }, "debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", "requires": { "ms": "2.1.2" } @@ -4104,9 +4597,9 @@ } }, "dotenv": { - "version": "8.6.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", - "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", "dev": true }, "duplexer3": { @@ -4125,9 +4618,9 @@ } }, "electron-to-chromium": { - "version": "1.3.803", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.803.tgz", - "integrity": "sha512-tmRK9qB8Zs8eLMtTBp+w2zVS9MUe62gQQQHjYdAc5Zljam3ZIokNb+vZLPRz9RCREp6EFRwyhOFwbt1fEriQ2Q==" + "version": "1.3.761", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.761.tgz", + "integrity": "sha512-7a/wV/plM/b95XjTdA2Q4zAxxExTDKkNQpTiaU/nVT8tGCQVtX9NsnTjhALBFICpOB58hU6xg5fFC3CT2Bybpg==" }, "elegant-spinner": { "version": "1.0.1", @@ -4214,9 +4707,9 @@ } }, "es-abstract": { - "version": "1.18.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.5.tgz", - "integrity": "sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA==", + "version": "1.18.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz", + "integrity": "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw==", "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", @@ -4224,12 +4717,11 @@ "get-intrinsic": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.2", - "internal-slot": "^1.0.3", "is-callable": "^1.2.3", "is-negative-zero": "^2.0.1", "is-regex": "^1.1.3", "is-string": "^1.0.6", - "object-inspect": "^1.11.0", + "object-inspect": "^1.10.3", "object-keys": "^1.1.1", "object.assign": "^4.1.2", "string.prototype.trimend": "^1.0.4", @@ -4328,9 +4820,9 @@ } }, "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", + "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", "dev": true, "requires": { "ansi-styles": "^4.1.0", @@ -4353,9 +4845,9 @@ "dev": true }, "globals": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.10.0.tgz", - "integrity": "sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==", + "version": "13.9.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.9.0.tgz", + "integrity": "sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -4432,30 +4924,36 @@ } }, "eslint-import-resolver-node": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.5.tgz", - "integrity": "sha512-XMoPKjSpXbkeJ7ZZ9icLnJMTY5Mc1kZbCakHquaFsXPpyWOwK0TK6CODO+0ca54UoM9LKOxyUNnoVZRl8TeaAg==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", "dev": true, "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" + "debug": "^2.6.9", + "resolve": "^1.13.1" }, "dependencies": { "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { - "ms": "^2.1.1" + "ms": "2.0.0" } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true } } }, "eslint-module-utils": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.2.tgz", - "integrity": "sha512-QG8pcgThYOuqxupd06oYTZoNOGaUdTY1PqK+oS6ElF6vs4pBdk/aYxFVQQXzcrAqp9m7cl7lb2ubazX+g16k2Q==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.1.tgz", + "integrity": "sha512-ZXI9B8cxAJIH4nfkhTwcRTEAnrVfobYqwjWy/QMCZ8rHkZHFjf9yO4BzpiF9kCSfNlMG54eKigISHpX0+AaT4A==", "dev": true, "requires": { "debug": "^3.2.7", @@ -4532,17 +5030,17 @@ } }, "eslint-plugin-import": { - "version": "2.24.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.24.0.tgz", - "integrity": "sha512-Kc6xqT9hiYi2cgybOc0I2vC9OgAYga5o/rAFinam/yF/t5uBqxQbauNPMC6fgb640T/89P0gFoO27FOilJ/Cqg==", + "version": "2.23.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz", + "integrity": "sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==", "dev": true, "requires": { "array-includes": "^3.1.3", "array.prototype.flat": "^1.2.4", "debug": "^2.6.9", "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.5", - "eslint-module-utils": "^2.6.2", + "eslint-import-resolver-node": "^0.3.4", + "eslint-module-utils": "^2.6.1", "find-up": "^2.0.0", "has": "^1.0.3", "is-core-module": "^2.4.0", @@ -4924,9 +5422,9 @@ } }, "extract-files": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", - "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz", + "integrity": "sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==", "dev": true }, "fast-deep-equal": { @@ -4935,9 +5433,9 @@ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" }, "fast-glob": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", - "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.6.tgz", + "integrity": "sha512-GnLuqj/pvQ7pX8/L4J84nijv6sAnlwvSDpMkJi9i7nPmPxGtRPkBSStfvDW5l6nMdX9VWe+pkKWFTgD+vF2QSQ==", "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", @@ -4970,9 +5468,9 @@ "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==" }, "fastq": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", - "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", + "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -5095,9 +5593,9 @@ } }, "flatted": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz", - "integrity": "sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", + "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==", "dev": true }, "focus-lock": { @@ -5298,9 +5796,9 @@ } }, "graceful-fs": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", - "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" }, "graphql": { "version": "15.5.1", @@ -5616,44 +6114,31 @@ } }, "graphql-config": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-3.4.1.tgz", - "integrity": "sha512-g9WyK4JZl1Ko++FSyE5Ir2g66njfxGzrDDhBOwnkoWf/t3TnnZG6BBkWP+pkqVJ5pqMJGPKHNrbew8jRxStjhw==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/graphql-config/-/graphql-config-4.0.1.tgz", + "integrity": "sha512-JdXxFzBwjujJMGLHUZom9SrmP/M4gF57iTDa3fJVm3Q85+Xw2kj9jZIygaaSLpDKhaPnMQZqfJ5Hmc6afKxS9w==", "dev": true, "requires": { "@endemolshinegroup/cosmiconfig-typescript-loader": "3.0.2", - "@graphql-tools/graphql-file-loader": "^6.0.0", - "@graphql-tools/json-file-loader": "^6.0.0", - "@graphql-tools/load": "^6.0.0", - "@graphql-tools/merge": "6.0.0 - 6.2.14", - "@graphql-tools/url-loader": "^6.0.0", - "@graphql-tools/utils": "^7.0.0", + "@graphql-tools/graphql-file-loader": "^7.0.1", + "@graphql-tools/json-file-loader": "^7.0.1", + "@graphql-tools/load": "^7.1.0", + "@graphql-tools/merge": "^6.2.16", + "@graphql-tools/url-loader": "^7.0.3", + "@graphql-tools/utils": "^8.0.1", "cosmiconfig": "7.0.0", "cosmiconfig-toml-loader": "1.0.0", "minimatch": "3.0.4", "string-env-interpolation": "1.0.1" }, "dependencies": { - "@graphql-tools/merge": { - "version": "6.2.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.14.tgz", - "integrity": "sha512-RWT4Td0ROJai2eR66NHejgf8UwnXJqZxXgDWDI+7hua5vNA2OW8Mf9K1Wav1ZkjWnuRp4ztNtkZGie5ISw55ow==", - "dev": true, - "requires": { - "@graphql-tools/schema": "^7.0.0", - "@graphql-tools/utils": "^7.7.0", - "tslib": "~2.2.0" - } - }, - "@graphql-tools/schema": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-7.1.5.tgz", - "integrity": "sha512-uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA==", + "@graphql-tools/utils": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz", + "integrity": "sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==", "dev": true, "requires": { - "@graphql-tools/utils": "^7.1.2", - "tslib": "~2.2.0", - "value-or-promise": "1.0.6" + "tslib": "~2.3.0" } }, "cosmiconfig": { @@ -5668,18 +6153,6 @@ "path-type": "^4.0.0", "yaml": "^1.10.0" } - }, - "tslib": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.2.0.tgz", - "integrity": "sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w==", - "dev": true - }, - "value-or-promise": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.6.tgz", - "integrity": "sha512-9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg==", - "dev": true } } }, @@ -5694,6 +6167,12 @@ "form-data": "^3.0.0" }, "dependencies": { + "extract-files": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", + "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", + "dev": true + }, "form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", @@ -5716,9 +6195,9 @@ } }, "graphql-ws": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-4.9.0.tgz", - "integrity": "sha512-sHkK9+lUm20/BGawNEWNtVAeJzhZeBg21VmvmLoT5NdGVeZWv5PdIhkcayQIAgjSyyQ17WMKmbDijIPG2On+Ag==", + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.4.1.tgz", + "integrity": "sha512-maBduPneZOFYb3otLgc9/U+fU3f9MVXLKg6lVVLqA9BDQQ6YR7YhQO21Rf9+44IRBi4l8m35lynFMFQTzN3eAQ==", "dev": true }, "has": { @@ -5761,14 +6240,6 @@ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "requires": { - "has-symbols": "^1.0.2" - } - }, "hash-base": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", @@ -5928,9 +6399,19 @@ } }, "import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", + "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + } }, "imurmurhash": { "version": "0.1.4", @@ -6053,6 +6534,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dev": true, "requires": { "get-intrinsic": "^1.1.0", "has": "^1.0.3", @@ -6082,12 +6564,11 @@ } }, "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.0" } }, "is-arrayish": { @@ -6096,12 +6577,9 @@ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "requires": { - "has-bigints": "^1.0.1" - } + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.2.tgz", + "integrity": "sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==" }, "is-binary-path": { "version": "2.1.0", @@ -6112,34 +6590,30 @@ } }, "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.1.tgz", + "integrity": "sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==", "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bind": "^1.0.2" } }, "is-callable": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", - "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==" + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" }, "is-core-module": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", - "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.4.0.tgz", + "integrity": "sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==", "requires": { "has": "^1.0.3" } }, "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz", + "integrity": "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==" }, "is-extglob": { "version": "2.1.1", @@ -6152,12 +6626,9 @@ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" }, "is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "requires": { - "has-tostringtag": "^1.0.0" - } + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.9.tgz", + "integrity": "sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==" }, "is-glob": { "version": "4.0.1", @@ -6195,12 +6666,9 @@ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, "is-number-object": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", - "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", - "requires": { - "has-tostringtag": "^1.0.0" - } + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.5.tgz", + "integrity": "sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==" }, "is-observable": { "version": "1.1.0", @@ -6218,12 +6686,12 @@ "dev": true }, "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz", + "integrity": "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==", "requires": { "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "has-symbols": "^1.0.2" } }, "is-relative": { @@ -6240,12 +6708,9 @@ "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" }, "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "requires": { - "has-tostringtag": "^1.0.0" - } + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz", + "integrity": "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==" }, "is-symbol": { "version": "1.0.4", @@ -6256,15 +6721,15 @@ } }, "is-typed-array": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.7.tgz", - "integrity": "sha512-VxlpTBGknhQ3o7YiVjIhdLU6+oD8dPz/79vvvH4F+S/c8608UCVa9fgDpa1kZgFoUST2DCgacc70UszKgzKuvA==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.5.tgz", + "integrity": "sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==", "requires": { - "available-typed-arrays": "^1.0.4", + "available-typed-arrays": "^1.0.2", "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", + "es-abstract": "^1.18.0-next.2", "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0" + "has-symbols": "^1.0.1" } }, "is-unc-path": { @@ -7271,9 +7736,9 @@ "dev": true }, "nano-css": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/nano-css/-/nano-css-5.3.4.tgz", - "integrity": "sha512-wfcviJB6NOxDIDfr7RFn/GlaN7I/Bhe4d39ZRCJ3xvZX60LVe2qZ+rDqM49nm4YT81gAjzS+ZklhKP/Gnfnubg==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/nano-css/-/nano-css-5.3.1.tgz", + "integrity": "sha512-ENPIyNzANQRyYVvb62ajDd7PAyIgS2LIUnT9ewih4yrXSZX4hKoUwssy8WjUH++kEOA5wUTMgNnV7ko5n34kUA==", "requires": { "css-tree": "^1.1.2", "csstype": "^3.0.6", @@ -7286,9 +7751,9 @@ } }, "nanoid": { - "version": "3.1.24", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.24.tgz", - "integrity": "sha512-WNhqqgD4qH7TQdU9ujXfFa/hQI5rOGGnZq+JRmz4JwMZFCgSZVquTq3ORUSv6IC+Y41ACBYV8a8J1kPkqGIiQg==" + "version": "3.1.23", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz", + "integrity": "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==" }, "native-url": { "version": "0.3.4", @@ -7369,18 +7834,6 @@ "regenerator-runtime": "^0.13.4" } }, - "browserslist": { - "version": "4.16.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", - "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", - "requires": { - "caniuse-lite": "^1.0.30001219", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.723", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - } - }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -7575,9 +8028,9 @@ } }, "node-releases": { - "version": "1.1.74", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.74.tgz", - "integrity": "sha512-caJBVempXZPepZoZAPCWRTNxYQ+xtG/KAi4ozTA5A+nJ7IU+kLQCbqaUjb5Rwy14M9upBWiQ4NutcmW04LJSRw==" + "version": "1.1.73", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", + "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==" }, "normalize-package-data": { "version": "2.5.0", @@ -7624,9 +8077,9 @@ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-inspect": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", - "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz", + "integrity": "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==" }, "object-is": { "version": "1.1.5", @@ -8100,9 +8553,9 @@ } }, "prosemirror-commands": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.1.10.tgz", - "integrity": "sha512-IWyBBXNAd44RM6NnBPljwq+/CM2oYCQJkF+YhKEAZNwzW0uFdGf4qComhjbKZzqFdu6Iub2ZhNsXgwPibA0lCQ==", + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.1.9.tgz", + "integrity": "sha512-zedlbQ+8QK0tIeibb6vbnAX5FO/S5x67xHgF57Fned+3G6RZY3JAGma9kC1jSCmLF/XC7MCZ90oekb0qo2b+Pw==", "requires": { "prosemirror-model": "^1.0.0", "prosemirror-state": "^1.0.0", @@ -8159,17 +8612,17 @@ } }, "prosemirror-model": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.14.3.tgz", - "integrity": "sha512-yzZlBaSxfUPIIP6U5Edh5zKxJPZ5f7bwZRhiCuH3UYkWhj+P3d8swHsbuAMOu/iDatDc5J/Qs5Mb3++mZf+CvQ==", + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.14.2.tgz", + "integrity": "sha512-TwkACyEiSi8FJiRhg2ffbzmQRy5DR+aTwAr7trNQNZL24HJR8ouxy4qCkG99PnWK0xZ0AjSMtPXSU6hnxAiP7Q==", "requires": { "orderedmap": "^1.1.0" } }, "prosemirror-schema-list": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.1.5.tgz", - "integrity": "sha512-9gadhga/wySVfb/iZ2vOpndbG0XroeLw0HkkZN5demNbOea6U5oQtJmvyYWC7ZVf3WkhmVdVsOXrllM9JcC20A==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.1.4.tgz", + "integrity": "sha512-pNTuZflacFOBlxrTcWSdWhjoB8BaucwfJVp/gJNxztOwaN3wQiC65axclXyplf6TKgXD/EkWfS/QAov3/Znadw==", "requires": { "prosemirror-model": "^1.0.0", "prosemirror-transform": "^1.0.0" @@ -8210,11 +8663,11 @@ "integrity": "sha512-UC+j9hQQ1POYfMc5p7UFxBTptRiGPR7Kkmbl3jVvU8VgQbkI89tR/GK+3QYC8n+VvBZrtAoCrJItNhWSxX3slA==" }, "prosemirror-view": { - "version": "1.18.11", - "resolved": "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.18.11.tgz", - "integrity": "sha512-KXUM8UEV+IK4JYWHNyxkPGDGbxeTEUHQv3POApfyTRN5eMcPFbY4cB0mDJr0LPelVvYPghmZDOCqfCIm9mYHtQ==", + "version": "1.18.8", + "resolved": "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.18.8.tgz", + "integrity": "sha512-iLNonsRUM+ByIxJZP+tRuE8jUy56jfgf8oxnc4InWYTYdPibARs4FL6DQ6D56GdPMlXyTjXjSdfDp/x8mwHhtw==", "requires": { - "prosemirror-model": "^1.14.3", + "prosemirror-model": "^1.1.0", "prosemirror-state": "^1.0.0", "prosemirror-transform": "^1.1.0" } @@ -8708,9 +9161,9 @@ } }, "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" }, "regexp.prototype.flags": { "version": "1.3.1", @@ -8747,9 +9200,9 @@ } }, "relay-compiler": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-11.0.2.tgz", - "integrity": "sha512-nDVAURT1YncxSiDOKa39OiERkAr0DUcPmlHlg+C8zD+EiDo2Sgczf2R6cDsN4UcDvucYtkLlDLFErPwgLs8WzA==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/relay-compiler/-/relay-compiler-10.1.0.tgz", + "integrity": "sha512-HPqc3N3tNgEgUH5+lTr5lnLbgnsZMt+MRiyS0uAVNhuPY2It0X1ZJG+9qdA3L9IqKFUNwVn6zTO7RArjMZbARQ==", "requires": { "@babel/core": "^7.0.0", "@babel/generator": "^7.5.0", @@ -8763,9 +9216,8 @@ "fbjs": "^3.0.0", "glob": "^7.1.1", "immutable": "~3.7.6", - "invariant": "^2.2.4", "nullthrows": "^1.1.1", - "relay-runtime": "11.0.2", + "relay-runtime": "10.1.0", "signedsource": "^1.0.0", "yargs": "^15.3.1" }, @@ -8779,9 +9231,9 @@ } }, "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", + "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -8816,13 +9268,12 @@ } }, "relay-runtime": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-11.0.2.tgz", - "integrity": "sha512-xxZkIRnL8kNE1cxmwDXX8P+wSeWLR+0ACFyAiAhvfWWAyjXb+bhjJ2FSsRGlNYfkqaTNEuDqpnodQV1/fF7Idw==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/relay-runtime/-/relay-runtime-10.1.0.tgz", + "integrity": "sha512-bxznLnQ1ST6APN/cFi7l0FpjbZVchWQjjhj9mAuJBuUqNNCh9uV+UTRhpQF7Q8ycsPp19LHTpVyGhYb0ustuRQ==", "requires": { "@babel/runtime": "^7.0.0", - "fbjs": "^3.0.0", - "invariant": "^2.2.4" + "fbjs": "^3.0.0" } }, "remedial": { @@ -9075,6 +9526,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, "requires": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -9180,9 +9632,9 @@ } }, "spdx-license-ids": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz", - "integrity": "sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==" + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz", + "integrity": "sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ==" }, "sponge-case": { "version": "1.0.1", @@ -9481,9 +9933,9 @@ "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" }, "subscriptions-transport-ws": { - "version": "0.9.19", - "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.19.tgz", - "integrity": "sha512-dxdemxFFB0ppCLg10FTtRqH/31FNRL1y1BQv8209MK5I4CwALb7iihQg+7p65lFcIl8MHatINWBLOqpgU4Kyyw==", + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.10.0.tgz", + "integrity": "sha512-k28LhLn3abJ1mowFW+LP4QGggE0e3hrk55zXbMHyAeZkCUYtC0owepiwqMD3zX8DglQVaxnhE760pESrNSEzpg==", "dev": true, "requires": { "backo2": "^1.0.2", @@ -9498,6 +9950,12 @@ "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz", "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==", "dev": true + }, + "ws": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.4.tgz", + "integrity": "sha512-zP9z6GXm6zC27YtspwH99T3qTG7bBFv2VIkeHstMLrLlDJuzA7tQ5ls3OJ1hOGGCzTQPniNJoHXIAOS0Jljohg==", + "dev": true } } }, @@ -9560,9 +10018,9 @@ }, "dependencies": { "ajv": { - "version": "8.6.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz", - "integrity": "sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.0.tgz", + "integrity": "sha512-cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -9766,16 +10224,26 @@ "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" }, "tsconfig-paths": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.10.1.tgz", - "integrity": "sha512-rETidPDgCpltxF7MjBZlAFPUHv5aHH2MymyPvh+vEyWAED4Eb/WeMbsnD/JDr4OKPOA1TssDHgIcpTN5Kh0p6Q==", + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", "dev": true, "requires": { - "json5": "^2.2.0", + "@types/json5": "^0.0.29", + "json5": "^1.0.1", "minimist": "^1.2.0", "strip-bom": "^3.0.0" }, "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -9785,9 +10253,9 @@ } }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" }, "tsutils": { "version": "3.21.0", @@ -10117,16 +10585,17 @@ "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, "which-typed-array": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.6.tgz", - "integrity": "sha512-DdY984dGD5sQ7Tf+x1CkXzdg85b9uEel6nr4UkFg1LoE9OXv3uRuZhe5CoWdawhGACeFpEZXH8fFLQnDhbpm/Q==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.4.tgz", + "integrity": "sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==", "requires": { - "available-typed-arrays": "^1.0.4", - "call-bind": "^1.0.2", - "es-abstract": "^1.18.5", + "available-typed-arrays": "^1.0.2", + "call-bind": "^1.0.0", + "es-abstract": "^1.18.0-next.1", "foreach": "^2.0.5", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.6" + "function-bind": "^1.1.1", + "has-symbols": "^1.0.1", + "is-typed-array": "^1.1.3" } }, "window-size": { @@ -10179,9 +10648,9 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "ws": { - "version": "7.4.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.5.tgz", - "integrity": "sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==", + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.1.tgz", + "integrity": "sha512-XkgWpJU3sHU7gX8f13NqTn6KQ85bd1WU7noBHTT8fSohx7OS1TPY8k+cyRPCzFkia7C4mM229yeHr1qK9sM4JQ==", "dev": true }, "xtend": { diff --git a/frontend/package.json b/frontend/package.json index b77a076f..c040fcae 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -7,7 +7,8 @@ "build": "next build", "start": "next start", "lint": "next lint", - "codegen": "graphql-codegen --config codegen.yml" + "codegen": "graphql-codegen --config codegen.yml", + "npm run codegen": "graphql-codegen --config codegen.yml" }, "dependencies": { "@chakra-ui/icons": "1.0.13", @@ -16,7 +17,7 @@ "@emotion/styled": "11.3.0", "@graphql-codegen/typescript-document-nodes": "1.17.13", "framer-motion": "4.1.17", - "graphql": "15.5.1", + "graphql": "^15.5.1", "graphql-codegen": "0.4.0", "next": "11.0.0", "react": "17.0.2", @@ -28,14 +29,14 @@ "tinacms": "0.41.1" }, "devDependencies": { - "@graphql-codegen/cli": "1.21.5", - "@graphql-codegen/introspection": "1.18.2", - "@graphql-codegen/typescript": "1.22.3", - "@graphql-codegen/typescript-operations": "1.18.2", - "@graphql-codegen/typescript-react-apollo": "2.2.7", + "@graphql-codegen/cli": "2.2.0", + "@graphql-codegen/introspection": "2.1.0", + "@graphql-codegen/typescript": "2.2.1", + "@graphql-codegen/typescript-operations": "2.1.3", + "@graphql-codegen/typescript-react-apollo": "3.1.3", "@types/styled-components": "5.1.10", "eslint": "7.29.0", "eslint-config-next": "11.0.0", "typescript": "4.3.4" } -} +} \ No newline at end of file diff --git a/frontend/pages/[[...slug]].tsx b/frontend/pages/[[...slug]].tsx index 88b59b47..f7ecb79f 100644 --- a/frontend/pages/[[...slug]].tsx +++ b/frontend/pages/[[...slug]].tsx @@ -11,12 +11,12 @@ import { GetPagesQueryVariables, } from "@graphql/generated"; import { - LocalizationsData, PageData, usePagePlugin, GlobalData, + LocalizationsData, } from "@plugins/usePagePlugin"; -import { DefaultLayout as SiteLayout } from "@layouts/siteLayout"; +import { SiteLayout } from "@layouts/siteLayout"; import { Box, chakra, @@ -451,8 +451,8 @@ function getPageData( return { _template: "card", id: card.id, - title: card.title, - description: card.description, + title: card.title || null, + description: card.description || null, image: card.image == null ? null diff --git a/frontend/pages/projects/index.tsx b/frontend/pages/projects/index.tsx new file mode 100644 index 00000000..0f6ae6b9 --- /dev/null +++ b/frontend/pages/projects/index.tsx @@ -0,0 +1,577 @@ +import { Box, chakra, Flex, Img, Text } from "@chakra-ui/react"; +import { + LocaleMenu, + LocaleMenuButton, + LocaleMenuLink, + LocaleMenuList, +} from "@components/LocaleMenu"; +import { MobileNavDrawer } from "@components/MobileNavDrawer"; +import { WordmarkLogo } from "@components/WordmarkLogo"; +import { STRAPI_URL } from "@config/env"; +import { NavBar, NavMenuMobile } from "@features/mainNavigation"; +import { NAV_BLOCK } from "@features/mainNavigation/blocks"; +import { NavBlockData } from "@features/mainNavigation/blocks/NavigationBlock"; +import { + GetGlobal, + GetGlobalQuery, + GetGlobalQueryVariables, + GetProjects, + GetProjectsQuery, + GetProjectsQueryVariables, + UpdateMenu, + UpdateMenuInput, +} from "@graphql/generated"; +import { fetchGraphQL } from "@graphql/utils"; +import { SiteLayout } from "@layouts/siteLayout"; +import { + getPageCreatorPlugin, + GlobalData, + LocalizationsData, +} from "@plugins/usePagePlugin"; +import { filterListNullableItems } from "@utils"; +import { GetStaticProps } from "next"; +import Link from "next/link"; +import { useRouter } from "next/router"; +import React from "react"; +import { InlineBlocks, InlineForm } from "react-tinacms-inline"; +import { Form, FormOptions, useCMS, useForm, usePlugin } from "tinacms"; + +interface Project { + id: string; + path: string; + linkPath: Nullable; + linkLabel: Nullable; + description: Nullable; + locale: Nullable; + companyName: Nullable; + projectType: Nullable; + image: Nullable; + localizations: Nullable; +} + +interface ProjectImage { + id: string; + url: string; + alternativeText: Nullable; +} + +export interface ImageRenderProps { + src: { + url?: string; + previewSrc?: string; + }; +} + +interface DynamicPageProps { + locale: string; + preview: boolean; + data: { + global: GlobalData; + projects: Project[]; + allProjects: Project[]; + }; +} + +function wrap(value: T | T[]): T[] { + if (Array.isArray(value)) { + return value; + } + return [value]; +} + +const NavigationInlineBlocks = chakra(InlineBlocks); + +export default function Index({ data }: DynamicPageProps) { + const router = useRouter(); + const [_, form] = useProjectPlugin(data.global); + const cms = useCMS(); + + const availableLocales: string[] = []; + + data.allProjects.forEach((project) => { + if (project.locale != null) { + if (!availableLocales.includes(project.locale)) { + availableLocales.push(project.locale); + } + } + }); + + const index = availableLocales.indexOf(router.locale!); + availableLocales.splice(index, 1); + + return ( + + + + + + + + + + + + + div": { + w: `${cms.enabled ? "36" : "auto"}`, + }, + }} + zIndex="1" + display={{ + base: "none", + lg: "flex", + }} + flex="1 1 0%" + w="full" + mr="8" + justifyContent="flex-end" + flexDir="row" + name="topbar.menu.links" + blocks={NAV_BLOCK} + direction="horizontal" + max={6} + /> + + + {router.locale!.toUpperCase()} + + + {router.locale?.toUpperCase()} + + {data ? ( + availableLocales.map((locale) => { + if (locale != router.locale) { + return ( + + {locale?.toUpperCase()} + + ); + } + }) + ) : ( + + )} + + + + + + + + + PROJECTS + + + + {data.projects.map((project) => { + if (project.locale === router.locale) { + return ( + + + + {project.companyName} + + + {project.projectType} + + + {project.description} + + + + + {project.linkLabel} + + + + + + + + + + + + + ); + } + })} + + + + ); +} + +export const getStaticProps: GetStaticProps< + DynamicPageProps | { notFound: boolean } +> = async (context) => { + const pathParts = wrap(context.params?.handle || []); + + const locale = context.locale; + if (locale == null) { + throw new Error(`Path "${pathParts.join("/")}" has no locale!`); + } + const preview = context.preview === true; + + const projects = await fetchGraphQL< + GetProjectsQuery, + GetProjectsQueryVariables + >(GetProjects, { locale }); + + const allProjects = await fetchGraphQL< + GetProjectsQuery, + GetProjectsQueryVariables + >(GetProjects, { locale: "all" }); + + if (projects == null) { + return { + notFound: true, + }; + } + + const availableGlobal = await fetchGraphQL< + GetGlobalQuery, + GetGlobalQueryVariables + >(GetGlobal); + + const globalData = getGlobalData(availableGlobal.global); + + const projectData = getProjectsData(projects.projects); + + const allProjectData = getProjectsData(allProjects.projects); + + if (globalData == null) { + return { + notFound: true, + }; + } + + if (projectData == null) { + return { + notFound: true, + }; + } + + if (allProjectData == null) { + return { + notFound: true, + }; + } + + if (preview) { + return { + props: { + data: { + projects: projectData, + global: globalData, + allProjects: allProjectData, + }, + locale, + preview, + previewData: context.previewData, + }, + }; + } + + return { + props: { + data: { + projects: projectData, + global: globalData, + allProjects: allProjectData, + }, + locale, + preview, + }, + }; +}; + +function useProjectPlugin(data: GlobalData): [GlobalData, Form] { + const cms = useCMS(); + const router = useRouter(); + + const formConfig: FormOptions = { + id: data.id, + label: "Projects settings", + initialValues: data, + onSubmit: async (data) => { + const input = getMenuInput(data); + + try { + const response = await cms.api.strapi.fetchGraphql(UpdateMenu, { + input, + }); + + if (response.errors != null) { + cms.alerts.error("Error while saving data", 10000); + } else { + if (response.data) { + cms.alerts.success("Changes saved!"); + } else { + cms.alerts.error("Error while saving changes"); + } + } + } catch (error) { + console.log(error); + cms.alerts.error("Error while saving changes"); + } + }, + fields: [], + }; + + const [formData, form] = useForm(formConfig, { values: data }); + usePlugin(form); + + const creatorPlugin = getPageCreatorPlugin({ + locales: router.locales || [], + }); + usePlugin(creatorPlugin); + + return [formData, form]; +} + +function getMenuInput(data: GlobalData): UpdateMenuInput { + return { + where: { id: data.id }, + data: { + title: data.topbar.menu.title, + links: data.topbar.menu.links.map((link) => { + return { + id: link.id, + label: link.label || null, + url: link.url || null, + }; + }), + }, + }; +} + +function getGlobalData( + global: GetGlobalQuery["global"] +): GlobalData | undefined { + if (global == null) { + return undefined; + } + + if (global.topbar == null) { + return undefined; + } + + if (global.footer == null) { + return undefined; + } + + if (global.companyData == null) { + return undefined; + } + + if (global.topbar.menu?.links == null) { + return undefined; + } + + let filteredLinks = filterListNullableItems(global.topbar.menu.links); + return { + id: global.id, + topbar: { + id: global.topbar.id, + menu: { + id: global.topbar.menu?.id, + title: global.topbar.menu?.title, + links: filteredLinks.map((link) => { + return { + _template: "navigationLink", + id: link.id, + label: link.label || null, + url: link.url || null, + }; + }), + }, + }, + footer: { + id: global.footer?.id, + description: global.footer?.description || null, + }, + companyData: { + id: global.companyData.id, + companyName: global.companyData.companyName || null, + additionalLegalInfo: global.companyData.additionalLegalInfo || null, + vatId: global.companyData.vatId || null, + capital: global.companyData.capital || null, + copyright: global.companyData.copyright || null, + primaryEmail: global.companyData.primaryEmail || null, + locations: global.companyData.locations + ? filterListNullableItems(global.companyData.locations).map( + (location) => { + return { + id: location.id, + province: location.province || null, + provinceInitials: location.provinceInitials || null, + type: location.type || null, + street: location.street || null, + city: location.city || null, + cap: location.cap || null, + }; + } + ) + : [], + }, + }; +} + +function getProjectsData( + projects: GetProjectsQuery["projects"] +): Project[] | undefined { + return projects as Project[]; +} diff --git a/frontend/plugins/usePagePlugin.ts b/frontend/plugins/usePagePlugin.ts index 9cc3e09f..5cb3c24f 100644 --- a/frontend/plugins/usePagePlugin.ts +++ b/frontend/plugins/usePagePlugin.ts @@ -39,6 +39,23 @@ export interface PageDataCreateInput { locale: string; } +export interface ProjectDataCreateInput { + companyName: string; + projectType: string; + description: string; + linkPath: string; + linkLabel: string; + path: string; + image: ImageProps; + locale: string; +} + +interface ImageProps { + id: string; + url: string; + alternativeText: string; +} + export interface GlobalData { id: string; topbar: { @@ -158,10 +175,11 @@ export function usePagePlugin(data: Data): [Data, Form] { const [formData, form] = useForm(formConfig, { values: data }); usePlugin(form); - const creatorPlugin = getPageCreatorPlugin({ + const pageCreatorPlugin = getPageCreatorPlugin({ locales: router.locales || [], }); - usePlugin(creatorPlugin); + + usePlugin(pageCreatorPlugin); return [formData, form]; } @@ -170,6 +188,7 @@ function getPageInput(data: PageData): UpdatePageInput { return { where: { id: data.id }, data: { + title: data.title, path: data.path, sections: data.sections.map((section) => { switch (section._template) { @@ -270,7 +289,7 @@ interface PageCreatorPluginOptions { locales: string[]; } -function getPageCreatorPlugin( +export function getPageCreatorPlugin( options: PageCreatorPluginOptions ): ContentCreatorPlugin { return { @@ -332,7 +351,9 @@ function getPageCreatorPlugin( }; } -function getPageCreateInput(input: PageDataCreateInput): CreatePageInput { +export function getPageCreateInput( + input: PageDataCreateInput +): CreatePageInput { return { data: { title: input.title || "Default",