diff --git a/README.md b/README.md index 8cc612ab..816e3af6 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure that WFs are working properly, add these GH Secrets right after projec After setting up **_all_**(!) required secrets, perform these actions: - [ ] In the `Actions` tab, find WF named `Bootstrap` in the left pane - [ ] Click on the button `Run workflow` in the top-right corner and in pop-up window click green button `Run workflow` -- [ ] After that replace all occurrences of `"project-templates"` in all `package.json` files with the name of your project, run `yarn install` from root, then commit and push these changes +- [ ] After that open code editor of your choice and replace all occurrences of `"project-templates"` in all `package.json` files with the name of your project, run `yarn install` from every location where you have made changes, then commit and push these changes - [ ] Wait for the `Staging Deployment` workflow to run and check your staging at `REPO_NAME.bndigital.dev` - [ ] Go to `REPO_NAME.bndigital.dev/admin` and set up Strapi Admin with [these](https://vault.bndigital.dev/ui/vault/secrets/templates/show/project/staging/strapi) credentials - [ ] Click on the `Settings` option in the menu on the left and on the page that appeared click `Transfer tokens` and then `+ Create new Transfer Token` button inn the top-right corner diff --git a/packages/cms/package.json b/packages/cms/package.json index e4af8dc1..4ea7e496 100644 --- a/packages/cms/package.json +++ b/packages/cms/package.json @@ -15,12 +15,12 @@ "@bn-digital/strapi-types": "^1.0.64", "@bn-digital/typescript-config": "^1.4.0", "@notum-cz/strapi-plugin-content-versioning": "^0.4.7", - "@strapi/plugin-graphql": "^4.11.4", - "@strapi/plugin-users-permissions": "^4.11.4", - "@strapi/provider-email-nodemailer": "^4.11.4", - "@strapi/provider-upload-aws-s3": "^4.11.4", - "@strapi/strapi": "^4.11.4", - "@strapi/typescript-utils": "^4.11.4", + "@strapi/plugin-graphql": "4.10.4", + "@strapi/plugin-users-permissions": "4.10.4", + "@strapi/provider-email-nodemailer": "4.10.4", + "@strapi/provider-upload-aws-s3": "4.10.4", + "@strapi/strapi": "4.10.4", + "@strapi/typescript-utils": "4.10.4", "better-sqlite3": "^8.4.0", "pg": "^8.11.1", "strapi-blurhash": "^1.1.1", diff --git a/packages/cms/schemas.d.ts b/packages/cms/schemas.d.ts new file mode 100644 index 00000000..12fc5e76 --- /dev/null +++ b/packages/cms/schemas.d.ts @@ -0,0 +1,725 @@ +import { + BigIntegerAttribute, + BooleanAttribute, + CollectionTypeSchema, + ComponentAttribute, + ComponentSchema, + CustomField, + DateTimeAttribute, + DecimalAttribute, + DefaultTo, + EmailAttribute, + EnumerationAttribute, + IntegerAttribute, + JSONAttribute, + MediaAttribute, + PasswordAttribute, + PrivateAttribute, + RelationAttribute, + RequiredAttribute, + RichTextAttribute, + SetMinMax, + SetMinMaxLength, + SingleTypeSchema, + StringAttribute, + TextAttribute, + UIDAttribute, + UniqueAttribute, +} from "@strapi/strapi" + +export interface AdminPermission extends CollectionTypeSchema { + info: { + name: "Permission" + description: "" + singularName: "permission" + pluralName: "permissions" + displayName: "Permission" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + action: StringAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + subject: StringAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + properties: JSONAttribute & DefaultTo<{}> + conditions: JSONAttribute & DefaultTo<[]> + role: RelationAttribute<"admin::permission", "manyToOne", "admin::role"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::permission", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::permission", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface AdminUser extends CollectionTypeSchema { + info: { + name: "User" + description: "" + singularName: "user" + pluralName: "users" + displayName: "User" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + firstname: StringAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + lastname: StringAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + username: StringAttribute + email: EmailAttribute & + RequiredAttribute & + PrivateAttribute & + UniqueAttribute & + SetMinMaxLength<{ + minLength: 6 + }> + password: PasswordAttribute & + PrivateAttribute & + SetMinMaxLength<{ + minLength: 6 + }> + resetPasswordToken: StringAttribute & PrivateAttribute + registrationToken: StringAttribute & PrivateAttribute + isActive: BooleanAttribute & PrivateAttribute & DefaultTo + roles: RelationAttribute<"admin::user", "manyToMany", "admin::role"> & PrivateAttribute + blocked: BooleanAttribute & PrivateAttribute & DefaultTo + preferedLanguage: StringAttribute + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::user", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::user", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface AdminRole extends CollectionTypeSchema { + info: { + name: "Role" + description: "" + singularName: "role" + pluralName: "roles" + displayName: "Role" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & + RequiredAttribute & + UniqueAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + code: StringAttribute & + RequiredAttribute & + UniqueAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + description: StringAttribute + users: RelationAttribute<"admin::role", "manyToMany", "admin::user"> + permissions: RelationAttribute<"admin::role", "oneToMany", "admin::permission"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::role", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::role", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface AdminApiToken extends CollectionTypeSchema { + info: { + name: "Api Token" + singularName: "api-token" + pluralName: "api-tokens" + displayName: "Api Token" + description: "" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & + RequiredAttribute & + UniqueAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + description: StringAttribute & + SetMinMaxLength<{ + minLength: 1 + }> & + DefaultTo<""> + type: EnumerationAttribute<["read-only", "full-access", "custom"]> & RequiredAttribute & DefaultTo<"read-only"> + accessKey: StringAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + lastUsedAt: DateTimeAttribute + permissions: RelationAttribute<"admin::api-token", "oneToMany", "admin::api-token-permission"> + expiresAt: DateTimeAttribute + lifespan: BigIntegerAttribute + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::api-token", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::api-token", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface AdminApiTokenPermission extends CollectionTypeSchema { + info: { + name: "API Token Permission" + description: "" + singularName: "api-token-permission" + pluralName: "api-token-permissions" + displayName: "API Token Permission" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + action: StringAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + token: RelationAttribute<"admin::api-token-permission", "manyToOne", "admin::api-token"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::api-token-permission", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::api-token-permission", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface AdminTransferToken extends CollectionTypeSchema { + info: { + name: "Transfer Token" + singularName: "transfer-token" + pluralName: "transfer-tokens" + displayName: "Transfer Token" + description: "" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & + RequiredAttribute & + UniqueAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + description: StringAttribute & + SetMinMaxLength<{ + minLength: 1 + }> & + DefaultTo<""> + accessKey: StringAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + lastUsedAt: DateTimeAttribute + permissions: RelationAttribute<"admin::transfer-token", "oneToMany", "admin::transfer-token-permission"> + expiresAt: DateTimeAttribute + lifespan: BigIntegerAttribute + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::transfer-token", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::transfer-token", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface AdminTransferTokenPermission extends CollectionTypeSchema { + info: { + name: "Transfer Token Permission" + description: "" + singularName: "transfer-token-permission" + pluralName: "transfer-token-permissions" + displayName: "Transfer Token Permission" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + action: StringAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 1 + }> + token: RelationAttribute<"admin::transfer-token-permission", "manyToOne", "admin::transfer-token"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"admin::transfer-token-permission", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"admin::transfer-token-permission", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface ApiHomeHome extends SingleTypeSchema { + info: { + singularName: "home" + pluralName: "homes" + displayName: "Home" + description: "" + } + options: { + draftAndPublish: false + } + attributes: { + hero: ComponentAttribute<"ui.section"> + key: UIDAttribute & CustomField<"plugin::field-uuid.uuid"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"api::home.home", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"api::home.home", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface ApiLayoutLayout extends SingleTypeSchema { + info: { + singularName: "layout" + pluralName: "layouts" + displayName: "Layout" + description: "Used for common layout components data" + } + options: { + draftAndPublish: false + } + attributes: { + headerMenu: ComponentAttribute<"ui.link", true> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"api::layout.layout", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"api::layout.layout", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface PluginUploadFile extends CollectionTypeSchema { + info: { + singularName: "file" + pluralName: "files" + displayName: "File" + description: "" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & RequiredAttribute + alternativeText: StringAttribute + caption: StringAttribute + width: IntegerAttribute + height: IntegerAttribute + formats: JSONAttribute + hash: StringAttribute & RequiredAttribute + ext: StringAttribute + mime: StringAttribute & RequiredAttribute + size: DecimalAttribute & RequiredAttribute + url: StringAttribute & RequiredAttribute + previewUrl: StringAttribute + provider: StringAttribute & RequiredAttribute + provider_metadata: JSONAttribute + related: RelationAttribute<"plugin::upload.file", "morphToMany"> + folder: RelationAttribute<"plugin::upload.file", "manyToOne", "plugin::upload.folder"> & PrivateAttribute + folderPath: StringAttribute & + RequiredAttribute & + PrivateAttribute & + SetMinMax<{ + min: 1 + }> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"plugin::upload.file", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"plugin::upload.file", "oneToOne", "admin::user"> & PrivateAttribute + blurhash: TextAttribute + } +} + +export interface PluginUploadFolder extends CollectionTypeSchema { + info: { + singularName: "folder" + pluralName: "folders" + displayName: "Folder" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & + RequiredAttribute & + SetMinMax<{ + min: 1 + }> + pathId: IntegerAttribute & RequiredAttribute & UniqueAttribute + parent: RelationAttribute<"plugin::upload.folder", "manyToOne", "plugin::upload.folder"> + children: RelationAttribute<"plugin::upload.folder", "oneToMany", "plugin::upload.folder"> + files: RelationAttribute<"plugin::upload.folder", "oneToMany", "plugin::upload.file"> + path: StringAttribute & + RequiredAttribute & + SetMinMax<{ + min: 1 + }> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"plugin::upload.folder", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"plugin::upload.folder", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface PluginUsersPermissionsPermission extends CollectionTypeSchema { + info: { + name: "permission" + description: "" + singularName: "permission" + pluralName: "permissions" + displayName: "Permission" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + action: StringAttribute & RequiredAttribute + role: RelationAttribute<"plugin::users-permissions.permission", "manyToOne", "plugin::users-permissions.role"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"plugin::users-permissions.permission", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"plugin::users-permissions.permission", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface PluginUsersPermissionsRole extends CollectionTypeSchema { + info: { + name: "role" + description: "" + singularName: "role" + pluralName: "roles" + displayName: "Role" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 3 + }> + description: StringAttribute + type: StringAttribute & UniqueAttribute + permissions: RelationAttribute< + "plugin::users-permissions.role", + "oneToMany", + "plugin::users-permissions.permission" + > + users: RelationAttribute<"plugin::users-permissions.role", "oneToMany", "plugin::users-permissions.user"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"plugin::users-permissions.role", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"plugin::users-permissions.role", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface PluginUsersPermissionsUser extends CollectionTypeSchema { + info: { + name: "user" + description: "" + singularName: "user" + pluralName: "users" + displayName: "User" + } + options: { + draftAndPublish: false + timestamps: true + } + attributes: { + username: StringAttribute & + RequiredAttribute & + UniqueAttribute & + SetMinMaxLength<{ + minLength: 3 + }> + email: EmailAttribute & + RequiredAttribute & + SetMinMaxLength<{ + minLength: 6 + }> + provider: StringAttribute + password: PasswordAttribute & + PrivateAttribute & + SetMinMaxLength<{ + minLength: 6 + }> + resetPasswordToken: StringAttribute & PrivateAttribute + confirmationToken: StringAttribute & PrivateAttribute + confirmed: BooleanAttribute & DefaultTo + blocked: BooleanAttribute & DefaultTo + role: RelationAttribute<"plugin::users-permissions.user", "manyToOne", "plugin::users-permissions.role"> + uuid: UIDAttribute & CustomField<"plugin::field-uuid.uuid"> + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"plugin::users-permissions.user", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"plugin::users-permissions.user", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface PluginReactIconsIconlibrary extends CollectionTypeSchema { + info: { + singularName: "iconlibrary" + pluralName: "iconlibraries" + displayName: "IconLibrary" + } + options: { + draftAndPublish: false + comment: "" + } + pluginOptions: { + "content-manager": { + visible: false + } + "content-type-builder": { + visible: false + } + } + attributes: { + name: StringAttribute & RequiredAttribute + abbreviation: StringAttribute & + RequiredAttribute & + UniqueAttribute & + SetMinMaxLength<{ + maxLength: 3 + }> + isEnabled: BooleanAttribute & DefaultTo + createdAt: DateTimeAttribute + updatedAt: DateTimeAttribute + createdBy: RelationAttribute<"plugin::react-icons.iconlibrary", "oneToOne", "admin::user"> & PrivateAttribute + updatedBy: RelationAttribute<"plugin::react-icons.iconlibrary", "oneToOne", "admin::user"> & PrivateAttribute + } +} + +export interface DataEntry extends ComponentSchema { + info: { + displayName: "Entry" + icon: "clipboard-list" + description: "" + } + attributes: { + key: StringAttribute + value: TextAttribute & RequiredAttribute + } +} + +export interface DataSet extends ComponentSchema { + info: { + displayName: "Set" + icon: "align-justify" + } + attributes: { + value: StringAttribute & RequiredAttribute + } +} + +export interface UiCard extends ComponentSchema { + info: { + displayName: "Card" + icon: "address-card" + description: "" + } + attributes: { + title: StringAttribute + subtitle: StringAttribute + description: TextAttribute + media: MediaAttribute + } +} + +export interface UiGrid extends ComponentSchema { + info: { + displayName: "Grid" + icon: "table" + description: "" + } + attributes: { + visible: BooleanAttribute & RequiredAttribute & DefaultTo + children: ComponentAttribute<"data.entry", true> & + RequiredAttribute & + SetMinMax<{ + min: 1 + }> + } +} + +export interface UiHeadline extends ComponentSchema { + info: { + displayName: "Headline" + icon: "heading" + description: "" + } + attributes: { + title: TextAttribute + subtitle: TextAttribute + } +} + +export interface UiLink extends ComponentSchema { + info: { + displayName: "Link" + icon: "link" + description: "" + } + attributes: { + url: StringAttribute & RequiredAttribute + title: StringAttribute + target: EnumerationAttribute<["blank", "self", "parent", "top"]> & RequiredAttribute & DefaultTo<"self"> + icon: StringAttribute & CustomField<"plugin::react-icons.icon"> + } +} + +export interface UiParagraph extends ComponentSchema { + info: { + displayName: "Paragraph" + icon: "envelope-open-text" + } + attributes: { + value: RichTextAttribute & RequiredAttribute + } +} + +export interface UiSection extends ComponentSchema { + info: { + displayName: "Section" + icon: "pager" + description: "" + } + attributes: { + visible: BooleanAttribute & RequiredAttribute & DefaultTo + heading: ComponentAttribute<"ui.card"> + button: ComponentAttribute<"ui.link"> + } +} + +export interface UiTab extends ComponentSchema { + info: { + displayName: "Tab" + icon: "clone" + description: "" + } + attributes: { + name: StringAttribute & RequiredAttribute + pane: ComponentAttribute<"ui.card"> & RequiredAttribute + } +} + +export interface UiText extends ComponentSchema { + info: { + displayName: "Text" + icon: "indent" + description: "" + } + attributes: { + visible: BooleanAttribute & RequiredAttribute & DefaultTo + children: ComponentAttribute<"ui.paragraph", true> & + RequiredAttribute & + SetMinMax<{ + min: 1 + }> + } +} + +declare global { + namespace Strapi { + interface Schemas { + "admin::permission": AdminPermission + "admin::user": AdminUser + "admin::role": AdminRole + "admin::api-token": AdminApiToken + "admin::api-token-permission": AdminApiTokenPermission + "admin::transfer-token": AdminTransferToken + "admin::transfer-token-permission": AdminTransferTokenPermission + "api::home.home": ApiHomeHome + "api::layout.layout": ApiLayoutLayout + "plugin::upload.file": PluginUploadFile + "plugin::upload.folder": PluginUploadFolder + "plugin::users-permissions.permission": PluginUsersPermissionsPermission + "plugin::users-permissions.role": PluginUsersPermissionsRole + "plugin::users-permissions.user": PluginUsersPermissionsUser + "plugin::react-icons.iconlibrary": PluginReactIconsIconlibrary + "data.entry": DataEntry + "data.set": DataSet + "ui.card": UiCard + "ui.grid": UiGrid + "ui.headline": UiHeadline + "ui.link": UiLink + "ui.paragraph": UiParagraph + "ui.section": UiSection + "ui.tab": UiTab + "ui.text": UiText + } + } +} diff --git a/packages/cms/src/graphql/index.ts b/packages/cms/src/graphql/index.ts index 6a302734..6e3a025e 100644 --- a/packages/cms/src/graphql/index.ts +++ b/packages/cms/src/graphql/index.ts @@ -3,8 +3,8 @@ import { readOnlyEntities, schemaExtension, writeOnlyEntities } from "./extensio function extendSchema(strapi: Strapi.Strapi) { const extensionService = getExtensionService(strapi) // Disabling CRUD operations for public-facing APIs - readOnlyEntities.forEach(entity => extensionService.shadowCRUD(entity).disableMutations()) - writeOnlyEntities.forEach(entity => extensionService.shadowCRUD(entity).disableQueries()) + readOnlyEntities.forEach((entity: Strapi.SingleTypeUIDs) => extensionService.shadowCRUD(entity).disableMutations()) + writeOnlyEntities.forEach((entity: Strapi.SingleTypeUIDs) => extensionService.shadowCRUD(entity).disableQueries()) // Decorating schema with custom fields, resolvers and extensions extensionService.use(schemaExtension) } diff --git a/packages/cms/src/hooks/typescript.ts b/packages/cms/src/hooks/typescript.ts index 0d362ac9..385d66d4 100644 --- a/packages/cms/src/hooks/typescript.ts +++ b/packages/cms/src/hooks/typescript.ts @@ -5,7 +5,7 @@ import app from "." function generateTypeDefinitions(strapi: StrapiGlobal["strapi"]): void { utils.generators - .generate({ + .generateSchemasDefinitions({ strapi, rootDir: path.join("src", "types"), pwd: app.workingDir, diff --git a/packages/cms/src/types/generated/graphql.d.ts b/packages/cms/src/types/generated/graphql.d.ts index 676b61c3..82fe9b53 100644 --- a/packages/cms/src/types/generated/graphql.d.ts +++ b/packages/cms/src/types/generated/graphql.d.ts @@ -3,606 +3,562 @@ * Do not make changes to this file directly */ + + + + + + declare global { interface NexusGen extends NexusGenTypes {} } export interface NexusGenInputs { - BooleanFilterInput: { - // input type - and?: Array | null // [Boolean] - between?: Array | null // [Boolean] - contains?: boolean | null // Boolean - containsi?: boolean | null // Boolean - endsWith?: boolean | null // Boolean - eq?: boolean | null // Boolean - eqi?: boolean | null // Boolean - gt?: boolean | null // Boolean - gte?: boolean | null // Boolean - in?: Array | null // [Boolean] - lt?: boolean | null // Boolean - lte?: boolean | null // Boolean - ne?: boolean | null // Boolean - not?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - notContains?: boolean | null // Boolean - notContainsi?: boolean | null // Boolean - notIn?: Array | null // [Boolean] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [Boolean] - startsWith?: boolean | null // Boolean - } - ComponentDataEntryFiltersInput: { - // input type - and?: Array | null // [ComponentDataEntryFiltersInput] - key?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["ComponentDataEntryFiltersInput"] | null // ComponentDataEntryFiltersInput - or?: Array | null // [ComponentDataEntryFiltersInput] - value?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - ComponentDataEntryInput: { - // input type - id?: string | null // ID - key?: string | null // String - value?: string | null // String - } - ComponentDataSetFiltersInput: { - // input type - and?: Array | null // [ComponentDataSetFiltersInput] - not?: NexusGenInputs["ComponentDataSetFiltersInput"] | null // ComponentDataSetFiltersInput - or?: Array | null // [ComponentDataSetFiltersInput] - value?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - ComponentDataSetInput: { - // input type - id?: string | null // ID - value?: string | null // String - } - ComponentUiCardFiltersInput: { - // input type - and?: Array | null // [ComponentUiCardFiltersInput] - description?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["ComponentUiCardFiltersInput"] | null // ComponentUiCardFiltersInput - or?: Array | null // [ComponentUiCardFiltersInput] - subtitle?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - title?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - ComponentUiCardInput: { - // input type - description?: string | null // String - id?: string | null // ID - media?: string | null // ID - subtitle?: string | null // String - title?: string | null // String - } - ComponentUiGridFiltersInput: { - // input type - and?: Array | null // [ComponentUiGridFiltersInput] - children?: NexusGenInputs["ComponentDataEntryFiltersInput"] | null // ComponentDataEntryFiltersInput - not?: NexusGenInputs["ComponentUiGridFiltersInput"] | null // ComponentUiGridFiltersInput - or?: Array | null // [ComponentUiGridFiltersInput] - visible?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - } - ComponentUiGridInput: { - // input type - children?: Array | null // [ComponentDataEntryInput] - id?: string | null // ID - visible?: boolean | null // Boolean - } - ComponentUiHeadlineFiltersInput: { - // input type - and?: Array | null // [ComponentUiHeadlineFiltersInput] - not?: NexusGenInputs["ComponentUiHeadlineFiltersInput"] | null // ComponentUiHeadlineFiltersInput - or?: Array | null // [ComponentUiHeadlineFiltersInput] - subtitle?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - title?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - ComponentUiHeadlineInput: { - // input type - id?: string | null // ID - subtitle?: string | null // String - title?: string | null // String - } - ComponentUiLinkFiltersInput: { - // input type - and?: Array | null // [ComponentUiLinkFiltersInput] - icon?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["ComponentUiLinkFiltersInput"] | null // ComponentUiLinkFiltersInput - or?: Array | null // [ComponentUiLinkFiltersInput] - target?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - title?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - url?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - ComponentUiLinkInput: { - // input type - icon?: string | null // String - id?: string | null // ID - target?: NexusGenEnums["ENUM_COMPONENTUILINK_TARGET"] | null // ENUM_COMPONENTUILINK_TARGET - title?: string | null // String - url?: string | null // String - } - ComponentUiParagraphFiltersInput: { - // input type - and?: Array | null // [ComponentUiParagraphFiltersInput] - not?: NexusGenInputs["ComponentUiParagraphFiltersInput"] | null // ComponentUiParagraphFiltersInput - or?: Array | null // [ComponentUiParagraphFiltersInput] - value?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - ComponentUiParagraphInput: { - // input type - id?: string | null // ID - value?: string | null // String - } - ComponentUiSectionFiltersInput: { - // input type - and?: Array | null // [ComponentUiSectionFiltersInput] - button?: NexusGenInputs["ComponentUiLinkFiltersInput"] | null // ComponentUiLinkFiltersInput - heading?: NexusGenInputs["ComponentUiCardFiltersInput"] | null // ComponentUiCardFiltersInput - not?: NexusGenInputs["ComponentUiSectionFiltersInput"] | null // ComponentUiSectionFiltersInput - or?: Array | null // [ComponentUiSectionFiltersInput] - visible?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - } - ComponentUiSectionInput: { - // input type - button?: NexusGenInputs["ComponentUiLinkInput"] | null // ComponentUiLinkInput - heading?: NexusGenInputs["ComponentUiCardInput"] | null // ComponentUiCardInput - id?: string | null // ID - visible?: boolean | null // Boolean - } - ComponentUiTabFiltersInput: { - // input type - and?: Array | null // [ComponentUiTabFiltersInput] - name?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["ComponentUiTabFiltersInput"] | null // ComponentUiTabFiltersInput - or?: Array | null // [ComponentUiTabFiltersInput] - pane?: NexusGenInputs["ComponentUiCardFiltersInput"] | null // ComponentUiCardFiltersInput - } - ComponentUiTabInput: { - // input type - id?: string | null // ID - name?: string | null // String - pane?: NexusGenInputs["ComponentUiCardInput"] | null // ComponentUiCardInput - } - ComponentUiTextFiltersInput: { - // input type - and?: Array | null // [ComponentUiTextFiltersInput] - children?: NexusGenInputs["ComponentUiParagraphFiltersInput"] | null // ComponentUiParagraphFiltersInput - not?: NexusGenInputs["ComponentUiTextFiltersInput"] | null // ComponentUiTextFiltersInput - or?: Array | null // [ComponentUiTextFiltersInput] - visible?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - } - ComponentUiTextInput: { - // input type - children?: Array | null // [ComponentUiParagraphInput] - id?: string | null // ID - visible?: boolean | null // Boolean - } - DateFilterInput: { - // input type - and?: Array | null // [Date] - between?: Array | null // [Date] - contains?: NexusGenScalars["Date"] | null // Date - containsi?: NexusGenScalars["Date"] | null // Date - endsWith?: NexusGenScalars["Date"] | null // Date - eq?: NexusGenScalars["Date"] | null // Date - eqi?: NexusGenScalars["Date"] | null // Date - gt?: NexusGenScalars["Date"] | null // Date - gte?: NexusGenScalars["Date"] | null // Date - in?: Array | null // [Date] - lt?: NexusGenScalars["Date"] | null // Date - lte?: NexusGenScalars["Date"] | null // Date - ne?: NexusGenScalars["Date"] | null // Date - not?: NexusGenInputs["DateFilterInput"] | null // DateFilterInput - notContains?: NexusGenScalars["Date"] | null // Date - notContainsi?: NexusGenScalars["Date"] | null // Date - notIn?: Array | null // [Date] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [Date] - startsWith?: NexusGenScalars["Date"] | null // Date - } - DateTimeFilterInput: { - // input type - and?: Array | null // [DateTime] - between?: Array | null // [DateTime] - contains?: NexusGenScalars["DateTime"] | null // DateTime - containsi?: NexusGenScalars["DateTime"] | null // DateTime - endsWith?: NexusGenScalars["DateTime"] | null // DateTime - eq?: NexusGenScalars["DateTime"] | null // DateTime - eqi?: NexusGenScalars["DateTime"] | null // DateTime - gt?: NexusGenScalars["DateTime"] | null // DateTime - gte?: NexusGenScalars["DateTime"] | null // DateTime - in?: Array | null // [DateTime] - lt?: NexusGenScalars["DateTime"] | null // DateTime - lte?: NexusGenScalars["DateTime"] | null // DateTime - ne?: NexusGenScalars["DateTime"] | null // DateTime - not?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - notContains?: NexusGenScalars["DateTime"] | null // DateTime - notContainsi?: NexusGenScalars["DateTime"] | null // DateTime - notIn?: Array | null // [DateTime] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [DateTime] - startsWith?: NexusGenScalars["DateTime"] | null // DateTime - } - FileInfoInput: { - // input type - alternativeText?: string | null // String - caption?: string | null // String - name?: string | null // String - } - FloatFilterInput: { - // input type - and?: Array | null // [Float] - between?: Array | null // [Float] - contains?: number | null // Float - containsi?: number | null // Float - endsWith?: number | null // Float - eq?: number | null // Float - eqi?: number | null // Float - gt?: number | null // Float - gte?: number | null // Float - in?: Array | null // [Float] - lt?: number | null // Float - lte?: number | null // Float - ne?: number | null // Float - not?: NexusGenInputs["FloatFilterInput"] | null // FloatFilterInput - notContains?: number | null // Float - notContainsi?: number | null // Float - notIn?: Array | null // [Float] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [Float] - startsWith?: number | null // Float - } - HomeFiltersInput: { - // input type - and?: Array | null // [HomeFiltersInput] - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - hero?: NexusGenInputs["ComponentUiSectionFiltersInput"] | null // ComponentUiSectionFiltersInput - key?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["HomeFiltersInput"] | null // HomeFiltersInput - or?: Array | null // [HomeFiltersInput] - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - } - HomeInput: { - // input type - hero?: NexusGenInputs["ComponentUiSectionInput"] | null // ComponentUiSectionInput - key?: string | null // String - } - IDFilterInput: { - // input type - and?: Array | null // [ID] - between?: Array | null // [ID] - contains?: string | null // ID - containsi?: string | null // ID - endsWith?: string | null // ID - eq?: string | null // ID - eqi?: string | null // ID - gt?: string | null // ID - gte?: string | null // ID - in?: Array | null // [ID] - lt?: string | null // ID - lte?: string | null // ID - ne?: string | null // ID - not?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - notContains?: string | null // ID - notContainsi?: string | null // ID - notIn?: Array | null // [ID] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [ID] - startsWith?: string | null // ID - } - IntFilterInput: { - // input type - and?: Array | null // [Int] - between?: Array | null // [Int] - contains?: number | null // Int - containsi?: number | null // Int - endsWith?: number | null // Int - eq?: number | null // Int - eqi?: number | null // Int - gt?: number | null // Int - gte?: number | null // Int - in?: Array | null // [Int] - lt?: number | null // Int - lte?: number | null // Int - ne?: number | null // Int - not?: NexusGenInputs["IntFilterInput"] | null // IntFilterInput - notContains?: number | null // Int - notContainsi?: number | null // Int - notIn?: Array | null // [Int] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [Int] - startsWith?: number | null // Int - } - JSONFilterInput: { - // input type - and?: Array | null // [JSON] - between?: Array | null // [JSON] - contains?: NexusGenScalars["JSON"] | null // JSON - containsi?: NexusGenScalars["JSON"] | null // JSON - endsWith?: NexusGenScalars["JSON"] | null // JSON - eq?: NexusGenScalars["JSON"] | null // JSON - eqi?: NexusGenScalars["JSON"] | null // JSON - gt?: NexusGenScalars["JSON"] | null // JSON - gte?: NexusGenScalars["JSON"] | null // JSON - in?: Array | null // [JSON] - lt?: NexusGenScalars["JSON"] | null // JSON - lte?: NexusGenScalars["JSON"] | null // JSON - ne?: NexusGenScalars["JSON"] | null // JSON - not?: NexusGenInputs["JSONFilterInput"] | null // JSONFilterInput - notContains?: NexusGenScalars["JSON"] | null // JSON - notContainsi?: NexusGenScalars["JSON"] | null // JSON - notIn?: Array | null // [JSON] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [JSON] - startsWith?: NexusGenScalars["JSON"] | null // JSON - } - LayoutFiltersInput: { - // input type - and?: Array | null // [LayoutFiltersInput] - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - headerMenu?: NexusGenInputs["ComponentUiLinkFiltersInput"] | null // ComponentUiLinkFiltersInput - not?: NexusGenInputs["LayoutFiltersInput"] | null // LayoutFiltersInput - or?: Array | null // [LayoutFiltersInput] - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - } - LayoutInput: { - // input type - headerMenu?: Array | null // [ComponentUiLinkInput] - } - LongFilterInput: { - // input type - and?: Array | null // [Long] - between?: Array | null // [Long] - contains?: NexusGenScalars["Long"] | null // Long - containsi?: NexusGenScalars["Long"] | null // Long - endsWith?: NexusGenScalars["Long"] | null // Long - eq?: NexusGenScalars["Long"] | null // Long - eqi?: NexusGenScalars["Long"] | null // Long - gt?: NexusGenScalars["Long"] | null // Long - gte?: NexusGenScalars["Long"] | null // Long - in?: Array | null // [Long] - lt?: NexusGenScalars["Long"] | null // Long - lte?: NexusGenScalars["Long"] | null // Long - ne?: NexusGenScalars["Long"] | null // Long - not?: NexusGenInputs["LongFilterInput"] | null // LongFilterInput - notContains?: NexusGenScalars["Long"] | null // Long - notContainsi?: NexusGenScalars["Long"] | null // Long - notIn?: Array | null // [Long] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [Long] - startsWith?: NexusGenScalars["Long"] | null // Long - } - PaginationArg: { - // input type - limit?: number | null // Int - page?: number | null // Int - pageSize?: number | null // Int - start?: number | null // Int - } - ReactIconsIconlibraryFiltersInput: { - // input type - abbreviation?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - and?: Array | null // [ReactIconsIconlibraryFiltersInput] - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - id?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - isEnabled?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - name?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["ReactIconsIconlibraryFiltersInput"] | null // ReactIconsIconlibraryFiltersInput - or?: Array | null // [ReactIconsIconlibraryFiltersInput] - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - } - ReactIconsIconlibraryInput: { - // input type - abbreviation?: string | null // String - isEnabled?: boolean | null // Boolean - name?: string | null // String - } - StringFilterInput: { - // input type - and?: Array | null // [String] - between?: Array | null // [String] - contains?: string | null // String - containsi?: string | null // String - endsWith?: string | null // String - eq?: string | null // String - eqi?: string | null // String - gt?: string | null // String - gte?: string | null // String - in?: Array | null // [String] - lt?: string | null // String - lte?: string | null // String - ne?: string | null // String - not?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - notContains?: string | null // String - notContainsi?: string | null // String - notIn?: Array | null // [String] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [String] - startsWith?: string | null // String - } - TimeFilterInput: { - // input type - and?: Array | null // [Time] - between?: Array | null // [Time] - contains?: NexusGenScalars["Time"] | null // Time - containsi?: NexusGenScalars["Time"] | null // Time - endsWith?: NexusGenScalars["Time"] | null // Time - eq?: NexusGenScalars["Time"] | null // Time - eqi?: NexusGenScalars["Time"] | null // Time - gt?: NexusGenScalars["Time"] | null // Time - gte?: NexusGenScalars["Time"] | null // Time - in?: Array | null // [Time] - lt?: NexusGenScalars["Time"] | null // Time - lte?: NexusGenScalars["Time"] | null // Time - ne?: NexusGenScalars["Time"] | null // Time - not?: NexusGenInputs["TimeFilterInput"] | null // TimeFilterInput - notContains?: NexusGenScalars["Time"] | null // Time - notContainsi?: NexusGenScalars["Time"] | null // Time - notIn?: Array | null // [Time] - notNull?: boolean | null // Boolean - null?: boolean | null // Boolean - or?: Array | null // [Time] - startsWith?: NexusGenScalars["Time"] | null // Time - } - UploadFileFiltersInput: { - // input type - alternativeText?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - and?: Array | null // [UploadFileFiltersInput] - blurhash?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - caption?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - ext?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - folder?: NexusGenInputs["UploadFolderFiltersInput"] | null // UploadFolderFiltersInput - folderPath?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - formats?: NexusGenInputs["JSONFilterInput"] | null // JSONFilterInput - hash?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - height?: NexusGenInputs["IntFilterInput"] | null // IntFilterInput - id?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - mime?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - name?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["UploadFileFiltersInput"] | null // UploadFileFiltersInput - or?: Array | null // [UploadFileFiltersInput] - previewUrl?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - provider?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - provider_metadata?: NexusGenInputs["JSONFilterInput"] | null // JSONFilterInput - size?: NexusGenInputs["FloatFilterInput"] | null // FloatFilterInput - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - url?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - width?: NexusGenInputs["IntFilterInput"] | null // IntFilterInput - } - UploadFileInput: { - // input type - alternativeText?: string | null // String - blurhash?: string | null // String - caption?: string | null // String - ext?: string | null // String - folder?: string | null // ID - folderPath?: string | null // String - formats?: NexusGenScalars["JSON"] | null // JSON - hash?: string | null // String - height?: number | null // Int - mime?: string | null // String - name?: string | null // String - previewUrl?: string | null // String - provider?: string | null // String - provider_metadata?: NexusGenScalars["JSON"] | null // JSON - size?: number | null // Float - url?: string | null // String - width?: number | null // Int - } - UploadFolderFiltersInput: { - // input type - and?: Array | null // [UploadFolderFiltersInput] - children?: NexusGenInputs["UploadFolderFiltersInput"] | null // UploadFolderFiltersInput - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - files?: NexusGenInputs["UploadFileFiltersInput"] | null // UploadFileFiltersInput - id?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - name?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["UploadFolderFiltersInput"] | null // UploadFolderFiltersInput - or?: Array | null // [UploadFolderFiltersInput] - parent?: NexusGenInputs["UploadFolderFiltersInput"] | null // UploadFolderFiltersInput - path?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - pathId?: NexusGenInputs["IntFilterInput"] | null // IntFilterInput - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - } - UploadFolderInput: { - // input type - children?: Array | null // [ID] - files?: Array | null // [ID] - name?: string | null // String - parent?: string | null // ID - path?: string | null // String - pathId?: number | null // Int - } - UsersPermissionsLoginInput: { - // input type - identifier: string // String! - password: string // String! - provider: string // String! - } - UsersPermissionsPermissionFiltersInput: { - // input type - action?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - and?: Array | null // [UsersPermissionsPermissionFiltersInput] - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - id?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - not?: NexusGenInputs["UsersPermissionsPermissionFiltersInput"] | null // UsersPermissionsPermissionFiltersInput - or?: Array | null // [UsersPermissionsPermissionFiltersInput] - role?: NexusGenInputs["UsersPermissionsRoleFiltersInput"] | null // UsersPermissionsRoleFiltersInput - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - } - UsersPermissionsPermissionInput: { - // input type - action?: string | null // String - role?: string | null // ID - } - UsersPermissionsRegisterInput: { - // input type - email: string // String! - password: string // String! - username: string // String! - } - UsersPermissionsRoleFiltersInput: { - // input type - and?: Array | null // [UsersPermissionsRoleFiltersInput] - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - description?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - id?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - name?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - not?: NexusGenInputs["UsersPermissionsRoleFiltersInput"] | null // UsersPermissionsRoleFiltersInput - or?: Array | null // [UsersPermissionsRoleFiltersInput] - permissions?: NexusGenInputs["UsersPermissionsPermissionFiltersInput"] | null // UsersPermissionsPermissionFiltersInput - type?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - users?: NexusGenInputs["UsersPermissionsUserFiltersInput"] | null // UsersPermissionsUserFiltersInput - } - UsersPermissionsRoleInput: { - // input type - description?: string | null // String - name?: string | null // String - permissions?: Array | null // [ID] - type?: string | null // String - users?: Array | null // [ID] - } - UsersPermissionsUserFiltersInput: { - // input type - and?: Array | null // [UsersPermissionsUserFiltersInput] - blocked?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - confirmationToken?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - confirmed?: NexusGenInputs["BooleanFilterInput"] | null // BooleanFilterInput - createdAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - email?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - id?: NexusGenInputs["IDFilterInput"] | null // IDFilterInput - not?: NexusGenInputs["UsersPermissionsUserFiltersInput"] | null // UsersPermissionsUserFiltersInput - or?: Array | null // [UsersPermissionsUserFiltersInput] - password?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - provider?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - resetPasswordToken?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - role?: NexusGenInputs["UsersPermissionsRoleFiltersInput"] | null // UsersPermissionsRoleFiltersInput - updatedAt?: NexusGenInputs["DateTimeFilterInput"] | null // DateTimeFilterInput - username?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - uuid?: NexusGenInputs["StringFilterInput"] | null // StringFilterInput - } - UsersPermissionsUserInput: { - // input type - blocked?: boolean | null // Boolean - confirmationToken?: string | null // String - confirmed?: boolean | null // Boolean - email?: string | null // String - password?: string | null // String - provider?: string | null // String - resetPasswordToken?: string | null // String - role?: string | null // ID - username?: string | null // String - uuid?: string | null // String + BooleanFilterInput: { // input type + and?: Array | null; // [Boolean] + between?: Array | null; // [Boolean] + contains?: boolean | null; // Boolean + containsi?: boolean | null; // Boolean + endsWith?: boolean | null; // Boolean + eq?: boolean | null; // Boolean + eqi?: boolean | null; // Boolean + gt?: boolean | null; // Boolean + gte?: boolean | null; // Boolean + in?: Array | null; // [Boolean] + lt?: boolean | null; // Boolean + lte?: boolean | null; // Boolean + ne?: boolean | null; // Boolean + not?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + notContains?: boolean | null; // Boolean + notContainsi?: boolean | null; // Boolean + notIn?: Array | null; // [Boolean] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [Boolean] + startsWith?: boolean | null; // Boolean + } + ComponentDataEntryFiltersInput: { // input type + and?: Array | null; // [ComponentDataEntryFiltersInput] + key?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['ComponentDataEntryFiltersInput'] | null; // ComponentDataEntryFiltersInput + or?: Array | null; // [ComponentDataEntryFiltersInput] + value?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + ComponentDataEntryInput: { // input type + id?: string | null; // ID + key?: string | null; // String + value?: string | null; // String + } + ComponentDataSetFiltersInput: { // input type + and?: Array | null; // [ComponentDataSetFiltersInput] + not?: NexusGenInputs['ComponentDataSetFiltersInput'] | null; // ComponentDataSetFiltersInput + or?: Array | null; // [ComponentDataSetFiltersInput] + value?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + ComponentDataSetInput: { // input type + id?: string | null; // ID + value?: string | null; // String + } + ComponentUiCardFiltersInput: { // input type + and?: Array | null; // [ComponentUiCardFiltersInput] + description?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['ComponentUiCardFiltersInput'] | null; // ComponentUiCardFiltersInput + or?: Array | null; // [ComponentUiCardFiltersInput] + subtitle?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + title?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + ComponentUiCardInput: { // input type + description?: string | null; // String + id?: string | null; // ID + media?: string | null; // ID + subtitle?: string | null; // String + title?: string | null; // String + } + ComponentUiGridFiltersInput: { // input type + and?: Array | null; // [ComponentUiGridFiltersInput] + children?: NexusGenInputs['ComponentDataEntryFiltersInput'] | null; // ComponentDataEntryFiltersInput + not?: NexusGenInputs['ComponentUiGridFiltersInput'] | null; // ComponentUiGridFiltersInput + or?: Array | null; // [ComponentUiGridFiltersInput] + visible?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + } + ComponentUiGridInput: { // input type + children?: Array | null; // [ComponentDataEntryInput] + id?: string | null; // ID + visible?: boolean | null; // Boolean + } + ComponentUiHeadlineFiltersInput: { // input type + and?: Array | null; // [ComponentUiHeadlineFiltersInput] + not?: NexusGenInputs['ComponentUiHeadlineFiltersInput'] | null; // ComponentUiHeadlineFiltersInput + or?: Array | null; // [ComponentUiHeadlineFiltersInput] + subtitle?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + title?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + ComponentUiHeadlineInput: { // input type + id?: string | null; // ID + subtitle?: string | null; // String + title?: string | null; // String + } + ComponentUiLinkFiltersInput: { // input type + and?: Array | null; // [ComponentUiLinkFiltersInput] + icon?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['ComponentUiLinkFiltersInput'] | null; // ComponentUiLinkFiltersInput + or?: Array | null; // [ComponentUiLinkFiltersInput] + target?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + title?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + url?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + ComponentUiLinkInput: { // input type + icon?: string | null; // String + id?: string | null; // ID + target?: NexusGenEnums['ENUM_COMPONENTUILINK_TARGET'] | null; // ENUM_COMPONENTUILINK_TARGET + title?: string | null; // String + url?: string | null; // String + } + ComponentUiParagraphFiltersInput: { // input type + and?: Array | null; // [ComponentUiParagraphFiltersInput] + not?: NexusGenInputs['ComponentUiParagraphFiltersInput'] | null; // ComponentUiParagraphFiltersInput + or?: Array | null; // [ComponentUiParagraphFiltersInput] + value?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + ComponentUiParagraphInput: { // input type + id?: string | null; // ID + value?: string | null; // String + } + ComponentUiSectionFiltersInput: { // input type + and?: Array | null; // [ComponentUiSectionFiltersInput] + button?: NexusGenInputs['ComponentUiLinkFiltersInput'] | null; // ComponentUiLinkFiltersInput + heading?: NexusGenInputs['ComponentUiCardFiltersInput'] | null; // ComponentUiCardFiltersInput + not?: NexusGenInputs['ComponentUiSectionFiltersInput'] | null; // ComponentUiSectionFiltersInput + or?: Array | null; // [ComponentUiSectionFiltersInput] + visible?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + } + ComponentUiSectionInput: { // input type + button?: NexusGenInputs['ComponentUiLinkInput'] | null; // ComponentUiLinkInput + heading?: NexusGenInputs['ComponentUiCardInput'] | null; // ComponentUiCardInput + id?: string | null; // ID + visible?: boolean | null; // Boolean + } + ComponentUiTabFiltersInput: { // input type + and?: Array | null; // [ComponentUiTabFiltersInput] + name?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['ComponentUiTabFiltersInput'] | null; // ComponentUiTabFiltersInput + or?: Array | null; // [ComponentUiTabFiltersInput] + pane?: NexusGenInputs['ComponentUiCardFiltersInput'] | null; // ComponentUiCardFiltersInput + } + ComponentUiTabInput: { // input type + id?: string | null; // ID + name?: string | null; // String + pane?: NexusGenInputs['ComponentUiCardInput'] | null; // ComponentUiCardInput + } + ComponentUiTextFiltersInput: { // input type + and?: Array | null; // [ComponentUiTextFiltersInput] + children?: NexusGenInputs['ComponentUiParagraphFiltersInput'] | null; // ComponentUiParagraphFiltersInput + not?: NexusGenInputs['ComponentUiTextFiltersInput'] | null; // ComponentUiTextFiltersInput + or?: Array | null; // [ComponentUiTextFiltersInput] + visible?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + } + ComponentUiTextInput: { // input type + children?: Array | null; // [ComponentUiParagraphInput] + id?: string | null; // ID + visible?: boolean | null; // Boolean + } + DateFilterInput: { // input type + and?: Array | null; // [Date] + between?: Array | null; // [Date] + contains?: NexusGenScalars['Date'] | null; // Date + containsi?: NexusGenScalars['Date'] | null; // Date + endsWith?: NexusGenScalars['Date'] | null; // Date + eq?: NexusGenScalars['Date'] | null; // Date + eqi?: NexusGenScalars['Date'] | null; // Date + gt?: NexusGenScalars['Date'] | null; // Date + gte?: NexusGenScalars['Date'] | null; // Date + in?: Array | null; // [Date] + lt?: NexusGenScalars['Date'] | null; // Date + lte?: NexusGenScalars['Date'] | null; // Date + ne?: NexusGenScalars['Date'] | null; // Date + not?: NexusGenInputs['DateFilterInput'] | null; // DateFilterInput + notContains?: NexusGenScalars['Date'] | null; // Date + notContainsi?: NexusGenScalars['Date'] | null; // Date + notIn?: Array | null; // [Date] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [Date] + startsWith?: NexusGenScalars['Date'] | null; // Date + } + DateTimeFilterInput: { // input type + and?: Array | null; // [DateTime] + between?: Array | null; // [DateTime] + contains?: NexusGenScalars['DateTime'] | null; // DateTime + containsi?: NexusGenScalars['DateTime'] | null; // DateTime + endsWith?: NexusGenScalars['DateTime'] | null; // DateTime + eq?: NexusGenScalars['DateTime'] | null; // DateTime + eqi?: NexusGenScalars['DateTime'] | null; // DateTime + gt?: NexusGenScalars['DateTime'] | null; // DateTime + gte?: NexusGenScalars['DateTime'] | null; // DateTime + in?: Array | null; // [DateTime] + lt?: NexusGenScalars['DateTime'] | null; // DateTime + lte?: NexusGenScalars['DateTime'] | null; // DateTime + ne?: NexusGenScalars['DateTime'] | null; // DateTime + not?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + notContains?: NexusGenScalars['DateTime'] | null; // DateTime + notContainsi?: NexusGenScalars['DateTime'] | null; // DateTime + notIn?: Array | null; // [DateTime] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [DateTime] + startsWith?: NexusGenScalars['DateTime'] | null; // DateTime + } + FileInfoInput: { // input type + alternativeText?: string | null; // String + caption?: string | null; // String + name?: string | null; // String + } + FloatFilterInput: { // input type + and?: Array | null; // [Float] + between?: Array | null; // [Float] + contains?: number | null; // Float + containsi?: number | null; // Float + endsWith?: number | null; // Float + eq?: number | null; // Float + eqi?: number | null; // Float + gt?: number | null; // Float + gte?: number | null; // Float + in?: Array | null; // [Float] + lt?: number | null; // Float + lte?: number | null; // Float + ne?: number | null; // Float + not?: NexusGenInputs['FloatFilterInput'] | null; // FloatFilterInput + notContains?: number | null; // Float + notContainsi?: number | null; // Float + notIn?: Array | null; // [Float] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [Float] + startsWith?: number | null; // Float + } + HomeFiltersInput: { // input type + and?: Array | null; // [HomeFiltersInput] + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + hero?: NexusGenInputs['ComponentUiSectionFiltersInput'] | null; // ComponentUiSectionFiltersInput + key?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['HomeFiltersInput'] | null; // HomeFiltersInput + or?: Array | null; // [HomeFiltersInput] + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + } + HomeInput: { // input type + hero?: NexusGenInputs['ComponentUiSectionInput'] | null; // ComponentUiSectionInput + key?: string | null; // String + } + IDFilterInput: { // input type + and?: Array | null; // [ID] + between?: Array | null; // [ID] + contains?: string | null; // ID + containsi?: string | null; // ID + endsWith?: string | null; // ID + eq?: string | null; // ID + eqi?: string | null; // ID + gt?: string | null; // ID + gte?: string | null; // ID + in?: Array | null; // [ID] + lt?: string | null; // ID + lte?: string | null; // ID + ne?: string | null; // ID + not?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + notContains?: string | null; // ID + notContainsi?: string | null; // ID + notIn?: Array | null; // [ID] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [ID] + startsWith?: string | null; // ID + } + IntFilterInput: { // input type + and?: Array | null; // [Int] + between?: Array | null; // [Int] + contains?: number | null; // Int + containsi?: number | null; // Int + endsWith?: number | null; // Int + eq?: number | null; // Int + eqi?: number | null; // Int + gt?: number | null; // Int + gte?: number | null; // Int + in?: Array | null; // [Int] + lt?: number | null; // Int + lte?: number | null; // Int + ne?: number | null; // Int + not?: NexusGenInputs['IntFilterInput'] | null; // IntFilterInput + notContains?: number | null; // Int + notContainsi?: number | null; // Int + notIn?: Array | null; // [Int] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [Int] + startsWith?: number | null; // Int + } + JSONFilterInput: { // input type + and?: Array | null; // [JSON] + between?: Array | null; // [JSON] + contains?: NexusGenScalars['JSON'] | null; // JSON + containsi?: NexusGenScalars['JSON'] | null; // JSON + endsWith?: NexusGenScalars['JSON'] | null; // JSON + eq?: NexusGenScalars['JSON'] | null; // JSON + eqi?: NexusGenScalars['JSON'] | null; // JSON + gt?: NexusGenScalars['JSON'] | null; // JSON + gte?: NexusGenScalars['JSON'] | null; // JSON + in?: Array | null; // [JSON] + lt?: NexusGenScalars['JSON'] | null; // JSON + lte?: NexusGenScalars['JSON'] | null; // JSON + ne?: NexusGenScalars['JSON'] | null; // JSON + not?: NexusGenInputs['JSONFilterInput'] | null; // JSONFilterInput + notContains?: NexusGenScalars['JSON'] | null; // JSON + notContainsi?: NexusGenScalars['JSON'] | null; // JSON + notIn?: Array | null; // [JSON] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [JSON] + startsWith?: NexusGenScalars['JSON'] | null; // JSON + } + LayoutFiltersInput: { // input type + and?: Array | null; // [LayoutFiltersInput] + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + headerMenu?: NexusGenInputs['ComponentUiLinkFiltersInput'] | null; // ComponentUiLinkFiltersInput + not?: NexusGenInputs['LayoutFiltersInput'] | null; // LayoutFiltersInput + or?: Array | null; // [LayoutFiltersInput] + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + } + LayoutInput: { // input type + headerMenu?: Array | null; // [ComponentUiLinkInput] + } + LongFilterInput: { // input type + and?: Array | null; // [Long] + between?: Array | null; // [Long] + contains?: NexusGenScalars['Long'] | null; // Long + containsi?: NexusGenScalars['Long'] | null; // Long + endsWith?: NexusGenScalars['Long'] | null; // Long + eq?: NexusGenScalars['Long'] | null; // Long + eqi?: NexusGenScalars['Long'] | null; // Long + gt?: NexusGenScalars['Long'] | null; // Long + gte?: NexusGenScalars['Long'] | null; // Long + in?: Array | null; // [Long] + lt?: NexusGenScalars['Long'] | null; // Long + lte?: NexusGenScalars['Long'] | null; // Long + ne?: NexusGenScalars['Long'] | null; // Long + not?: NexusGenInputs['LongFilterInput'] | null; // LongFilterInput + notContains?: NexusGenScalars['Long'] | null; // Long + notContainsi?: NexusGenScalars['Long'] | null; // Long + notIn?: Array | null; // [Long] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [Long] + startsWith?: NexusGenScalars['Long'] | null; // Long + } + PaginationArg: { // input type + limit?: number | null; // Int + page?: number | null; // Int + pageSize?: number | null; // Int + start?: number | null; // Int + } + ReactIconsIconlibraryFiltersInput: { // input type + abbreviation?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + and?: Array | null; // [ReactIconsIconlibraryFiltersInput] + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + id?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + isEnabled?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + name?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['ReactIconsIconlibraryFiltersInput'] | null; // ReactIconsIconlibraryFiltersInput + or?: Array | null; // [ReactIconsIconlibraryFiltersInput] + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + } + ReactIconsIconlibraryInput: { // input type + abbreviation?: string | null; // String + isEnabled?: boolean | null; // Boolean + name?: string | null; // String + } + StringFilterInput: { // input type + and?: Array | null; // [String] + between?: Array | null; // [String] + contains?: string | null; // String + containsi?: string | null; // String + endsWith?: string | null; // String + eq?: string | null; // String + eqi?: string | null; // String + gt?: string | null; // String + gte?: string | null; // String + in?: Array | null; // [String] + lt?: string | null; // String + lte?: string | null; // String + ne?: string | null; // String + not?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + notContains?: string | null; // String + notContainsi?: string | null; // String + notIn?: Array | null; // [String] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [String] + startsWith?: string | null; // String + } + TimeFilterInput: { // input type + and?: Array | null; // [Time] + between?: Array | null; // [Time] + contains?: NexusGenScalars['Time'] | null; // Time + containsi?: NexusGenScalars['Time'] | null; // Time + endsWith?: NexusGenScalars['Time'] | null; // Time + eq?: NexusGenScalars['Time'] | null; // Time + eqi?: NexusGenScalars['Time'] | null; // Time + gt?: NexusGenScalars['Time'] | null; // Time + gte?: NexusGenScalars['Time'] | null; // Time + in?: Array | null; // [Time] + lt?: NexusGenScalars['Time'] | null; // Time + lte?: NexusGenScalars['Time'] | null; // Time + ne?: NexusGenScalars['Time'] | null; // Time + not?: NexusGenInputs['TimeFilterInput'] | null; // TimeFilterInput + notContains?: NexusGenScalars['Time'] | null; // Time + notContainsi?: NexusGenScalars['Time'] | null; // Time + notIn?: Array | null; // [Time] + notNull?: boolean | null; // Boolean + null?: boolean | null; // Boolean + or?: Array | null; // [Time] + startsWith?: NexusGenScalars['Time'] | null; // Time + } + UploadFileFiltersInput: { // input type + alternativeText?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + and?: Array | null; // [UploadFileFiltersInput] + blurhash?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + caption?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + ext?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + folder?: NexusGenInputs['UploadFolderFiltersInput'] | null; // UploadFolderFiltersInput + folderPath?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + formats?: NexusGenInputs['JSONFilterInput'] | null; // JSONFilterInput + hash?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + height?: NexusGenInputs['IntFilterInput'] | null; // IntFilterInput + id?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + mime?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + name?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['UploadFileFiltersInput'] | null; // UploadFileFiltersInput + or?: Array | null; // [UploadFileFiltersInput] + previewUrl?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + provider?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + provider_metadata?: NexusGenInputs['JSONFilterInput'] | null; // JSONFilterInput + size?: NexusGenInputs['FloatFilterInput'] | null; // FloatFilterInput + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + url?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + width?: NexusGenInputs['IntFilterInput'] | null; // IntFilterInput + } + UploadFileInput: { // input type + alternativeText?: string | null; // String + blurhash?: string | null; // String + caption?: string | null; // String + ext?: string | null; // String + folder?: string | null; // ID + folderPath?: string | null; // String + formats?: NexusGenScalars['JSON'] | null; // JSON + hash?: string | null; // String + height?: number | null; // Int + mime?: string | null; // String + name?: string | null; // String + previewUrl?: string | null; // String + provider?: string | null; // String + provider_metadata?: NexusGenScalars['JSON'] | null; // JSON + size?: number | null; // Float + url?: string | null; // String + width?: number | null; // Int + } + UploadFolderFiltersInput: { // input type + and?: Array | null; // [UploadFolderFiltersInput] + children?: NexusGenInputs['UploadFolderFiltersInput'] | null; // UploadFolderFiltersInput + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + files?: NexusGenInputs['UploadFileFiltersInput'] | null; // UploadFileFiltersInput + id?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + name?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['UploadFolderFiltersInput'] | null; // UploadFolderFiltersInput + or?: Array | null; // [UploadFolderFiltersInput] + parent?: NexusGenInputs['UploadFolderFiltersInput'] | null; // UploadFolderFiltersInput + path?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + pathId?: NexusGenInputs['IntFilterInput'] | null; // IntFilterInput + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + } + UploadFolderInput: { // input type + children?: Array | null; // [ID] + files?: Array | null; // [ID] + name?: string | null; // String + parent?: string | null; // ID + path?: string | null; // String + pathId?: number | null; // Int + } + UsersPermissionsLoginInput: { // input type + identifier: string; // String! + password: string; // String! + provider: string; // String! + } + UsersPermissionsPermissionFiltersInput: { // input type + action?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + and?: Array | null; // [UsersPermissionsPermissionFiltersInput] + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + id?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + not?: NexusGenInputs['UsersPermissionsPermissionFiltersInput'] | null; // UsersPermissionsPermissionFiltersInput + or?: Array | null; // [UsersPermissionsPermissionFiltersInput] + role?: NexusGenInputs['UsersPermissionsRoleFiltersInput'] | null; // UsersPermissionsRoleFiltersInput + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + } + UsersPermissionsPermissionInput: { // input type + action?: string | null; // String + role?: string | null; // ID + } + UsersPermissionsRegisterInput: { // input type + email: string; // String! + password: string; // String! + username: string; // String! + } + UsersPermissionsRoleFiltersInput: { // input type + and?: Array | null; // [UsersPermissionsRoleFiltersInput] + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + description?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + id?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + name?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + not?: NexusGenInputs['UsersPermissionsRoleFiltersInput'] | null; // UsersPermissionsRoleFiltersInput + or?: Array | null; // [UsersPermissionsRoleFiltersInput] + permissions?: NexusGenInputs['UsersPermissionsPermissionFiltersInput'] | null; // UsersPermissionsPermissionFiltersInput + type?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + users?: NexusGenInputs['UsersPermissionsUserFiltersInput'] | null; // UsersPermissionsUserFiltersInput + } + UsersPermissionsRoleInput: { // input type + description?: string | null; // String + name?: string | null; // String + permissions?: Array | null; // [ID] + type?: string | null; // String + users?: Array | null; // [ID] + } + UsersPermissionsUserFiltersInput: { // input type + and?: Array | null; // [UsersPermissionsUserFiltersInput] + blocked?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + confirmationToken?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + confirmed?: NexusGenInputs['BooleanFilterInput'] | null; // BooleanFilterInput + createdAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + email?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + id?: NexusGenInputs['IDFilterInput'] | null; // IDFilterInput + not?: NexusGenInputs['UsersPermissionsUserFiltersInput'] | null; // UsersPermissionsUserFiltersInput + or?: Array | null; // [UsersPermissionsUserFiltersInput] + password?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + provider?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + resetPasswordToken?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + role?: NexusGenInputs['UsersPermissionsRoleFiltersInput'] | null; // UsersPermissionsRoleFiltersInput + updatedAt?: NexusGenInputs['DateTimeFilterInput'] | null; // DateTimeFilterInput + username?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + uuid?: NexusGenInputs['StringFilterInput'] | null; // StringFilterInput + } + UsersPermissionsUserInput: { // input type + blocked?: boolean | null; // Boolean + confirmationToken?: string | null; // String + confirmed?: boolean | null; // Boolean + email?: string | null; // String + password?: string | null; // String + provider?: string | null; // String + resetPasswordToken?: string | null; // String + role?: string | null; // ID + username?: string | null; // String + uuid?: string | null; // String } } @@ -626,242 +582,198 @@ export interface NexusGenScalars { } export interface NexusGenObjects { - ComponentDataEntry: { - // root type - id: string // ID! - key?: string | null // String - value: string // String! - } - ComponentDataSet: { - // root type - id: string // ID! - value: string // String! - } - ComponentUiCard: { - // root type - description?: string | null // String - id: string // ID! - subtitle?: string | null // String - title?: string | null // String - } - ComponentUiGrid: { - // root type - id: string // ID! - visible: boolean // Boolean! - } - ComponentUiHeadline: { - // root type - id: string // ID! - subtitle?: string | null // String - title?: string | null // String - } - ComponentUiLink: { - // root type - icon?: string | null // String - id: string // ID! - target: NexusGenEnums["ENUM_COMPONENTUILINK_TARGET"] // ENUM_COMPONENTUILINK_TARGET! - title?: string | null // String - url: string // String! - } - ComponentUiParagraph: { - // root type - id: string // ID! - value: string // String! - } - ComponentUiSection: { - // root type - id: string // ID! - visible: boolean // Boolean! - } - ComponentUiTab: { - // root type - id: string // ID! - name: string // String! - } - ComponentUiText: { - // root type - id: string // ID! - visible: boolean // Boolean! - } - Error: { - // root type - message?: string | null // String - } - Home: { - // root type - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - key?: string | null // String - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - } - HomeEntity: {} - HomeEntityResponse: {} - HomeEntityResponseCollection: {} - HomeRelationResponseCollection: {} - Layout: { - // root type - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - } - LayoutEntity: {} - LayoutEntityResponse: {} - LayoutEntityResponseCollection: {} - LayoutRelationResponseCollection: {} - Mutation: {} - Pagination: { - // root type - page: number // Int! - pageCount: number // Int! - pageSize: number // Int! - total: number // Int! - } - Query: {} - ReactIconsIconlibrary: { - // root type - abbreviation: string // String! - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - isEnabled?: boolean | null // Boolean - name: string // String! - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - } - ReactIconsIconlibraryEntity: {} - ReactIconsIconlibraryEntityResponse: {} - ReactIconsIconlibraryEntityResponseCollection: {} - ReactIconsIconlibraryRelationResponseCollection: {} - ResponseCollectionMeta: {} - UploadFile: { - // root type - alternativeText?: string | null // String - blurhash?: string | null // String - caption?: string | null // String - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - ext?: string | null // String - formats?: NexusGenScalars["JSON"] | null // JSON - hash: string // String! - height?: number | null // Int - mime: string // String! - name: string // String! - previewUrl?: string | null // String - provider: string // String! - provider_metadata?: NexusGenScalars["JSON"] | null // JSON - size: number // Float! - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - width?: number | null // Int - } - UploadFileEntity: {} - UploadFileEntityResponse: {} - UploadFileEntityResponseCollection: {} - UploadFileRelationResponseCollection: {} - UploadFolder: { - // root type - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - name: string // String! - path: string // String! - pathId: number // Int! - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - } - UploadFolderEntity: {} - UploadFolderEntityResponse: {} - UploadFolderEntityResponseCollection: {} - UploadFolderRelationResponseCollection: {} - UsersPermissionsCreateRolePayload: { - // root type - ok: boolean // Boolean! - } - UsersPermissionsDeleteRolePayload: { - // root type - ok: boolean // Boolean! - } - UsersPermissionsLoginPayload: { - // root type - jwt?: string | null // String - user: NexusGenRootTypes["UsersPermissionsMe"] // UsersPermissionsMe! - } - UsersPermissionsMe: { - // root type - blocked?: boolean | null // Boolean - confirmed?: boolean | null // Boolean - email?: string | null // String - id: string // ID! - role?: NexusGenRootTypes["UsersPermissionsMeRole"] | null // UsersPermissionsMeRole - username: string // String! - } - UsersPermissionsMeRole: { - // root type - description?: string | null // String - id: string // ID! - name: string // String! - type?: string | null // String - } - UsersPermissionsPasswordPayload: { - // root type - ok: boolean // Boolean! - } - UsersPermissionsPermission: { - // root type - action: string // String! - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - } - UsersPermissionsPermissionEntity: {} - UsersPermissionsPermissionEntityResponse: {} - UsersPermissionsPermissionEntityResponseCollection: {} - UsersPermissionsPermissionRelationResponseCollection: {} - UsersPermissionsRole: { - // root type - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - description?: string | null // String - name: string // String! - type?: string | null // String - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - } - UsersPermissionsRoleEntity: {} - UsersPermissionsRoleEntityResponse: {} - UsersPermissionsRoleEntityResponseCollection: {} - UsersPermissionsRoleRelationResponseCollection: {} - UsersPermissionsUpdateRolePayload: { - // root type - ok: boolean // Boolean! - } - UsersPermissionsUser: { - // root type - blocked?: boolean | null // Boolean - confirmed?: boolean | null // Boolean - createdAt?: NexusGenScalars["DateTime"] | null // DateTime - email: string // String! - id: string // ID! - provider?: string | null // String - updatedAt?: NexusGenScalars["DateTime"] | null // DateTime - username: string // String! - uuid?: string | null // String - } - UsersPermissionsUserEntity: {} - UsersPermissionsUserEntityResponse: {} - UsersPermissionsUserEntityResponseCollection: {} - UsersPermissionsUserRelationResponseCollection: {} + ComponentDataEntry: { // root type + id: string; // ID! + key?: string | null; // String + value: string; // String! + } + ComponentDataSet: { // root type + id: string; // ID! + value: string; // String! + } + ComponentUiCard: { // root type + description?: string | null; // String + id: string; // ID! + subtitle?: string | null; // String + title?: string | null; // String + } + ComponentUiGrid: { // root type + id: string; // ID! + visible: boolean; // Boolean! + } + ComponentUiHeadline: { // root type + id: string; // ID! + subtitle?: string | null; // String + title?: string | null; // String + } + ComponentUiLink: { // root type + icon?: string | null; // String + id: string; // ID! + target: NexusGenEnums['ENUM_COMPONENTUILINK_TARGET']; // ENUM_COMPONENTUILINK_TARGET! + title?: string | null; // String + url: string; // String! + } + ComponentUiParagraph: { // root type + id: string; // ID! + value: string; // String! + } + ComponentUiSection: { // root type + id: string; // ID! + visible: boolean; // Boolean! + } + ComponentUiTab: { // root type + id: string; // ID! + name: string; // String! + } + ComponentUiText: { // root type + id: string; // ID! + visible: boolean; // Boolean! + } + Error: { // root type + message?: string | null; // String + } + Home: { // root type + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + key?: string | null; // String + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + } + HomeEntity: {}; + HomeEntityResponse: {}; + HomeEntityResponseCollection: {}; + HomeRelationResponseCollection: {}; + Layout: { // root type + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + } + LayoutEntity: {}; + LayoutEntityResponse: {}; + LayoutEntityResponseCollection: {}; + LayoutRelationResponseCollection: {}; + Mutation: {}; + Pagination: { // root type + page: number; // Int! + pageCount: number; // Int! + pageSize: number; // Int! + total: number; // Int! + } + Query: {}; + ReactIconsIconlibrary: { // root type + abbreviation: string; // String! + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + isEnabled?: boolean | null; // Boolean + name: string; // String! + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + } + ReactIconsIconlibraryEntity: {}; + ReactIconsIconlibraryEntityResponse: {}; + ReactIconsIconlibraryEntityResponseCollection: {}; + ReactIconsIconlibraryRelationResponseCollection: {}; + ResponseCollectionMeta: {}; + UploadFile: { // root type + alternativeText?: string | null; // String + blurhash?: string | null; // String + caption?: string | null; // String + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + ext?: string | null; // String + formats?: NexusGenScalars['JSON'] | null; // JSON + hash: string; // String! + height?: number | null; // Int + mime: string; // String! + name: string; // String! + previewUrl?: string | null; // String + provider: string; // String! + provider_metadata?: NexusGenScalars['JSON'] | null; // JSON + size: number; // Float! + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + width?: number | null; // Int + } + UploadFileEntity: {}; + UploadFileEntityResponse: {}; + UploadFileEntityResponseCollection: {}; + UploadFileRelationResponseCollection: {}; + UploadFolder: { // root type + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + name: string; // String! + path: string; // String! + pathId: number; // Int! + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + } + UploadFolderEntity: {}; + UploadFolderEntityResponse: {}; + UploadFolderEntityResponseCollection: {}; + UploadFolderRelationResponseCollection: {}; + UsersPermissionsCreateRolePayload: { // root type + ok: boolean; // Boolean! + } + UsersPermissionsDeleteRolePayload: { // root type + ok: boolean; // Boolean! + } + UsersPermissionsLoginPayload: { // root type + jwt?: string | null; // String + user: NexusGenRootTypes['UsersPermissionsMe']; // UsersPermissionsMe! + } + UsersPermissionsMe: { // root type + blocked?: boolean | null; // Boolean + confirmed?: boolean | null; // Boolean + email?: string | null; // String + id: string; // ID! + role?: NexusGenRootTypes['UsersPermissionsMeRole'] | null; // UsersPermissionsMeRole + username: string; // String! + } + UsersPermissionsMeRole: { // root type + description?: string | null; // String + id: string; // ID! + name: string; // String! + type?: string | null; // String + } + UsersPermissionsPasswordPayload: { // root type + ok: boolean; // Boolean! + } + UsersPermissionsPermission: { // root type + action: string; // String! + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + } + UsersPermissionsPermissionEntity: {}; + UsersPermissionsPermissionEntityResponse: {}; + UsersPermissionsPermissionEntityResponseCollection: {}; + UsersPermissionsPermissionRelationResponseCollection: {}; + UsersPermissionsRole: { // root type + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + description?: string | null; // String + name: string; // String! + type?: string | null; // String + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + } + UsersPermissionsRoleEntity: {}; + UsersPermissionsRoleEntityResponse: {}; + UsersPermissionsRoleEntityResponseCollection: {}; + UsersPermissionsRoleRelationResponseCollection: {}; + UsersPermissionsUpdateRolePayload: { // root type + ok: boolean; // Boolean! + } + UsersPermissionsUser: { // root type + blocked?: boolean | null; // Boolean + confirmed?: boolean | null; // Boolean + createdAt?: NexusGenScalars['DateTime'] | null; // DateTime + email: string; // String! + id: string; // ID! + provider?: string | null; // String + updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime + username: string; // String! + uuid?: string | null; // String + } + UsersPermissionsUserEntity: {}; + UsersPermissionsUserEntityResponse: {}; + UsersPermissionsUserEntityResponseCollection: {}; + UsersPermissionsUserRelationResponseCollection: {}; } -export interface NexusGenInterfaces {} +export interface NexusGenInterfaces { +} export interface NexusGenUnions { - GenericMorph: - | NexusGenRootTypes["ComponentDataEntry"] - | NexusGenRootTypes["ComponentDataSet"] - | NexusGenRootTypes["ComponentUiCard"] - | NexusGenRootTypes["ComponentUiGrid"] - | NexusGenRootTypes["ComponentUiHeadline"] - | NexusGenRootTypes["ComponentUiLink"] - | NexusGenRootTypes["ComponentUiParagraph"] - | NexusGenRootTypes["ComponentUiSection"] - | NexusGenRootTypes["ComponentUiTab"] - | NexusGenRootTypes["ComponentUiText"] - | NexusGenRootTypes["Home"] - | NexusGenRootTypes["Layout"] - | NexusGenRootTypes["ReactIconsIconlibrary"] - | NexusGenRootTypes["UploadFile"] - | NexusGenRootTypes["UploadFolder"] - | NexusGenRootTypes["UsersPermissionsPermission"] - | NexusGenRootTypes["UsersPermissionsRole"] - | NexusGenRootTypes["UsersPermissionsUser"] + GenericMorph: NexusGenRootTypes['ComponentDataEntry'] | NexusGenRootTypes['ComponentDataSet'] | NexusGenRootTypes['ComponentUiCard'] | NexusGenRootTypes['ComponentUiGrid'] | NexusGenRootTypes['ComponentUiHeadline'] | NexusGenRootTypes['ComponentUiLink'] | NexusGenRootTypes['ComponentUiParagraph'] | NexusGenRootTypes['ComponentUiSection'] | NexusGenRootTypes['ComponentUiTab'] | NexusGenRootTypes['ComponentUiText'] | NexusGenRootTypes['Home'] | NexusGenRootTypes['Layout'] | NexusGenRootTypes['ReactIconsIconlibrary'] | NexusGenRootTypes['UploadFile'] | NexusGenRootTypes['UploadFolder'] | NexusGenRootTypes['UsersPermissionsPermission'] | NexusGenRootTypes['UsersPermissionsRole'] | NexusGenRootTypes['UsersPermissionsUser']; } export type NexusGenRootTypes = NexusGenObjects & NexusGenUnions @@ -869,1033 +781,853 @@ export type NexusGenRootTypes = NexusGenObjects & NexusGenUnions export type NexusGenAllTypes = NexusGenRootTypes & NexusGenScalars & NexusGenEnums export interface NexusGenFieldTypes { - ComponentDataEntry: { - // field return type - id: string // ID! - key: string | null // String - value: string // String! - } - ComponentDataSet: { - // field return type - id: string // ID! - value: string // String! - } - ComponentUiCard: { - // field return type - description: string | null // String - id: string // ID! - media: NexusGenRootTypes["UploadFileEntityResponse"] | null // UploadFileEntityResponse - subtitle: string | null // String - title: string | null // String - } - ComponentUiGrid: { - // field return type - children: Array // [ComponentDataEntry]! - id: string // ID! - visible: boolean // Boolean! - } - ComponentUiHeadline: { - // field return type - id: string // ID! - subtitle: string | null // String - title: string | null // String - } - ComponentUiLink: { - // field return type - icon: string | null // String - id: string // ID! - target: NexusGenEnums["ENUM_COMPONENTUILINK_TARGET"] // ENUM_COMPONENTUILINK_TARGET! - title: string | null // String - url: string // String! - } - ComponentUiParagraph: { - // field return type - id: string // ID! - value: string // String! - } - ComponentUiSection: { - // field return type - button: NexusGenRootTypes["ComponentUiLink"] | null // ComponentUiLink - heading: NexusGenRootTypes["ComponentUiCard"] | null // ComponentUiCard - id: string // ID! - visible: boolean // Boolean! - } - ComponentUiTab: { - // field return type - id: string // ID! - name: string // String! - pane: NexusGenRootTypes["ComponentUiCard"] // ComponentUiCard! - } - ComponentUiText: { - // field return type - children: Array // [ComponentUiParagraph]! - id: string // ID! - visible: boolean // Boolean! - } - Error: { - // field return type - code: string // String! - message: string | null // String - } - Home: { - // field return type - createdAt: NexusGenScalars["DateTime"] | null // DateTime - hero: NexusGenRootTypes["ComponentUiSection"] | null // ComponentUiSection - key: string | null // String - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - } - HomeEntity: { - // field return type - attributes: NexusGenRootTypes["Home"] | null // Home - id: string | null // ID - } - HomeEntityResponse: { - // field return type - data: NexusGenRootTypes["HomeEntity"] | null // HomeEntity - } - HomeEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["HomeEntity"][] // [HomeEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - HomeRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["HomeEntity"][] // [HomeEntity!]! - } - Layout: { - // field return type - createdAt: NexusGenScalars["DateTime"] | null // DateTime - headerMenu: Array | null // [ComponentUiLink] - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - } - LayoutEntity: { - // field return type - attributes: NexusGenRootTypes["Layout"] | null // Layout - id: string | null // ID - } - LayoutEntityResponse: { - // field return type - data: NexusGenRootTypes["LayoutEntity"] | null // LayoutEntity - } - LayoutEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["LayoutEntity"][] // [LayoutEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - LayoutRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["LayoutEntity"][] // [LayoutEntity!]! - } - Mutation: { - // field return type - changePassword: NexusGenRootTypes["UsersPermissionsLoginPayload"] | null // UsersPermissionsLoginPayload - createReactIconsIconlibrary: NexusGenRootTypes["ReactIconsIconlibraryEntityResponse"] | null // ReactIconsIconlibraryEntityResponse - createUploadFile: NexusGenRootTypes["UploadFileEntityResponse"] | null // UploadFileEntityResponse - createUsersPermissionsRole: NexusGenRootTypes["UsersPermissionsCreateRolePayload"] | null // UsersPermissionsCreateRolePayload - createUsersPermissionsUser: NexusGenRootTypes["UsersPermissionsUserEntityResponse"] // UsersPermissionsUserEntityResponse! - deleteHome: NexusGenRootTypes["HomeEntityResponse"] | null // HomeEntityResponse - deleteLayout: NexusGenRootTypes["LayoutEntityResponse"] | null // LayoutEntityResponse - deleteReactIconsIconlibrary: NexusGenRootTypes["ReactIconsIconlibraryEntityResponse"] | null // ReactIconsIconlibraryEntityResponse - deleteUploadFile: NexusGenRootTypes["UploadFileEntityResponse"] | null // UploadFileEntityResponse - deleteUsersPermissionsRole: NexusGenRootTypes["UsersPermissionsDeleteRolePayload"] | null // UsersPermissionsDeleteRolePayload - deleteUsersPermissionsUser: NexusGenRootTypes["UsersPermissionsUserEntityResponse"] // UsersPermissionsUserEntityResponse! - emailConfirmation: NexusGenRootTypes["UsersPermissionsLoginPayload"] | null // UsersPermissionsLoginPayload - forgotPassword: NexusGenRootTypes["UsersPermissionsPasswordPayload"] | null // UsersPermissionsPasswordPayload - login: NexusGenRootTypes["UsersPermissionsLoginPayload"] // UsersPermissionsLoginPayload! - multipleUpload: Array // [UploadFileEntityResponse]! - register: NexusGenRootTypes["UsersPermissionsLoginPayload"] // UsersPermissionsLoginPayload! - removeFile: NexusGenRootTypes["UploadFileEntityResponse"] | null // UploadFileEntityResponse - resetPassword: NexusGenRootTypes["UsersPermissionsLoginPayload"] | null // UsersPermissionsLoginPayload - updateFileInfo: NexusGenRootTypes["UploadFileEntityResponse"] // UploadFileEntityResponse! - updateHome: NexusGenRootTypes["HomeEntityResponse"] | null // HomeEntityResponse - updateLayout: NexusGenRootTypes["LayoutEntityResponse"] | null // LayoutEntityResponse - updateReactIconsIconlibrary: NexusGenRootTypes["ReactIconsIconlibraryEntityResponse"] | null // ReactIconsIconlibraryEntityResponse - updateUploadFile: NexusGenRootTypes["UploadFileEntityResponse"] | null // UploadFileEntityResponse - updateUsersPermissionsRole: NexusGenRootTypes["UsersPermissionsUpdateRolePayload"] | null // UsersPermissionsUpdateRolePayload - updateUsersPermissionsUser: NexusGenRootTypes["UsersPermissionsUserEntityResponse"] // UsersPermissionsUserEntityResponse! - upload: NexusGenRootTypes["UploadFileEntityResponse"] // UploadFileEntityResponse! - } - Pagination: { - // field return type - page: number // Int! - pageCount: number // Int! - pageSize: number // Int! - total: number // Int! - } - Query: { - // field return type - home: NexusGenRootTypes["HomeEntityResponse"] | null // HomeEntityResponse - layout: NexusGenRootTypes["LayoutEntityResponse"] | null // LayoutEntityResponse - me: NexusGenRootTypes["UsersPermissionsUser"] | null // UsersPermissionsUser - reactIconsIconlibraries: NexusGenRootTypes["ReactIconsIconlibraryEntityResponseCollection"] | null // ReactIconsIconlibraryEntityResponseCollection - reactIconsIconlibrary: NexusGenRootTypes["ReactIconsIconlibraryEntityResponse"] | null // ReactIconsIconlibraryEntityResponse - uploadFile: NexusGenRootTypes["UploadFileEntityResponse"] | null // UploadFileEntityResponse - uploadFiles: NexusGenRootTypes["UploadFileEntityResponseCollection"] | null // UploadFileEntityResponseCollection - usersPermissionsRole: NexusGenRootTypes["UsersPermissionsRoleEntityResponse"] | null // UsersPermissionsRoleEntityResponse - usersPermissionsRoles: NexusGenRootTypes["UsersPermissionsRoleEntityResponseCollection"] | null // UsersPermissionsRoleEntityResponseCollection - usersPermissionsUser: NexusGenRootTypes["UsersPermissionsUserEntityResponse"] | null // UsersPermissionsUserEntityResponse - usersPermissionsUsers: NexusGenRootTypes["UsersPermissionsUserEntityResponseCollection"] | null // UsersPermissionsUserEntityResponseCollection - } - ReactIconsIconlibrary: { - // field return type - abbreviation: string // String! - createdAt: NexusGenScalars["DateTime"] | null // DateTime - isEnabled: boolean | null // Boolean - name: string // String! - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - } - ReactIconsIconlibraryEntity: { - // field return type - attributes: NexusGenRootTypes["ReactIconsIconlibrary"] | null // ReactIconsIconlibrary - id: string | null // ID - } - ReactIconsIconlibraryEntityResponse: { - // field return type - data: NexusGenRootTypes["ReactIconsIconlibraryEntity"] | null // ReactIconsIconlibraryEntity - } - ReactIconsIconlibraryEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["ReactIconsIconlibraryEntity"][] // [ReactIconsIconlibraryEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - ReactIconsIconlibraryRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["ReactIconsIconlibraryEntity"][] // [ReactIconsIconlibraryEntity!]! - } - ResponseCollectionMeta: { - // field return type - pagination: NexusGenRootTypes["Pagination"] // Pagination! - } - UploadFile: { - // field return type - alternativeText: string | null // String - blurhash: string | null // String - caption: string | null // String - createdAt: NexusGenScalars["DateTime"] | null // DateTime - ext: string | null // String - formats: NexusGenScalars["JSON"] | null // JSON - hash: string // String! - height: number | null // Int - mime: string // String! - name: string // String! - previewUrl: string | null // String - provider: string // String! - provider_metadata: NexusGenScalars["JSON"] | null // JSON - related: Array | null // [GenericMorph] - size: number // Float! - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - url: string // String! - width: number | null // Int - } - UploadFileEntity: { - // field return type - attributes: NexusGenRootTypes["UploadFile"] | null // UploadFile - id: string | null // ID - } - UploadFileEntityResponse: { - // field return type - data: NexusGenRootTypes["UploadFileEntity"] | null // UploadFileEntity - } - UploadFileEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["UploadFileEntity"][] // [UploadFileEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - UploadFileRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["UploadFileEntity"][] // [UploadFileEntity!]! - } - UploadFolder: { - // field return type - children: NexusGenRootTypes["UploadFolderRelationResponseCollection"] | null // UploadFolderRelationResponseCollection - createdAt: NexusGenScalars["DateTime"] | null // DateTime - files: NexusGenRootTypes["UploadFileRelationResponseCollection"] | null // UploadFileRelationResponseCollection - name: string // String! - parent: NexusGenRootTypes["UploadFolderEntityResponse"] | null // UploadFolderEntityResponse - path: string // String! - pathId: number // Int! - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - } - UploadFolderEntity: { - // field return type - attributes: NexusGenRootTypes["UploadFolder"] | null // UploadFolder - id: string | null // ID - } - UploadFolderEntityResponse: { - // field return type - data: NexusGenRootTypes["UploadFolderEntity"] | null // UploadFolderEntity - } - UploadFolderEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["UploadFolderEntity"][] // [UploadFolderEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - UploadFolderRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["UploadFolderEntity"][] // [UploadFolderEntity!]! - } - UsersPermissionsCreateRolePayload: { - // field return type - ok: boolean // Boolean! - } - UsersPermissionsDeleteRolePayload: { - // field return type - ok: boolean // Boolean! - } - UsersPermissionsLoginPayload: { - // field return type - jwt: string | null // String - user: NexusGenRootTypes["UsersPermissionsMe"] // UsersPermissionsMe! - } - UsersPermissionsMe: { - // field return type - blocked: boolean | null // Boolean - confirmed: boolean | null // Boolean - email: string | null // String - id: string // ID! - role: NexusGenRootTypes["UsersPermissionsMeRole"] | null // UsersPermissionsMeRole - username: string // String! - } - UsersPermissionsMeRole: { - // field return type - description: string | null // String - id: string // ID! - name: string // String! - type: string | null // String - } - UsersPermissionsPasswordPayload: { - // field return type - ok: boolean // Boolean! - } - UsersPermissionsPermission: { - // field return type - action: string // String! - createdAt: NexusGenScalars["DateTime"] | null // DateTime - role: NexusGenRootTypes["UsersPermissionsRoleEntityResponse"] | null // UsersPermissionsRoleEntityResponse - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - } - UsersPermissionsPermissionEntity: { - // field return type - attributes: NexusGenRootTypes["UsersPermissionsPermission"] | null // UsersPermissionsPermission - id: string | null // ID - } - UsersPermissionsPermissionEntityResponse: { - // field return type - data: NexusGenRootTypes["UsersPermissionsPermissionEntity"] | null // UsersPermissionsPermissionEntity - } - UsersPermissionsPermissionEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["UsersPermissionsPermissionEntity"][] // [UsersPermissionsPermissionEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - UsersPermissionsPermissionRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["UsersPermissionsPermissionEntity"][] // [UsersPermissionsPermissionEntity!]! - } - UsersPermissionsRole: { - // field return type - createdAt: NexusGenScalars["DateTime"] | null // DateTime - description: string | null // String - name: string // String! - permissions: NexusGenRootTypes["UsersPermissionsPermissionRelationResponseCollection"] | null // UsersPermissionsPermissionRelationResponseCollection - type: string | null // String - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - users: NexusGenRootTypes["UsersPermissionsUserRelationResponseCollection"] | null // UsersPermissionsUserRelationResponseCollection - } - UsersPermissionsRoleEntity: { - // field return type - attributes: NexusGenRootTypes["UsersPermissionsRole"] | null // UsersPermissionsRole - id: string | null // ID - } - UsersPermissionsRoleEntityResponse: { - // field return type - data: NexusGenRootTypes["UsersPermissionsRoleEntity"] | null // UsersPermissionsRoleEntity - } - UsersPermissionsRoleEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["UsersPermissionsRoleEntity"][] // [UsersPermissionsRoleEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - UsersPermissionsRoleRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["UsersPermissionsRoleEntity"][] // [UsersPermissionsRoleEntity!]! - } - UsersPermissionsUpdateRolePayload: { - // field return type - ok: boolean // Boolean! - } - UsersPermissionsUser: { - // field return type - blocked: boolean | null // Boolean - confirmed: boolean | null // Boolean - createdAt: NexusGenScalars["DateTime"] | null // DateTime - email: string // String! - id: string // ID! - provider: string | null // String - role: NexusGenRootTypes["UsersPermissionsRoleEntityResponse"] | null // UsersPermissionsRoleEntityResponse - updatedAt: NexusGenScalars["DateTime"] | null // DateTime - username: string // String! - uuid: string | null // String - } - UsersPermissionsUserEntity: { - // field return type - attributes: NexusGenRootTypes["UsersPermissionsUser"] | null // UsersPermissionsUser - id: string | null // ID - } - UsersPermissionsUserEntityResponse: { - // field return type - data: NexusGenRootTypes["UsersPermissionsUserEntity"] | null // UsersPermissionsUserEntity - } - UsersPermissionsUserEntityResponseCollection: { - // field return type - data: NexusGenRootTypes["UsersPermissionsUserEntity"][] // [UsersPermissionsUserEntity!]! - meta: NexusGenRootTypes["ResponseCollectionMeta"] // ResponseCollectionMeta! - } - UsersPermissionsUserRelationResponseCollection: { - // field return type - data: NexusGenRootTypes["UsersPermissionsUserEntity"][] // [UsersPermissionsUserEntity!]! + ComponentDataEntry: { // field return type + id: string; // ID! + key: string | null; // String + value: string; // String! + } + ComponentDataSet: { // field return type + id: string; // ID! + value: string; // String! + } + ComponentUiCard: { // field return type + description: string | null; // String + id: string; // ID! + media: NexusGenRootTypes['UploadFileEntityResponse'] | null; // UploadFileEntityResponse + subtitle: string | null; // String + title: string | null; // String + } + ComponentUiGrid: { // field return type + children: Array; // [ComponentDataEntry]! + id: string; // ID! + visible: boolean; // Boolean! + } + ComponentUiHeadline: { // field return type + id: string; // ID! + subtitle: string | null; // String + title: string | null; // String + } + ComponentUiLink: { // field return type + icon: string | null; // String + id: string; // ID! + target: NexusGenEnums['ENUM_COMPONENTUILINK_TARGET']; // ENUM_COMPONENTUILINK_TARGET! + title: string | null; // String + url: string; // String! + } + ComponentUiParagraph: { // field return type + id: string; // ID! + value: string; // String! + } + ComponentUiSection: { // field return type + button: NexusGenRootTypes['ComponentUiLink'] | null; // ComponentUiLink + heading: NexusGenRootTypes['ComponentUiCard'] | null; // ComponentUiCard + id: string; // ID! + visible: boolean; // Boolean! + } + ComponentUiTab: { // field return type + id: string; // ID! + name: string; // String! + pane: NexusGenRootTypes['ComponentUiCard']; // ComponentUiCard! + } + ComponentUiText: { // field return type + children: Array; // [ComponentUiParagraph]! + id: string; // ID! + visible: boolean; // Boolean! + } + Error: { // field return type + code: string; // String! + message: string | null; // String + } + Home: { // field return type + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + hero: NexusGenRootTypes['ComponentUiSection'] | null; // ComponentUiSection + key: string | null; // String + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + } + HomeEntity: { // field return type + attributes: NexusGenRootTypes['Home'] | null; // Home + id: string | null; // ID + } + HomeEntityResponse: { // field return type + data: NexusGenRootTypes['HomeEntity'] | null; // HomeEntity + } + HomeEntityResponseCollection: { // field return type + data: NexusGenRootTypes['HomeEntity'][]; // [HomeEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + HomeRelationResponseCollection: { // field return type + data: NexusGenRootTypes['HomeEntity'][]; // [HomeEntity!]! + } + Layout: { // field return type + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + headerMenu: Array | null; // [ComponentUiLink] + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + } + LayoutEntity: { // field return type + attributes: NexusGenRootTypes['Layout'] | null; // Layout + id: string | null; // ID + } + LayoutEntityResponse: { // field return type + data: NexusGenRootTypes['LayoutEntity'] | null; // LayoutEntity + } + LayoutEntityResponseCollection: { // field return type + data: NexusGenRootTypes['LayoutEntity'][]; // [LayoutEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + LayoutRelationResponseCollection: { // field return type + data: NexusGenRootTypes['LayoutEntity'][]; // [LayoutEntity!]! + } + Mutation: { // field return type + changePassword: NexusGenRootTypes['UsersPermissionsLoginPayload'] | null; // UsersPermissionsLoginPayload + createReactIconsIconlibrary: NexusGenRootTypes['ReactIconsIconlibraryEntityResponse'] | null; // ReactIconsIconlibraryEntityResponse + createUploadFile: NexusGenRootTypes['UploadFileEntityResponse'] | null; // UploadFileEntityResponse + createUsersPermissionsRole: NexusGenRootTypes['UsersPermissionsCreateRolePayload'] | null; // UsersPermissionsCreateRolePayload + createUsersPermissionsUser: NexusGenRootTypes['UsersPermissionsUserEntityResponse']; // UsersPermissionsUserEntityResponse! + deleteHome: NexusGenRootTypes['HomeEntityResponse'] | null; // HomeEntityResponse + deleteLayout: NexusGenRootTypes['LayoutEntityResponse'] | null; // LayoutEntityResponse + deleteReactIconsIconlibrary: NexusGenRootTypes['ReactIconsIconlibraryEntityResponse'] | null; // ReactIconsIconlibraryEntityResponse + deleteUploadFile: NexusGenRootTypes['UploadFileEntityResponse'] | null; // UploadFileEntityResponse + deleteUsersPermissionsRole: NexusGenRootTypes['UsersPermissionsDeleteRolePayload'] | null; // UsersPermissionsDeleteRolePayload + deleteUsersPermissionsUser: NexusGenRootTypes['UsersPermissionsUserEntityResponse']; // UsersPermissionsUserEntityResponse! + emailConfirmation: NexusGenRootTypes['UsersPermissionsLoginPayload'] | null; // UsersPermissionsLoginPayload + forgotPassword: NexusGenRootTypes['UsersPermissionsPasswordPayload'] | null; // UsersPermissionsPasswordPayload + login: NexusGenRootTypes['UsersPermissionsLoginPayload']; // UsersPermissionsLoginPayload! + multipleUpload: Array; // [UploadFileEntityResponse]! + register: NexusGenRootTypes['UsersPermissionsLoginPayload']; // UsersPermissionsLoginPayload! + removeFile: NexusGenRootTypes['UploadFileEntityResponse'] | null; // UploadFileEntityResponse + resetPassword: NexusGenRootTypes['UsersPermissionsLoginPayload'] | null; // UsersPermissionsLoginPayload + updateFileInfo: NexusGenRootTypes['UploadFileEntityResponse']; // UploadFileEntityResponse! + updateHome: NexusGenRootTypes['HomeEntityResponse'] | null; // HomeEntityResponse + updateLayout: NexusGenRootTypes['LayoutEntityResponse'] | null; // LayoutEntityResponse + updateReactIconsIconlibrary: NexusGenRootTypes['ReactIconsIconlibraryEntityResponse'] | null; // ReactIconsIconlibraryEntityResponse + updateUploadFile: NexusGenRootTypes['UploadFileEntityResponse'] | null; // UploadFileEntityResponse + updateUsersPermissionsRole: NexusGenRootTypes['UsersPermissionsUpdateRolePayload'] | null; // UsersPermissionsUpdateRolePayload + updateUsersPermissionsUser: NexusGenRootTypes['UsersPermissionsUserEntityResponse']; // UsersPermissionsUserEntityResponse! + upload: NexusGenRootTypes['UploadFileEntityResponse']; // UploadFileEntityResponse! + } + Pagination: { // field return type + page: number; // Int! + pageCount: number; // Int! + pageSize: number; // Int! + total: number; // Int! + } + Query: { // field return type + home: NexusGenRootTypes['HomeEntityResponse'] | null; // HomeEntityResponse + layout: NexusGenRootTypes['LayoutEntityResponse'] | null; // LayoutEntityResponse + me: NexusGenRootTypes['UsersPermissionsUser'] | null; // UsersPermissionsUser + reactIconsIconlibraries: NexusGenRootTypes['ReactIconsIconlibraryEntityResponseCollection'] | null; // ReactIconsIconlibraryEntityResponseCollection + reactIconsIconlibrary: NexusGenRootTypes['ReactIconsIconlibraryEntityResponse'] | null; // ReactIconsIconlibraryEntityResponse + uploadFile: NexusGenRootTypes['UploadFileEntityResponse'] | null; // UploadFileEntityResponse + uploadFiles: NexusGenRootTypes['UploadFileEntityResponseCollection'] | null; // UploadFileEntityResponseCollection + usersPermissionsRole: NexusGenRootTypes['UsersPermissionsRoleEntityResponse'] | null; // UsersPermissionsRoleEntityResponse + usersPermissionsRoles: NexusGenRootTypes['UsersPermissionsRoleEntityResponseCollection'] | null; // UsersPermissionsRoleEntityResponseCollection + usersPermissionsUser: NexusGenRootTypes['UsersPermissionsUserEntityResponse'] | null; // UsersPermissionsUserEntityResponse + usersPermissionsUsers: NexusGenRootTypes['UsersPermissionsUserEntityResponseCollection'] | null; // UsersPermissionsUserEntityResponseCollection + } + ReactIconsIconlibrary: { // field return type + abbreviation: string; // String! + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + isEnabled: boolean | null; // Boolean + name: string; // String! + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + } + ReactIconsIconlibraryEntity: { // field return type + attributes: NexusGenRootTypes['ReactIconsIconlibrary'] | null; // ReactIconsIconlibrary + id: string | null; // ID + } + ReactIconsIconlibraryEntityResponse: { // field return type + data: NexusGenRootTypes['ReactIconsIconlibraryEntity'] | null; // ReactIconsIconlibraryEntity + } + ReactIconsIconlibraryEntityResponseCollection: { // field return type + data: NexusGenRootTypes['ReactIconsIconlibraryEntity'][]; // [ReactIconsIconlibraryEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + ReactIconsIconlibraryRelationResponseCollection: { // field return type + data: NexusGenRootTypes['ReactIconsIconlibraryEntity'][]; // [ReactIconsIconlibraryEntity!]! + } + ResponseCollectionMeta: { // field return type + pagination: NexusGenRootTypes['Pagination']; // Pagination! + } + UploadFile: { // field return type + alternativeText: string | null; // String + blurhash: string | null; // String + caption: string | null; // String + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + ext: string | null; // String + formats: NexusGenScalars['JSON'] | null; // JSON + hash: string; // String! + height: number | null; // Int + mime: string; // String! + name: string; // String! + previewUrl: string | null; // String + provider: string; // String! + provider_metadata: NexusGenScalars['JSON'] | null; // JSON + related: Array | null; // [GenericMorph] + size: number; // Float! + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + url: string; // String! + width: number | null; // Int + } + UploadFileEntity: { // field return type + attributes: NexusGenRootTypes['UploadFile'] | null; // UploadFile + id: string | null; // ID + } + UploadFileEntityResponse: { // field return type + data: NexusGenRootTypes['UploadFileEntity'] | null; // UploadFileEntity + } + UploadFileEntityResponseCollection: { // field return type + data: NexusGenRootTypes['UploadFileEntity'][]; // [UploadFileEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + UploadFileRelationResponseCollection: { // field return type + data: NexusGenRootTypes['UploadFileEntity'][]; // [UploadFileEntity!]! + } + UploadFolder: { // field return type + children: NexusGenRootTypes['UploadFolderRelationResponseCollection'] | null; // UploadFolderRelationResponseCollection + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + files: NexusGenRootTypes['UploadFileRelationResponseCollection'] | null; // UploadFileRelationResponseCollection + name: string; // String! + parent: NexusGenRootTypes['UploadFolderEntityResponse'] | null; // UploadFolderEntityResponse + path: string; // String! + pathId: number; // Int! + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + } + UploadFolderEntity: { // field return type + attributes: NexusGenRootTypes['UploadFolder'] | null; // UploadFolder + id: string | null; // ID + } + UploadFolderEntityResponse: { // field return type + data: NexusGenRootTypes['UploadFolderEntity'] | null; // UploadFolderEntity + } + UploadFolderEntityResponseCollection: { // field return type + data: NexusGenRootTypes['UploadFolderEntity'][]; // [UploadFolderEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + UploadFolderRelationResponseCollection: { // field return type + data: NexusGenRootTypes['UploadFolderEntity'][]; // [UploadFolderEntity!]! + } + UsersPermissionsCreateRolePayload: { // field return type + ok: boolean; // Boolean! + } + UsersPermissionsDeleteRolePayload: { // field return type + ok: boolean; // Boolean! + } + UsersPermissionsLoginPayload: { // field return type + jwt: string | null; // String + user: NexusGenRootTypes['UsersPermissionsMe']; // UsersPermissionsMe! + } + UsersPermissionsMe: { // field return type + blocked: boolean | null; // Boolean + confirmed: boolean | null; // Boolean + email: string | null; // String + id: string; // ID! + role: NexusGenRootTypes['UsersPermissionsMeRole'] | null; // UsersPermissionsMeRole + username: string; // String! + } + UsersPermissionsMeRole: { // field return type + description: string | null; // String + id: string; // ID! + name: string; // String! + type: string | null; // String + } + UsersPermissionsPasswordPayload: { // field return type + ok: boolean; // Boolean! + } + UsersPermissionsPermission: { // field return type + action: string; // String! + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + role: NexusGenRootTypes['UsersPermissionsRoleEntityResponse'] | null; // UsersPermissionsRoleEntityResponse + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + } + UsersPermissionsPermissionEntity: { // field return type + attributes: NexusGenRootTypes['UsersPermissionsPermission'] | null; // UsersPermissionsPermission + id: string | null; // ID + } + UsersPermissionsPermissionEntityResponse: { // field return type + data: NexusGenRootTypes['UsersPermissionsPermissionEntity'] | null; // UsersPermissionsPermissionEntity + } + UsersPermissionsPermissionEntityResponseCollection: { // field return type + data: NexusGenRootTypes['UsersPermissionsPermissionEntity'][]; // [UsersPermissionsPermissionEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + UsersPermissionsPermissionRelationResponseCollection: { // field return type + data: NexusGenRootTypes['UsersPermissionsPermissionEntity'][]; // [UsersPermissionsPermissionEntity!]! + } + UsersPermissionsRole: { // field return type + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + description: string | null; // String + name: string; // String! + permissions: NexusGenRootTypes['UsersPermissionsPermissionRelationResponseCollection'] | null; // UsersPermissionsPermissionRelationResponseCollection + type: string | null; // String + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + users: NexusGenRootTypes['UsersPermissionsUserRelationResponseCollection'] | null; // UsersPermissionsUserRelationResponseCollection + } + UsersPermissionsRoleEntity: { // field return type + attributes: NexusGenRootTypes['UsersPermissionsRole'] | null; // UsersPermissionsRole + id: string | null; // ID + } + UsersPermissionsRoleEntityResponse: { // field return type + data: NexusGenRootTypes['UsersPermissionsRoleEntity'] | null; // UsersPermissionsRoleEntity + } + UsersPermissionsRoleEntityResponseCollection: { // field return type + data: NexusGenRootTypes['UsersPermissionsRoleEntity'][]; // [UsersPermissionsRoleEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + UsersPermissionsRoleRelationResponseCollection: { // field return type + data: NexusGenRootTypes['UsersPermissionsRoleEntity'][]; // [UsersPermissionsRoleEntity!]! + } + UsersPermissionsUpdateRolePayload: { // field return type + ok: boolean; // Boolean! + } + UsersPermissionsUser: { // field return type + blocked: boolean | null; // Boolean + confirmed: boolean | null; // Boolean + createdAt: NexusGenScalars['DateTime'] | null; // DateTime + email: string; // String! + id: string; // ID! + provider: string | null; // String + role: NexusGenRootTypes['UsersPermissionsRoleEntityResponse'] | null; // UsersPermissionsRoleEntityResponse + updatedAt: NexusGenScalars['DateTime'] | null; // DateTime + username: string; // String! + uuid: string | null; // String + } + UsersPermissionsUserEntity: { // field return type + attributes: NexusGenRootTypes['UsersPermissionsUser'] | null; // UsersPermissionsUser + id: string | null; // ID + } + UsersPermissionsUserEntityResponse: { // field return type + data: NexusGenRootTypes['UsersPermissionsUserEntity'] | null; // UsersPermissionsUserEntity + } + UsersPermissionsUserEntityResponseCollection: { // field return type + data: NexusGenRootTypes['UsersPermissionsUserEntity'][]; // [UsersPermissionsUserEntity!]! + meta: NexusGenRootTypes['ResponseCollectionMeta']; // ResponseCollectionMeta! + } + UsersPermissionsUserRelationResponseCollection: { // field return type + data: NexusGenRootTypes['UsersPermissionsUserEntity'][]; // [UsersPermissionsUserEntity!]! } } export interface NexusGenFieldTypeNames { - ComponentDataEntry: { - // field return type name - id: "ID" - key: "String" - value: "String" - } - ComponentDataSet: { - // field return type name - id: "ID" - value: "String" - } - ComponentUiCard: { - // field return type name - description: "String" - id: "ID" - media: "UploadFileEntityResponse" - subtitle: "String" - title: "String" - } - ComponentUiGrid: { - // field return type name - children: "ComponentDataEntry" - id: "ID" - visible: "Boolean" - } - ComponentUiHeadline: { - // field return type name - id: "ID" - subtitle: "String" - title: "String" - } - ComponentUiLink: { - // field return type name - icon: "String" - id: "ID" - target: "ENUM_COMPONENTUILINK_TARGET" - title: "String" - url: "String" - } - ComponentUiParagraph: { - // field return type name - id: "ID" - value: "String" - } - ComponentUiSection: { - // field return type name - button: "ComponentUiLink" - heading: "ComponentUiCard" - id: "ID" - visible: "Boolean" - } - ComponentUiTab: { - // field return type name - id: "ID" - name: "String" - pane: "ComponentUiCard" - } - ComponentUiText: { - // field return type name - children: "ComponentUiParagraph" - id: "ID" - visible: "Boolean" - } - Error: { - // field return type name - code: "String" - message: "String" - } - Home: { - // field return type name - createdAt: "DateTime" - hero: "ComponentUiSection" - key: "String" - updatedAt: "DateTime" - } - HomeEntity: { - // field return type name - attributes: "Home" - id: "ID" - } - HomeEntityResponse: { - // field return type name - data: "HomeEntity" - } - HomeEntityResponseCollection: { - // field return type name - data: "HomeEntity" - meta: "ResponseCollectionMeta" - } - HomeRelationResponseCollection: { - // field return type name - data: "HomeEntity" - } - Layout: { - // field return type name - createdAt: "DateTime" - headerMenu: "ComponentUiLink" - updatedAt: "DateTime" - } - LayoutEntity: { - // field return type name - attributes: "Layout" - id: "ID" - } - LayoutEntityResponse: { - // field return type name - data: "LayoutEntity" - } - LayoutEntityResponseCollection: { - // field return type name - data: "LayoutEntity" - meta: "ResponseCollectionMeta" - } - LayoutRelationResponseCollection: { - // field return type name - data: "LayoutEntity" - } - Mutation: { - // field return type name - changePassword: "UsersPermissionsLoginPayload" - createReactIconsIconlibrary: "ReactIconsIconlibraryEntityResponse" - createUploadFile: "UploadFileEntityResponse" - createUsersPermissionsRole: "UsersPermissionsCreateRolePayload" - createUsersPermissionsUser: "UsersPermissionsUserEntityResponse" - deleteHome: "HomeEntityResponse" - deleteLayout: "LayoutEntityResponse" - deleteReactIconsIconlibrary: "ReactIconsIconlibraryEntityResponse" - deleteUploadFile: "UploadFileEntityResponse" - deleteUsersPermissionsRole: "UsersPermissionsDeleteRolePayload" - deleteUsersPermissionsUser: "UsersPermissionsUserEntityResponse" - emailConfirmation: "UsersPermissionsLoginPayload" - forgotPassword: "UsersPermissionsPasswordPayload" - login: "UsersPermissionsLoginPayload" - multipleUpload: "UploadFileEntityResponse" - register: "UsersPermissionsLoginPayload" - removeFile: "UploadFileEntityResponse" - resetPassword: "UsersPermissionsLoginPayload" - updateFileInfo: "UploadFileEntityResponse" - updateHome: "HomeEntityResponse" - updateLayout: "LayoutEntityResponse" - updateReactIconsIconlibrary: "ReactIconsIconlibraryEntityResponse" - updateUploadFile: "UploadFileEntityResponse" - updateUsersPermissionsRole: "UsersPermissionsUpdateRolePayload" - updateUsersPermissionsUser: "UsersPermissionsUserEntityResponse" - upload: "UploadFileEntityResponse" - } - Pagination: { - // field return type name - page: "Int" - pageCount: "Int" - pageSize: "Int" - total: "Int" - } - Query: { - // field return type name - home: "HomeEntityResponse" - layout: "LayoutEntityResponse" - me: "UsersPermissionsUser" - reactIconsIconlibraries: "ReactIconsIconlibraryEntityResponseCollection" - reactIconsIconlibrary: "ReactIconsIconlibraryEntityResponse" - uploadFile: "UploadFileEntityResponse" - uploadFiles: "UploadFileEntityResponseCollection" - usersPermissionsRole: "UsersPermissionsRoleEntityResponse" - usersPermissionsRoles: "UsersPermissionsRoleEntityResponseCollection" - usersPermissionsUser: "UsersPermissionsUserEntityResponse" - usersPermissionsUsers: "UsersPermissionsUserEntityResponseCollection" - } - ReactIconsIconlibrary: { - // field return type name - abbreviation: "String" - createdAt: "DateTime" - isEnabled: "Boolean" - name: "String" - updatedAt: "DateTime" - } - ReactIconsIconlibraryEntity: { - // field return type name - attributes: "ReactIconsIconlibrary" - id: "ID" - } - ReactIconsIconlibraryEntityResponse: { - // field return type name - data: "ReactIconsIconlibraryEntity" - } - ReactIconsIconlibraryEntityResponseCollection: { - // field return type name - data: "ReactIconsIconlibraryEntity" - meta: "ResponseCollectionMeta" - } - ReactIconsIconlibraryRelationResponseCollection: { - // field return type name - data: "ReactIconsIconlibraryEntity" - } - ResponseCollectionMeta: { - // field return type name - pagination: "Pagination" - } - UploadFile: { - // field return type name - alternativeText: "String" - blurhash: "String" - caption: "String" - createdAt: "DateTime" - ext: "String" - formats: "JSON" - hash: "String" - height: "Int" - mime: "String" - name: "String" - previewUrl: "String" - provider: "String" - provider_metadata: "JSON" - related: "GenericMorph" - size: "Float" - updatedAt: "DateTime" - url: "String" - width: "Int" - } - UploadFileEntity: { - // field return type name - attributes: "UploadFile" - id: "ID" - } - UploadFileEntityResponse: { - // field return type name - data: "UploadFileEntity" - } - UploadFileEntityResponseCollection: { - // field return type name - data: "UploadFileEntity" - meta: "ResponseCollectionMeta" - } - UploadFileRelationResponseCollection: { - // field return type name - data: "UploadFileEntity" - } - UploadFolder: { - // field return type name - children: "UploadFolderRelationResponseCollection" - createdAt: "DateTime" - files: "UploadFileRelationResponseCollection" - name: "String" - parent: "UploadFolderEntityResponse" - path: "String" - pathId: "Int" - updatedAt: "DateTime" - } - UploadFolderEntity: { - // field return type name - attributes: "UploadFolder" - id: "ID" - } - UploadFolderEntityResponse: { - // field return type name - data: "UploadFolderEntity" - } - UploadFolderEntityResponseCollection: { - // field return type name - data: "UploadFolderEntity" - meta: "ResponseCollectionMeta" - } - UploadFolderRelationResponseCollection: { - // field return type name - data: "UploadFolderEntity" - } - UsersPermissionsCreateRolePayload: { - // field return type name - ok: "Boolean" - } - UsersPermissionsDeleteRolePayload: { - // field return type name - ok: "Boolean" - } - UsersPermissionsLoginPayload: { - // field return type name - jwt: "String" - user: "UsersPermissionsMe" - } - UsersPermissionsMe: { - // field return type name - blocked: "Boolean" - confirmed: "Boolean" - email: "String" - id: "ID" - role: "UsersPermissionsMeRole" - username: "String" - } - UsersPermissionsMeRole: { - // field return type name - description: "String" - id: "ID" - name: "String" - type: "String" - } - UsersPermissionsPasswordPayload: { - // field return type name - ok: "Boolean" - } - UsersPermissionsPermission: { - // field return type name - action: "String" - createdAt: "DateTime" - role: "UsersPermissionsRoleEntityResponse" - updatedAt: "DateTime" - } - UsersPermissionsPermissionEntity: { - // field return type name - attributes: "UsersPermissionsPermission" - id: "ID" - } - UsersPermissionsPermissionEntityResponse: { - // field return type name - data: "UsersPermissionsPermissionEntity" - } - UsersPermissionsPermissionEntityResponseCollection: { - // field return type name - data: "UsersPermissionsPermissionEntity" - meta: "ResponseCollectionMeta" - } - UsersPermissionsPermissionRelationResponseCollection: { - // field return type name - data: "UsersPermissionsPermissionEntity" - } - UsersPermissionsRole: { - // field return type name - createdAt: "DateTime" - description: "String" - name: "String" - permissions: "UsersPermissionsPermissionRelationResponseCollection" - type: "String" - updatedAt: "DateTime" - users: "UsersPermissionsUserRelationResponseCollection" - } - UsersPermissionsRoleEntity: { - // field return type name - attributes: "UsersPermissionsRole" - id: "ID" - } - UsersPermissionsRoleEntityResponse: { - // field return type name - data: "UsersPermissionsRoleEntity" - } - UsersPermissionsRoleEntityResponseCollection: { - // field return type name - data: "UsersPermissionsRoleEntity" - meta: "ResponseCollectionMeta" - } - UsersPermissionsRoleRelationResponseCollection: { - // field return type name - data: "UsersPermissionsRoleEntity" - } - UsersPermissionsUpdateRolePayload: { - // field return type name - ok: "Boolean" - } - UsersPermissionsUser: { - // field return type name - blocked: "Boolean" - confirmed: "Boolean" - createdAt: "DateTime" - email: "String" - id: "ID" - provider: "String" - role: "UsersPermissionsRoleEntityResponse" - updatedAt: "DateTime" - username: "String" - uuid: "String" - } - UsersPermissionsUserEntity: { - // field return type name - attributes: "UsersPermissionsUser" - id: "ID" - } - UsersPermissionsUserEntityResponse: { - // field return type name - data: "UsersPermissionsUserEntity" - } - UsersPermissionsUserEntityResponseCollection: { - // field return type name - data: "UsersPermissionsUserEntity" - meta: "ResponseCollectionMeta" - } - UsersPermissionsUserRelationResponseCollection: { - // field return type name - data: "UsersPermissionsUserEntity" + ComponentDataEntry: { // field return type name + id: 'ID' + key: 'String' + value: 'String' + } + ComponentDataSet: { // field return type name + id: 'ID' + value: 'String' + } + ComponentUiCard: { // field return type name + description: 'String' + id: 'ID' + media: 'UploadFileEntityResponse' + subtitle: 'String' + title: 'String' + } + ComponentUiGrid: { // field return type name + children: 'ComponentDataEntry' + id: 'ID' + visible: 'Boolean' + } + ComponentUiHeadline: { // field return type name + id: 'ID' + subtitle: 'String' + title: 'String' + } + ComponentUiLink: { // field return type name + icon: 'String' + id: 'ID' + target: 'ENUM_COMPONENTUILINK_TARGET' + title: 'String' + url: 'String' + } + ComponentUiParagraph: { // field return type name + id: 'ID' + value: 'String' + } + ComponentUiSection: { // field return type name + button: 'ComponentUiLink' + heading: 'ComponentUiCard' + id: 'ID' + visible: 'Boolean' + } + ComponentUiTab: { // field return type name + id: 'ID' + name: 'String' + pane: 'ComponentUiCard' + } + ComponentUiText: { // field return type name + children: 'ComponentUiParagraph' + id: 'ID' + visible: 'Boolean' + } + Error: { // field return type name + code: 'String' + message: 'String' + } + Home: { // field return type name + createdAt: 'DateTime' + hero: 'ComponentUiSection' + key: 'String' + updatedAt: 'DateTime' + } + HomeEntity: { // field return type name + attributes: 'Home' + id: 'ID' + } + HomeEntityResponse: { // field return type name + data: 'HomeEntity' + } + HomeEntityResponseCollection: { // field return type name + data: 'HomeEntity' + meta: 'ResponseCollectionMeta' + } + HomeRelationResponseCollection: { // field return type name + data: 'HomeEntity' + } + Layout: { // field return type name + createdAt: 'DateTime' + headerMenu: 'ComponentUiLink' + updatedAt: 'DateTime' + } + LayoutEntity: { // field return type name + attributes: 'Layout' + id: 'ID' + } + LayoutEntityResponse: { // field return type name + data: 'LayoutEntity' + } + LayoutEntityResponseCollection: { // field return type name + data: 'LayoutEntity' + meta: 'ResponseCollectionMeta' + } + LayoutRelationResponseCollection: { // field return type name + data: 'LayoutEntity' + } + Mutation: { // field return type name + changePassword: 'UsersPermissionsLoginPayload' + createReactIconsIconlibrary: 'ReactIconsIconlibraryEntityResponse' + createUploadFile: 'UploadFileEntityResponse' + createUsersPermissionsRole: 'UsersPermissionsCreateRolePayload' + createUsersPermissionsUser: 'UsersPermissionsUserEntityResponse' + deleteHome: 'HomeEntityResponse' + deleteLayout: 'LayoutEntityResponse' + deleteReactIconsIconlibrary: 'ReactIconsIconlibraryEntityResponse' + deleteUploadFile: 'UploadFileEntityResponse' + deleteUsersPermissionsRole: 'UsersPermissionsDeleteRolePayload' + deleteUsersPermissionsUser: 'UsersPermissionsUserEntityResponse' + emailConfirmation: 'UsersPermissionsLoginPayload' + forgotPassword: 'UsersPermissionsPasswordPayload' + login: 'UsersPermissionsLoginPayload' + multipleUpload: 'UploadFileEntityResponse' + register: 'UsersPermissionsLoginPayload' + removeFile: 'UploadFileEntityResponse' + resetPassword: 'UsersPermissionsLoginPayload' + updateFileInfo: 'UploadFileEntityResponse' + updateHome: 'HomeEntityResponse' + updateLayout: 'LayoutEntityResponse' + updateReactIconsIconlibrary: 'ReactIconsIconlibraryEntityResponse' + updateUploadFile: 'UploadFileEntityResponse' + updateUsersPermissionsRole: 'UsersPermissionsUpdateRolePayload' + updateUsersPermissionsUser: 'UsersPermissionsUserEntityResponse' + upload: 'UploadFileEntityResponse' + } + Pagination: { // field return type name + page: 'Int' + pageCount: 'Int' + pageSize: 'Int' + total: 'Int' + } + Query: { // field return type name + home: 'HomeEntityResponse' + layout: 'LayoutEntityResponse' + me: 'UsersPermissionsUser' + reactIconsIconlibraries: 'ReactIconsIconlibraryEntityResponseCollection' + reactIconsIconlibrary: 'ReactIconsIconlibraryEntityResponse' + uploadFile: 'UploadFileEntityResponse' + uploadFiles: 'UploadFileEntityResponseCollection' + usersPermissionsRole: 'UsersPermissionsRoleEntityResponse' + usersPermissionsRoles: 'UsersPermissionsRoleEntityResponseCollection' + usersPermissionsUser: 'UsersPermissionsUserEntityResponse' + usersPermissionsUsers: 'UsersPermissionsUserEntityResponseCollection' + } + ReactIconsIconlibrary: { // field return type name + abbreviation: 'String' + createdAt: 'DateTime' + isEnabled: 'Boolean' + name: 'String' + updatedAt: 'DateTime' + } + ReactIconsIconlibraryEntity: { // field return type name + attributes: 'ReactIconsIconlibrary' + id: 'ID' + } + ReactIconsIconlibraryEntityResponse: { // field return type name + data: 'ReactIconsIconlibraryEntity' + } + ReactIconsIconlibraryEntityResponseCollection: { // field return type name + data: 'ReactIconsIconlibraryEntity' + meta: 'ResponseCollectionMeta' + } + ReactIconsIconlibraryRelationResponseCollection: { // field return type name + data: 'ReactIconsIconlibraryEntity' + } + ResponseCollectionMeta: { // field return type name + pagination: 'Pagination' + } + UploadFile: { // field return type name + alternativeText: 'String' + blurhash: 'String' + caption: 'String' + createdAt: 'DateTime' + ext: 'String' + formats: 'JSON' + hash: 'String' + height: 'Int' + mime: 'String' + name: 'String' + previewUrl: 'String' + provider: 'String' + provider_metadata: 'JSON' + related: 'GenericMorph' + size: 'Float' + updatedAt: 'DateTime' + url: 'String' + width: 'Int' + } + UploadFileEntity: { // field return type name + attributes: 'UploadFile' + id: 'ID' + } + UploadFileEntityResponse: { // field return type name + data: 'UploadFileEntity' + } + UploadFileEntityResponseCollection: { // field return type name + data: 'UploadFileEntity' + meta: 'ResponseCollectionMeta' + } + UploadFileRelationResponseCollection: { // field return type name + data: 'UploadFileEntity' + } + UploadFolder: { // field return type name + children: 'UploadFolderRelationResponseCollection' + createdAt: 'DateTime' + files: 'UploadFileRelationResponseCollection' + name: 'String' + parent: 'UploadFolderEntityResponse' + path: 'String' + pathId: 'Int' + updatedAt: 'DateTime' + } + UploadFolderEntity: { // field return type name + attributes: 'UploadFolder' + id: 'ID' + } + UploadFolderEntityResponse: { // field return type name + data: 'UploadFolderEntity' + } + UploadFolderEntityResponseCollection: { // field return type name + data: 'UploadFolderEntity' + meta: 'ResponseCollectionMeta' + } + UploadFolderRelationResponseCollection: { // field return type name + data: 'UploadFolderEntity' + } + UsersPermissionsCreateRolePayload: { // field return type name + ok: 'Boolean' + } + UsersPermissionsDeleteRolePayload: { // field return type name + ok: 'Boolean' + } + UsersPermissionsLoginPayload: { // field return type name + jwt: 'String' + user: 'UsersPermissionsMe' + } + UsersPermissionsMe: { // field return type name + blocked: 'Boolean' + confirmed: 'Boolean' + email: 'String' + id: 'ID' + role: 'UsersPermissionsMeRole' + username: 'String' + } + UsersPermissionsMeRole: { // field return type name + description: 'String' + id: 'ID' + name: 'String' + type: 'String' + } + UsersPermissionsPasswordPayload: { // field return type name + ok: 'Boolean' + } + UsersPermissionsPermission: { // field return type name + action: 'String' + createdAt: 'DateTime' + role: 'UsersPermissionsRoleEntityResponse' + updatedAt: 'DateTime' + } + UsersPermissionsPermissionEntity: { // field return type name + attributes: 'UsersPermissionsPermission' + id: 'ID' + } + UsersPermissionsPermissionEntityResponse: { // field return type name + data: 'UsersPermissionsPermissionEntity' + } + UsersPermissionsPermissionEntityResponseCollection: { // field return type name + data: 'UsersPermissionsPermissionEntity' + meta: 'ResponseCollectionMeta' + } + UsersPermissionsPermissionRelationResponseCollection: { // field return type name + data: 'UsersPermissionsPermissionEntity' + } + UsersPermissionsRole: { // field return type name + createdAt: 'DateTime' + description: 'String' + name: 'String' + permissions: 'UsersPermissionsPermissionRelationResponseCollection' + type: 'String' + updatedAt: 'DateTime' + users: 'UsersPermissionsUserRelationResponseCollection' + } + UsersPermissionsRoleEntity: { // field return type name + attributes: 'UsersPermissionsRole' + id: 'ID' + } + UsersPermissionsRoleEntityResponse: { // field return type name + data: 'UsersPermissionsRoleEntity' + } + UsersPermissionsRoleEntityResponseCollection: { // field return type name + data: 'UsersPermissionsRoleEntity' + meta: 'ResponseCollectionMeta' + } + UsersPermissionsRoleRelationResponseCollection: { // field return type name + data: 'UsersPermissionsRoleEntity' + } + UsersPermissionsUpdateRolePayload: { // field return type name + ok: 'Boolean' + } + UsersPermissionsUser: { // field return type name + blocked: 'Boolean' + confirmed: 'Boolean' + createdAt: 'DateTime' + email: 'String' + id: 'ID' + provider: 'String' + role: 'UsersPermissionsRoleEntityResponse' + updatedAt: 'DateTime' + username: 'String' + uuid: 'String' + } + UsersPermissionsUserEntity: { // field return type name + attributes: 'UsersPermissionsUser' + id: 'ID' + } + UsersPermissionsUserEntityResponse: { // field return type name + data: 'UsersPermissionsUserEntity' + } + UsersPermissionsUserEntityResponseCollection: { // field return type name + data: 'UsersPermissionsUserEntity' + meta: 'ResponseCollectionMeta' + } + UsersPermissionsUserRelationResponseCollection: { // field return type name + data: 'UsersPermissionsUserEntity' } } export interface NexusGenArgTypes { ComponentUiGrid: { - children: { - // args - filters?: NexusGenInputs["ComponentDataEntryFiltersInput"] | null // ComponentDataEntryFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + children: { // args + filters?: NexusGenInputs['ComponentDataEntryFiltersInput'] | null; // ComponentDataEntryFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } } ComponentUiText: { - children: { - // args - filters?: NexusGenInputs["ComponentUiParagraphFiltersInput"] | null // ComponentUiParagraphFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + children: { // args + filters?: NexusGenInputs['ComponentUiParagraphFiltersInput'] | null; // ComponentUiParagraphFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } } Layout: { - headerMenu: { - // args - filters?: NexusGenInputs["ComponentUiLinkFiltersInput"] | null // ComponentUiLinkFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + headerMenu: { // args + filters?: NexusGenInputs['ComponentUiLinkFiltersInput'] | null; // ComponentUiLinkFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } } Mutation: { - changePassword: { - // args - currentPassword: string // String! - password: string // String! - passwordConfirmation: string // String! + changePassword: { // args + currentPassword: string; // String! + password: string; // String! + passwordConfirmation: string; // String! } - createReactIconsIconlibrary: { - // args - data: NexusGenInputs["ReactIconsIconlibraryInput"] // ReactIconsIconlibraryInput! + createReactIconsIconlibrary: { // args + data: NexusGenInputs['ReactIconsIconlibraryInput']; // ReactIconsIconlibraryInput! } - createUploadFile: { - // args - data: NexusGenInputs["UploadFileInput"] // UploadFileInput! + createUploadFile: { // args + data: NexusGenInputs['UploadFileInput']; // UploadFileInput! } - createUsersPermissionsRole: { - // args - data: NexusGenInputs["UsersPermissionsRoleInput"] // UsersPermissionsRoleInput! + createUsersPermissionsRole: { // args + data: NexusGenInputs['UsersPermissionsRoleInput']; // UsersPermissionsRoleInput! } - createUsersPermissionsUser: { - // args - data: NexusGenInputs["UsersPermissionsUserInput"] // UsersPermissionsUserInput! + createUsersPermissionsUser: { // args + data: NexusGenInputs['UsersPermissionsUserInput']; // UsersPermissionsUserInput! } - deleteReactIconsIconlibrary: { - // args - id: string // ID! + deleteReactIconsIconlibrary: { // args + id: string; // ID! } - deleteUploadFile: { - // args - id: string // ID! + deleteUploadFile: { // args + id: string; // ID! } - deleteUsersPermissionsRole: { - // args - id: string // ID! + deleteUsersPermissionsRole: { // args + id: string; // ID! } - deleteUsersPermissionsUser: { - // args - id: string // ID! + deleteUsersPermissionsUser: { // args + id: string; // ID! } - emailConfirmation: { - // args - confirmation: string // String! + emailConfirmation: { // args + confirmation: string; // String! } - forgotPassword: { - // args - email: string // String! + forgotPassword: { // args + email: string; // String! } - login: { - // args - input: NexusGenInputs["UsersPermissionsLoginInput"] // UsersPermissionsLoginInput! + login: { // args + input: NexusGenInputs['UsersPermissionsLoginInput']; // UsersPermissionsLoginInput! } - multipleUpload: { - // args - field?: string | null // String - files: Array // [Upload]! - ref?: string | null // String - refId?: string | null // ID + multipleUpload: { // args + field?: string | null; // String + files: Array; // [Upload]! + ref?: string | null; // String + refId?: string | null; // ID } - register: { - // args - input: NexusGenInputs["UsersPermissionsRegisterInput"] // UsersPermissionsRegisterInput! + register: { // args + input: NexusGenInputs['UsersPermissionsRegisterInput']; // UsersPermissionsRegisterInput! } - removeFile: { - // args - id: string // ID! + removeFile: { // args + id: string; // ID! } - resetPassword: { - // args - code: string // String! - password: string // String! - passwordConfirmation: string // String! + resetPassword: { // args + code: string; // String! + password: string; // String! + passwordConfirmation: string; // String! } - updateFileInfo: { - // args - id: string // ID! - info?: NexusGenInputs["FileInfoInput"] | null // FileInfoInput + updateFileInfo: { // args + id: string; // ID! + info?: NexusGenInputs['FileInfoInput'] | null; // FileInfoInput } - updateHome: { - // args - data: NexusGenInputs["HomeInput"] // HomeInput! + updateHome: { // args + data: NexusGenInputs['HomeInput']; // HomeInput! } - updateLayout: { - // args - data: NexusGenInputs["LayoutInput"] // LayoutInput! + updateLayout: { // args + data: NexusGenInputs['LayoutInput']; // LayoutInput! } - updateReactIconsIconlibrary: { - // args - data: NexusGenInputs["ReactIconsIconlibraryInput"] // ReactIconsIconlibraryInput! - id: string // ID! + updateReactIconsIconlibrary: { // args + data: NexusGenInputs['ReactIconsIconlibraryInput']; // ReactIconsIconlibraryInput! + id: string; // ID! } - updateUploadFile: { - // args - data: NexusGenInputs["UploadFileInput"] // UploadFileInput! - id: string // ID! + updateUploadFile: { // args + data: NexusGenInputs['UploadFileInput']; // UploadFileInput! + id: string; // ID! } - updateUsersPermissionsRole: { - // args - data: NexusGenInputs["UsersPermissionsRoleInput"] // UsersPermissionsRoleInput! - id: string // ID! + updateUsersPermissionsRole: { // args + data: NexusGenInputs['UsersPermissionsRoleInput']; // UsersPermissionsRoleInput! + id: string; // ID! } - updateUsersPermissionsUser: { - // args - data: NexusGenInputs["UsersPermissionsUserInput"] // UsersPermissionsUserInput! - id: string // ID! + updateUsersPermissionsUser: { // args + data: NexusGenInputs['UsersPermissionsUserInput']; // UsersPermissionsUserInput! + id: string; // ID! } - upload: { - // args - field?: string | null // String - file: NexusGenScalars["Upload"] // Upload! - info?: NexusGenInputs["FileInfoInput"] | null // FileInfoInput - ref?: string | null // String - refId?: string | null // ID + upload: { // args + field?: string | null; // String + file: NexusGenScalars['Upload']; // Upload! + info?: NexusGenInputs['FileInfoInput'] | null; // FileInfoInput + ref?: string | null; // String + refId?: string | null; // ID } } Query: { - reactIconsIconlibraries: { - // args - filters?: NexusGenInputs["ReactIconsIconlibraryFiltersInput"] | null // ReactIconsIconlibraryFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + reactIconsIconlibraries: { // args + filters?: NexusGenInputs['ReactIconsIconlibraryFiltersInput'] | null; // ReactIconsIconlibraryFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } - reactIconsIconlibrary: { - // args - id?: string | null // ID + reactIconsIconlibrary: { // args + id?: string | null; // ID } - uploadFile: { - // args - id?: string | null // ID + uploadFile: { // args + id?: string | null; // ID } - uploadFiles: { - // args - filters?: NexusGenInputs["UploadFileFiltersInput"] | null // UploadFileFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + uploadFiles: { // args + filters?: NexusGenInputs['UploadFileFiltersInput'] | null; // UploadFileFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } - usersPermissionsRole: { - // args - id?: string | null // ID + usersPermissionsRole: { // args + id?: string | null; // ID } - usersPermissionsRoles: { - // args - filters?: NexusGenInputs["UsersPermissionsRoleFiltersInput"] | null // UsersPermissionsRoleFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + usersPermissionsRoles: { // args + filters?: NexusGenInputs['UsersPermissionsRoleFiltersInput'] | null; // UsersPermissionsRoleFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } - usersPermissionsUser: { - // args - id?: string | null // ID + usersPermissionsUser: { // args + id?: string | null; // ID } - usersPermissionsUsers: { - // args - filters?: NexusGenInputs["UsersPermissionsUserFiltersInput"] | null // UsersPermissionsUserFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + usersPermissionsUsers: { // args + filters?: NexusGenInputs['UsersPermissionsUserFiltersInput'] | null; // UsersPermissionsUserFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } } UploadFolder: { - children: { - // args - filters?: NexusGenInputs["UploadFolderFiltersInput"] | null // UploadFolderFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + children: { // args + filters?: NexusGenInputs['UploadFolderFiltersInput'] | null; // UploadFolderFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } - files: { - // args - filters?: NexusGenInputs["UploadFileFiltersInput"] | null // UploadFileFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + files: { // args + filters?: NexusGenInputs['UploadFileFiltersInput'] | null; // UploadFileFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } } UsersPermissionsRole: { - permissions: { - // args - filters?: NexusGenInputs["UsersPermissionsPermissionFiltersInput"] | null // UsersPermissionsPermissionFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + permissions: { // args + filters?: NexusGenInputs['UsersPermissionsPermissionFiltersInput'] | null; // UsersPermissionsPermissionFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } - users: { - // args - filters?: NexusGenInputs["UsersPermissionsUserFiltersInput"] | null // UsersPermissionsUserFiltersInput - pagination: NexusGenInputs["PaginationArg"] | null // PaginationArg - sort: Array | null // [String] + users: { // args + filters?: NexusGenInputs['UsersPermissionsUserFiltersInput'] | null; // UsersPermissionsUserFiltersInput + pagination: NexusGenInputs['PaginationArg'] | null; // PaginationArg + sort: Array | null; // [String] } } } export interface NexusGenAbstractTypeMembers { - GenericMorph: - | "ComponentDataEntry" - | "ComponentDataSet" - | "ComponentUiCard" - | "ComponentUiGrid" - | "ComponentUiHeadline" - | "ComponentUiLink" - | "ComponentUiParagraph" - | "ComponentUiSection" - | "ComponentUiTab" - | "ComponentUiText" - | "Home" - | "Layout" - | "ReactIconsIconlibrary" - | "UploadFile" - | "UploadFolder" - | "UsersPermissionsPermission" - | "UsersPermissionsRole" - | "UsersPermissionsUser" + GenericMorph: "ComponentDataEntry" | "ComponentDataSet" | "ComponentUiCard" | "ComponentUiGrid" | "ComponentUiHeadline" | "ComponentUiLink" | "ComponentUiParagraph" | "ComponentUiSection" | "ComponentUiTab" | "ComponentUiText" | "Home" | "Layout" | "ReactIconsIconlibrary" | "UploadFile" | "UploadFolder" | "UsersPermissionsPermission" | "UsersPermissionsRole" | "UsersPermissionsUser" } -export interface NexusGenTypeInterfaces {} +export interface NexusGenTypeInterfaces { +} -export type NexusGenObjectNames = keyof NexusGenObjects +export type NexusGenObjectNames = keyof NexusGenObjects; -export type NexusGenInputNames = keyof NexusGenInputs +export type NexusGenInputNames = keyof NexusGenInputs; -export type NexusGenEnumNames = keyof NexusGenEnums +export type NexusGenEnumNames = keyof NexusGenEnums; -export type NexusGenInterfaceNames = never +export type NexusGenInterfaceNames = never; -export type NexusGenScalarNames = keyof NexusGenScalars +export type NexusGenScalarNames = keyof NexusGenScalars; -export type NexusGenUnionNames = keyof NexusGenUnions +export type NexusGenUnionNames = keyof NexusGenUnions; -export type NexusGenObjectsUsingAbstractStrategyIsTypeOf = never +export type NexusGenObjectsUsingAbstractStrategyIsTypeOf = never; -export type NexusGenAbstractsUsingStrategyResolveType = "GenericMorph" +export type NexusGenAbstractsUsingStrategyResolveType = "GenericMorph"; export type NexusGenFeaturesConfig = { abstractTypeStrategies: { @@ -1906,41 +1638,43 @@ export type NexusGenFeaturesConfig = { } export interface NexusGenTypes { - context: any - inputTypes: NexusGenInputs - rootTypes: NexusGenRootTypes - inputTypeShapes: NexusGenInputs & NexusGenEnums & NexusGenScalars - argTypes: NexusGenArgTypes - fieldTypes: NexusGenFieldTypes - fieldTypeNames: NexusGenFieldTypeNames - allTypes: NexusGenAllTypes - typeInterfaces: NexusGenTypeInterfaces - objectNames: NexusGenObjectNames - inputNames: NexusGenInputNames - enumNames: NexusGenEnumNames - interfaceNames: NexusGenInterfaceNames - scalarNames: NexusGenScalarNames - unionNames: NexusGenUnionNames - allInputTypes: NexusGenTypes["inputNames"] | NexusGenTypes["enumNames"] | NexusGenTypes["scalarNames"] - allOutputTypes: - | NexusGenTypes["objectNames"] - | NexusGenTypes["enumNames"] - | NexusGenTypes["unionNames"] - | NexusGenTypes["interfaceNames"] - | NexusGenTypes["scalarNames"] - allNamedTypes: NexusGenTypes["allInputTypes"] | NexusGenTypes["allOutputTypes"] - abstractTypes: NexusGenTypes["interfaceNames"] | NexusGenTypes["unionNames"] - abstractTypeMembers: NexusGenAbstractTypeMembers - objectsUsingAbstractStrategyIsTypeOf: NexusGenObjectsUsingAbstractStrategyIsTypeOf - abstractsUsingStrategyResolveType: NexusGenAbstractsUsingStrategyResolveType - features: NexusGenFeaturesConfig + context: any; + inputTypes: NexusGenInputs; + rootTypes: NexusGenRootTypes; + inputTypeShapes: NexusGenInputs & NexusGenEnums & NexusGenScalars; + argTypes: NexusGenArgTypes; + fieldTypes: NexusGenFieldTypes; + fieldTypeNames: NexusGenFieldTypeNames; + allTypes: NexusGenAllTypes; + typeInterfaces: NexusGenTypeInterfaces; + objectNames: NexusGenObjectNames; + inputNames: NexusGenInputNames; + enumNames: NexusGenEnumNames; + interfaceNames: NexusGenInterfaceNames; + scalarNames: NexusGenScalarNames; + unionNames: NexusGenUnionNames; + allInputTypes: NexusGenTypes['inputNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['scalarNames']; + allOutputTypes: NexusGenTypes['objectNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['unionNames'] | NexusGenTypes['interfaceNames'] | NexusGenTypes['scalarNames']; + allNamedTypes: NexusGenTypes['allInputTypes'] | NexusGenTypes['allOutputTypes'] + abstractTypes: NexusGenTypes['interfaceNames'] | NexusGenTypes['unionNames']; + abstractTypeMembers: NexusGenAbstractTypeMembers; + objectsUsingAbstractStrategyIsTypeOf: NexusGenObjectsUsingAbstractStrategyIsTypeOf; + abstractsUsingStrategyResolveType: NexusGenAbstractsUsingStrategyResolveType; + features: NexusGenFeaturesConfig; } + declare global { - interface NexusGenPluginTypeConfig {} - interface NexusGenPluginInputTypeConfig {} - interface NexusGenPluginFieldConfig {} - interface NexusGenPluginInputFieldConfig {} - interface NexusGenPluginSchemaConfig {} - interface NexusGenPluginArgConfig {} -} + interface NexusGenPluginTypeConfig { + } + interface NexusGenPluginInputTypeConfig { + } + interface NexusGenPluginFieldConfig { + } + interface NexusGenPluginInputFieldConfig { + } + interface NexusGenPluginSchemaConfig { + } + interface NexusGenPluginArgConfig { + } +} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index af306e74..7f80212d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1923,28 +1923,6 @@ __metadata: languageName: node linkType: hard -"@bn-digital/pulumi@npm:1.7.51": - version: 1.7.51 - resolution: "@bn-digital/pulumi@npm:1.7.51" - dependencies: - "@pulumi/aws": ~5.41.0 - "@pulumi/digitalocean": ~4.19.2 - "@pulumi/docker": ~4.2.2 - "@pulumi/github": ~5.9.0 - "@pulumi/kubernetes": ~3.27.1 - "@pulumi/policy": ~1.5.0 - "@pulumi/postgresql": ~3.8.0 - "@pulumi/pulumi": ~3.67.1 - "@pulumi/random": ~4.13.1 - "@pulumi/tls": ~4.10.0 - "@pulumi/vault": ~5.11.0 - "@pulumiverse/harbor": ~3.8.4 - "@types/jest": ~29.5.1 - dotenv: ~16.0.3 - checksum: c164fe9754e673aacd23c1c9ae8df89bdf0b1f19c6727da4067b532eeb22f7da0885005314e91121b924f42be158034cafa1b1772e1b07a16973f7301e9449cb - languageName: node - linkType: hard - "@bn-digital/strapi-plugin-field-uuid@npm:^1.2.12": version: 1.2.12 resolution: "@bn-digital/strapi-plugin-field-uuid@npm:1.2.12" @@ -1990,7 +1968,7 @@ __metadata: languageName: node linkType: hard -"@bn-digital/typescript-config@npm:^1.3.6, @bn-digital/typescript-config@npm:^1.4.0": +"@bn-digital/typescript-config@npm:^1.3.1, @bn-digital/typescript-config@npm:^1.4.0": version: 1.4.0 resolution: "@bn-digital/typescript-config@npm:1.4.0" dependencies: @@ -4205,7 +4183,7 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/utils@npm:^8.13.1, @graphql-tools/utils@npm:^8.8.0": +"@graphql-tools/utils@npm:^8.12.0, @graphql-tools/utils@npm:^8.8.0": version: 8.13.1 resolution: "@graphql-tools/utils@npm:8.13.1" dependencies: @@ -4252,7 +4230,7 @@ __metadata: languageName: node linkType: hard -"@grpc/grpc-js@npm:^1.2.7, @grpc/grpc-js@npm:^1.3.8, @grpc/grpc-js@npm:^1.8.16": +"@grpc/grpc-js@npm:^1.8.16": version: 1.8.17 resolution: "@grpc/grpc-js@npm:1.8.17" dependencies: @@ -4343,38 +4321,6 @@ __metadata: languageName: node linkType: hard -"@jest/expect-utils@npm:^29.6.1": - version: 29.6.1 - resolution: "@jest/expect-utils@npm:29.6.1" - dependencies: - jest-get-type: ^29.4.3 - checksum: 037ee017eca62f7b45e1465fb5c6f9e92d5709a9ac716b8bff0bd294240a54de734e8f968fb69309cc4aef6c83b9552d5a821f3b18371af394bf04783859d706 - languageName: node - linkType: hard - -"@jest/schemas@npm:^29.6.0": - version: 29.6.0 - resolution: "@jest/schemas@npm:29.6.0" - dependencies: - "@sinclair/typebox": ^0.27.8 - checksum: c00511c69cf89138a7d974404d3a5060af375b5a52b9c87215d91873129b382ca11c1ff25bd6d605951404bb381ddce5f8091004a61e76457da35db1f5c51365 - languageName: node - linkType: hard - -"@jest/types@npm:^29.6.1": - version: 29.6.1 - resolution: "@jest/types@npm:29.6.1" - dependencies: - "@jest/schemas": ^29.6.0 - "@types/istanbul-lib-coverage": ^2.0.0 - "@types/istanbul-reports": ^3.0.0 - "@types/node": "*" - "@types/yargs": ^17.0.8 - chalk: ^4.0.0 - checksum: 89fc1ccf71a84fe0da643e0675b1cfe6a6f19ea72e935b2ab1dbdb56ec547e94433fb59b3536d3832a6e156c077865b7176fe9dae707dab9c3d2f9405ba6233c - languageName: node - linkType: hard - "@josephg/resolvable@npm:^1.0.0": version: 1.0.1 resolution: "@josephg/resolvable@npm:1.0.1" @@ -4719,7 +4665,7 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/instrumentation@npm:0.32.0": +"@opentelemetry/instrumentation@npm:0.32.0, @opentelemetry/instrumentation@npm:^0.32.0": version: 0.32.0 resolution: "@opentelemetry/instrumentation@npm:0.32.0" dependencies: @@ -5117,10 +5063,14 @@ __metadata: version: 0.0.0-use.local resolution: "@project-templates/cloud@workspace:packages/cloud" dependencies: - "@bn-digital/pulumi": 1.7.51 - "@bn-digital/typescript-config": ^1.3.6 - "@pulumi/policy": ^1.5.0 - "@pulumi/pulumi": 3.69.x + "@bn-digital/typescript-config": ^1.3.1 + "@pulumi/digitalocean": ^4.17.0 + "@pulumi/kubernetes": ^3.23.1 + "@pulumi/pulumi": ^3.62.0 + "@pulumi/vault": ^5.8.0 + "@types/node": ^18.15.11 + dotenv: ^16.0.3 + typescript: ^5.0.4 languageName: unknown linkType: soft @@ -5132,12 +5082,12 @@ __metadata: "@bn-digital/strapi-types": ^1.0.64 "@bn-digital/typescript-config": ^1.4.0 "@notum-cz/strapi-plugin-content-versioning": ^0.4.7 - "@strapi/plugin-graphql": ^4.11.4 - "@strapi/plugin-users-permissions": ^4.11.4 - "@strapi/provider-email-nodemailer": ^4.11.4 - "@strapi/provider-upload-aws-s3": ^4.11.4 - "@strapi/strapi": ^4.11.4 - "@strapi/typescript-utils": ^4.11.4 + "@strapi/plugin-graphql": 4.10.4 + "@strapi/plugin-users-permissions": 4.10.4 + "@strapi/provider-email-nodemailer": 4.10.4 + "@strapi/provider-upload-aws-s3": 4.10.4 + "@strapi/strapi": 4.10.4 + "@strapi/typescript-utils": 4.10.4 better-sqlite3: ^8.4.0 pg: ^8.11.1 strapi-blurhash: ^1.1.1 @@ -5235,54 +5185,21 @@ __metadata: languageName: node linkType: hard -"@pulumi/aws@npm:~5.41.0": - version: 5.41.0 - resolution: "@pulumi/aws@npm:5.41.0" - dependencies: - "@pulumi/pulumi": ^3.0.0 - aws-sdk: ^2.0.0 - builtin-modules: 3.0.0 - mime: ^2.0.0 - read-package-tree: ^5.2.1 - resolve: ^1.7.1 - checksum: 099d44002f97493e6f25a648cd8e3797642542eb8c40e476beded75d10e72e674f0a4417b117b7b052a1ebcdbd47c1ac309beecb0c53d79bf3dd3e6ac61c93ed - languageName: node - linkType: hard - -"@pulumi/digitalocean@npm:~4.19.2": - version: 4.19.4 - resolution: "@pulumi/digitalocean@npm:4.19.4" +"@pulumi/digitalocean@npm:^4.17.0": + version: 4.22.0 + resolution: "@pulumi/digitalocean@npm:4.22.0" dependencies: "@pulumi/pulumi": ^3.0.0 builtin-modules: 3.0.0 read-package-tree: ^5.2.1 resolve: ^1.7.1 - checksum: d72869360c0739b6fe33f8dc974f75e3caae2c3f9788a5f7e81df1df8625ff607f26cdf8b5faf7051b36f6a6e1d2a93749448021c8050dc5c4f0ee0fa9fb6024 - languageName: node - linkType: hard - -"@pulumi/docker@npm:~4.2.2": - version: 4.2.4 - resolution: "@pulumi/docker@npm:4.2.4" - dependencies: - "@pulumi/pulumi": ^3.0.0 - semver: ^5.4.0 - checksum: 8a30dd7261e83bd6198da1b1bfb03b05dca771ecee730dddc265cce82bf4ddee85fbbb16d411ed8a3ebf6493cf5f5252940741f551e836590a5742c509c74717 - languageName: node - linkType: hard - -"@pulumi/github@npm:~5.9.0": - version: 5.9.1 - resolution: "@pulumi/github@npm:5.9.1" - dependencies: - "@pulumi/pulumi": ^3.0.0 - checksum: 968046d571b0e093c21eb593975acc2e9caa592d53a484512bc3365bf2b1bd4adab9343625ad6152f592e3bb8645c285510eeaa2aa7ebc849c0f8e46d2011e83 + checksum: a7133a40c666756d8a58c806a2fff528303dc5af6cc0285f9cb932b0bfd30f91e1f76470229e23cecbc18bb613981e9cf1165d898481b5daaa958d504be55e58 languageName: node linkType: hard -"@pulumi/kubernetes@npm:~3.27.1": - version: 3.27.1 - resolution: "@pulumi/kubernetes@npm:3.27.1" +"@pulumi/kubernetes@npm:^3.23.1": + version: 3.30.2 + resolution: "@pulumi/kubernetes@npm:3.30.2" dependencies: "@pulumi/pulumi": ^3.25.0 "@types/glob": ^5.0.35 @@ -5292,71 +5209,7 @@ __metadata: node-fetch: ^2.3.0 shell-quote: ^1.6.1 tmp: ^0.0.33 - checksum: 648d9d3ecdab2be87e9936db36b4595447b53482a4a8925127710286cee2092d275fda5a07b91aa2e1c09ac91221fdf349e8042abcd5145f7d84be11daafdc57 - languageName: node - linkType: hard - -"@pulumi/policy@npm:^1.5.0": - version: 1.6.0 - resolution: "@pulumi/policy@npm:1.6.0" - dependencies: - "@grpc/grpc-js": ^1.2.7 - "@pulumi/pulumi": ^3.0.0 - google-protobuf: ^3.5.0 - protobufjs: ^6.11.3 - checksum: eee57a62a342423241dc47094fa2ed7108ec73881df2e3a555ecc83c49529ca1e736ac6ac0eefe4d0270f01f94a9248a5dbc6b2a4ea2eb062f101e9f6773c812 - languageName: node - linkType: hard - -"@pulumi/policy@npm:~1.5.0": - version: 1.5.0 - resolution: "@pulumi/policy@npm:1.5.0" - dependencies: - "@grpc/grpc-js": ^1.2.7 - "@pulumi/pulumi": ^3.0.0 - google-protobuf: ^3.5.0 - protobufjs: ^6.8.6 - checksum: 6f1f364330c529c473309982e19abd5e52338992114cb454ade9fb1aff6035bd5fe4bf8c53e0feaf62317dedba7fd3388787d5fdc66c7908ec0464a2f96e2bd1 - languageName: node - linkType: hard - -"@pulumi/postgresql@npm:~3.8.0": - version: 3.8.1 - resolution: "@pulumi/postgresql@npm:3.8.1" - dependencies: - "@pulumi/pulumi": ^3.0.0 - checksum: 14aa6d1a10384475fa03f71171f191668609e171ab785c7f9bc91921ed4efab8114216250f72310c806e87a49a3ee4d076b536c967fa78b780abc63343317b27 - languageName: node - linkType: hard - -"@pulumi/pulumi@npm:3.69.x": - version: 3.69.0 - resolution: "@pulumi/pulumi@npm:3.69.0" - dependencies: - "@grpc/grpc-js": ^1.3.8 - "@logdna/tail-file": ^2.0.6 - "@opentelemetry/api": ^1.2.0 - "@opentelemetry/exporter-zipkin": ^1.6.0 - "@opentelemetry/instrumentation-grpc": ^0.32.0 - "@opentelemetry/resources": ^1.6.0 - "@opentelemetry/sdk-trace-base": ^1.6.0 - "@opentelemetry/sdk-trace-node": ^1.6.0 - "@opentelemetry/semantic-conventions": ^1.6.0 - "@pulumi/query": ^0.3.0 - execa: ^5.1.0 - google-protobuf: ^3.5.0 - ini: ^2.0.0 - js-yaml: ^3.14.0 - minimist: ^1.2.6 - normalize-package-data: ^2.4.0 - read-package-tree: ^5.3.1 - require-from-string: ^2.0.1 - semver: ^6.1.0 - source-map-support: ^0.5.6 - ts-node: ^7.0.1 - typescript: ~3.8.3 - upath: ^1.1.0 - checksum: bcd5fd85c75a4dc3d34b31c3222592e63005dea68e89470901522f2a0b3e8d0066de7ad1b2fa1905151e4374e5000ce4d83f46faf37fb5f4df4146e27bcd81b6 + checksum: 1b26f47277344a7cc0d2be53ae15058dd4c3338751dc6f81d0e8cbe1d8b7b4c962b278a26f2f47569ceeea33aa566c129630875f10a45017abad26d948dfc14a languageName: node linkType: hard @@ -5392,14 +5245,15 @@ __metadata: languageName: node linkType: hard -"@pulumi/pulumi@npm:~3.67.1": - version: 3.67.1 - resolution: "@pulumi/pulumi@npm:3.67.1" +"@pulumi/pulumi@npm:^3.62.0": + version: 3.89.0 + resolution: "@pulumi/pulumi@npm:3.89.0" dependencies: - "@grpc/grpc-js": ^1.3.8 + "@grpc/grpc-js": ^1.8.16 "@logdna/tail-file": ^2.0.6 "@opentelemetry/api": ^1.2.0 "@opentelemetry/exporter-zipkin": ^1.6.0 + "@opentelemetry/instrumentation": ^0.32.0 "@opentelemetry/instrumentation-grpc": ^0.32.0 "@opentelemetry/resources": ^1.6.0 "@opentelemetry/sdk-trace-base": ^1.6.0 @@ -5411,15 +5265,16 @@ __metadata: ini: ^2.0.0 js-yaml: ^3.14.0 minimist: ^1.2.6 - normalize-package-data: ^2.4.0 + normalize-package-data: ^3.0.0 + pkg-dir: ^7.0.0 read-package-tree: ^5.3.1 require-from-string: ^2.0.1 - semver: ^6.1.0 + semver: ^7.5.2 source-map-support: ^0.5.6 ts-node: ^7.0.1 typescript: ~3.8.3 upath: ^1.1.0 - checksum: 0af2bee1bb33cfe89e9102baf18733231c320c2e03aa35d8e3b04daedf962c099d66247f5c601a0ec4f763ecaaa1e777282874762c89eea5c40f8f32658bfff4 + checksum: ab553cacd2c11c630cfddec00fa483ca32250f9150ac5ff156eb655720f61c60227403eac7299274266274e658b7627fd87016fa99cd4326eb01c94e9683fe35 languageName: node linkType: hard @@ -5430,39 +5285,12 @@ __metadata: languageName: node linkType: hard -"@pulumi/random@npm:~4.13.1": - version: 4.13.2 - resolution: "@pulumi/random@npm:4.13.2" - dependencies: - "@pulumi/pulumi": ^3.0.0 - checksum: 54192b40d6ddd49e4362d4c5189ebcdb1f8f52a18e8daeb94857de529d6119317199a74a19eed1c1a5afa26d4c9aa7225bc6ec6ec191260421dc6fd5ef8301fd - languageName: node - linkType: hard - -"@pulumi/tls@npm:~4.10.0": - version: 4.10.0 - resolution: "@pulumi/tls@npm:4.10.0" - dependencies: - "@pulumi/pulumi": ^3.0.0 - checksum: 410880bdcd729bde540e2593d75fc904689d5ed4b7d2a6e17142ee59d4893bfa6494393d361214fd313ae4799fe46d597c072c7c93f9d63fc2d87155b370201f - languageName: node - linkType: hard - -"@pulumi/vault@npm:~5.11.0": - version: 5.11.0 - resolution: "@pulumi/vault@npm:5.11.0" - dependencies: - "@pulumi/pulumi": ^3.0.0 - checksum: ae4325ba087c98ff41daa6a5cfff1611ff46f71127e3dc5e77dd7ed21d339a76f0fa79815c400f5264d7b1c0774250714679c0923145907275aedcfc949a20e8 - languageName: node - linkType: hard - -"@pulumiverse/harbor@npm:~3.8.4": - version: 3.8.4 - resolution: "@pulumiverse/harbor@npm:3.8.4" +"@pulumi/vault@npm:^5.8.0": + version: 5.16.1 + resolution: "@pulumi/vault@npm:5.16.1" dependencies: "@pulumi/pulumi": ^3.0.0 - checksum: 15fb425d6c9bb0e34c7404baca6bca2ce8c7ce65fb262b6c6dc3c423b5591aea6fd500f1264d2156c0610d808802a040d27c4ef9d190b6ada5ec9699815e5345 + checksum: 0ca46107d54c98a2fecd58b5f27dfc71dfcefe46d7757642ab806244a742982a5599520012179694009acd294f838e6499756e4fd26c819ee46538c036d57edf languageName: node linkType: hard @@ -5475,7 +5303,7 @@ __metadata: languageName: node linkType: hard -"@radix-ui/primitive@npm:1.0.1, @radix-ui/primitive@npm:^1.0.0": +"@radix-ui/primitive@npm:1.0.1, @radix-ui/primitive@npm:^1.0.0, @radix-ui/primitive@npm:^1.0.1": version: 1.0.1 resolution: "@radix-ui/primitive@npm:1.0.1" dependencies: @@ -5542,7 +5370,7 @@ __metadata: languageName: node linkType: hard -"@radix-ui/react-context@npm:1.0.1, @radix-ui/react-context@npm:^1.0.0": +"@radix-ui/react-context@npm:1.0.1, @radix-ui/react-context@npm:^1.0.0, @radix-ui/react-context@npm:^1.0.1": version: 1.0.1 resolution: "@radix-ui/react-context@npm:1.0.1" dependencies: @@ -5607,6 +5435,56 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-dismissable-layer@npm:1.0.5, @radix-ui/react-dismissable-layer@npm:^1.0.3, @radix-ui/react-dismissable-layer@npm:^1.0.5": + version: 1.0.5 + resolution: "@radix-ui/react-dismissable-layer@npm:1.0.5" + dependencies: + "@babel/runtime": ^7.13.10 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-compose-refs": 1.0.1 + "@radix-ui/react-primitive": 1.0.3 + "@radix-ui/react-use-callback-ref": 1.0.1 + "@radix-ui/react-use-escape-keydown": 1.0.3 + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: e73cf4bd3763f4d55b1bea7486a9700384d7d94dc00b1d5a75e222b2f1e4f32bc667a206ca4ed3baaaf7424dce7a239afd0ba59a6f0d89c3462c4e6e8d029a04 + languageName: node + linkType: hard + +"@radix-ui/react-dropdown-menu@npm:^2.0.4": + version: 2.0.6 + resolution: "@radix-ui/react-dropdown-menu@npm:2.0.6" + dependencies: + "@babel/runtime": ^7.13.10 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-compose-refs": 1.0.1 + "@radix-ui/react-context": 1.0.1 + "@radix-ui/react-id": 1.0.1 + "@radix-ui/react-menu": 2.0.6 + "@radix-ui/react-primitive": 1.0.3 + "@radix-ui/react-use-controllable-state": 1.0.1 + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 1433e04234c29ae688b1d50b4a5ad0fd67e2627a5ea2e5f60fec6e4307e673ef35a703672eae0d61d96156c59084bbb19de9f9b9936b3fc351917dfe41dcf403 + languageName: node + linkType: hard + "@radix-ui/react-dropdown-menu@npm:^2.0.5": version: 2.0.5 resolution: "@radix-ui/react-dropdown-menu@npm:2.0.5" @@ -5670,6 +5548,28 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-focus-scope@npm:1.0.4": + version: 1.0.4 + resolution: "@radix-ui/react-focus-scope@npm:1.0.4" + dependencies: + "@babel/runtime": ^7.13.10 + "@radix-ui/react-compose-refs": 1.0.1 + "@radix-ui/react-primitive": 1.0.3 + "@radix-ui/react-use-callback-ref": 1.0.1 + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 3481db1a641513a572734f0bcb0e47fefeba7bccd6ec8dde19f520719c783ef0b05a55ef0d5292078ed051cc5eda46b698d5d768da02e26e836022f46b376fd1 + languageName: node + linkType: hard + "@radix-ui/react-id@npm:1.0.1, @radix-ui/react-id@npm:^1.0.1": version: 1.0.1 resolution: "@radix-ui/react-id@npm:1.0.1" @@ -5723,6 +5623,43 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-menu@npm:2.0.6": + version: 2.0.6 + resolution: "@radix-ui/react-menu@npm:2.0.6" + dependencies: + "@babel/runtime": ^7.13.10 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-collection": 1.0.3 + "@radix-ui/react-compose-refs": 1.0.1 + "@radix-ui/react-context": 1.0.1 + "@radix-ui/react-direction": 1.0.1 + "@radix-ui/react-dismissable-layer": 1.0.5 + "@radix-ui/react-focus-guards": 1.0.1 + "@radix-ui/react-focus-scope": 1.0.4 + "@radix-ui/react-id": 1.0.1 + "@radix-ui/react-popper": 1.1.3 + "@radix-ui/react-portal": 1.0.4 + "@radix-ui/react-presence": 1.0.1 + "@radix-ui/react-primitive": 1.0.3 + "@radix-ui/react-roving-focus": 1.0.4 + "@radix-ui/react-slot": 1.0.2 + "@radix-ui/react-use-callback-ref": 1.0.1 + aria-hidden: ^1.1.1 + react-remove-scroll: 2.5.5 + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: a43fb560dbb5a4ddc43ea4e2434a9f517bbbcbf8b12e1e74c1e36666ad321aef7e39f91770140c106fe6f34e237102be8a02f3bc5588e6c06a709e20580c5e82 + languageName: node + linkType: hard + "@radix-ui/react-popper@npm:1.1.2, @radix-ui/react-popper@npm:^1.1.2": version: 1.1.2 resolution: "@radix-ui/react-popper@npm:1.1.2" @@ -5752,6 +5689,35 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-popper@npm:1.1.3, @radix-ui/react-popper@npm:^1.1.3": + version: 1.1.3 + resolution: "@radix-ui/react-popper@npm:1.1.3" + dependencies: + "@babel/runtime": ^7.13.10 + "@floating-ui/react-dom": ^2.0.0 + "@radix-ui/react-arrow": 1.0.3 + "@radix-ui/react-compose-refs": 1.0.1 + "@radix-ui/react-context": 1.0.1 + "@radix-ui/react-primitive": 1.0.3 + "@radix-ui/react-use-callback-ref": 1.0.1 + "@radix-ui/react-use-layout-effect": 1.0.1 + "@radix-ui/react-use-rect": 1.0.1 + "@radix-ui/react-use-size": 1.0.1 + "@radix-ui/rect": 1.0.1 + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: b18a15958623f9222b6ed3e24b9fbcc2ba67b8df5a5272412f261de1592b3f05002af1c8b94c065830c3c74267ce00cf6c1d70d4d507ec92ba639501f98aa348 + languageName: node + linkType: hard + "@radix-ui/react-portal@npm:1.0.3, @radix-ui/react-portal@npm:^1.0.3": version: 1.0.3 resolution: "@radix-ui/react-portal@npm:1.0.3" @@ -5772,6 +5738,26 @@ __metadata: languageName: node linkType: hard +"@radix-ui/react-portal@npm:1.0.4, @radix-ui/react-portal@npm:^1.0.4": + version: 1.0.4 + resolution: "@radix-ui/react-portal@npm:1.0.4" + dependencies: + "@babel/runtime": ^7.13.10 + "@radix-ui/react-primitive": 1.0.3 + peerDependencies: + "@types/react": "*" + "@types/react-dom": "*" + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: c4cf35e2f26a89703189d0eef3ceeeb706ae0832e98e558730a5e929ca7c72c7cb510413a24eca94c7732f8d659a1e81942bec7b90540cb73ce9e4885d040b64 + languageName: node + linkType: hard + "@radix-ui/react-presence@npm:1.0.1": version: 1.0.1 resolution: "@radix-ui/react-presence@npm:1.0.1" @@ -5857,7 +5843,7 @@ __metadata: languageName: node linkType: hard -"@radix-ui/react-use-callback-ref@npm:1.0.1, @radix-ui/react-use-callback-ref@npm:^1.0.0": +"@radix-ui/react-use-callback-ref@npm:1.0.1, @radix-ui/react-use-callback-ref@npm:^1.0.0, @radix-ui/react-use-callback-ref@npm:^1.0.1": version: 1.0.1 resolution: "@radix-ui/react-use-callback-ref@npm:1.0.1" dependencies: @@ -6226,6 +6212,18 @@ __metadata: languageName: node linkType: hard +"@rushstack/ts-command-line@npm:^4.7.7": + version: 4.16.1 + resolution: "@rushstack/ts-command-line@npm:4.16.1" + dependencies: + "@types/argparse": 1.0.38 + argparse: ~1.0.9 + colors: ~1.2.1 + string-argv: ~0.3.1 + checksum: f8309a274bdc9d9c87258f5f56b3905b8467319c87cdc757d98bf582b7c4a6925b389bce0ce4125a625a402335f195668dc55547b754f0e9a5d0014154c32d2d + languageName: node + linkType: hard + "@sentry/core@npm:6.19.7": version: 6.19.7 resolution: "@sentry/core@npm:6.19.7" @@ -6301,13 +6299,6 @@ __metadata: languageName: node linkType: hard -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 - languageName: node - linkType: hard - "@sindresorhus/is@npm:^4.0.0": version: 4.6.0 resolution: "@sindresorhus/is@npm:4.6.0" @@ -6335,9 +6326,9 @@ __metadata: languageName: node linkType: hard -"@strapi/admin@npm:4.11.4": - version: 4.11.4 - resolution: "@strapi/admin@npm:4.11.4" +"@strapi/admin@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/admin@npm:4.10.4" dependencies: "@babel/core": ^7.20.12 "@babel/plugin-transform-runtime": ^7.19.6 @@ -6347,13 +6338,122 @@ __metadata: "@casl/ability": ^5.4.3 "@fingerprintjs/fingerprintjs": 3.4.1 "@pmmmwh/react-refresh-webpack-plugin": 0.5.10 - "@strapi/babel-plugin-switch-ee-ce": 4.11.4 - "@strapi/data-transfer": 4.11.4 - "@strapi/design-system": 1.8.1 - "@strapi/helper-plugin": 4.11.4 - "@strapi/icons": 1.8.1 - "@strapi/permissions": 4.11.4 - "@strapi/provider-audit-logs-local": 4.11.4 + "@strapi/babel-plugin-switch-ee-ce": 4.10.4 + "@strapi/data-transfer": 4.10.4 + "@strapi/design-system": 1.7.3 + "@strapi/helper-plugin": 4.10.4 + "@strapi/icons": 1.7.3 + "@strapi/permissions": 4.10.4 + "@strapi/provider-audit-logs-local": 4.10.4 + "@strapi/typescript-utils": 4.10.4 + "@strapi/utils": 4.10.4 + axios: 1.3.4 + babel-loader: ^9.1.2 + babel-plugin-styled-components: 2.0.2 + bcryptjs: 2.4.3 + browserslist: ^4.17.3 + browserslist-to-esbuild: 1.2.0 + chalk: ^4.1.2 + chokidar: ^3.5.1 + codemirror5: "npm:codemirror@^5.65.11" + cross-env: ^7.0.3 + css-loader: ^6.7.3 + date-fns: 2.29.3 + dotenv: 8.5.1 + esbuild-loader: ^2.21.0 + execa: ^1.0.0 + fast-deep-equal: 3.1.3 + find-root: 1.1.0 + fork-ts-checker-webpack-plugin: 7.2.1 + formik: ^2.2.6 + fractional-indexing: 3.2.0 + fs-extra: 10.0.0 + highlight.js: ^10.4.1 + history: ^4.9.0 + hoist-non-react-statics: ^3.3.0 + html-loader: ^4.2.0 + html-webpack-plugin: 5.5.0 + immer: 9.0.19 + invariant: ^2.2.4 + js-cookie: 2.2.1 + jsonwebtoken: 9.0.0 + koa-compose: 4.1.0 + koa-passport: 5.0.0 + koa-static: 5.0.0 + koa2-ratelimit: ^1.1.2 + lodash: 4.17.21 + markdown-it: ^12.3.2 + markdown-it-abbr: ^1.0.4 + markdown-it-container: ^3.0.0 + markdown-it-deflist: ^2.1.0 + markdown-it-emoji: ^2.0.0 + markdown-it-footnote: ^3.0.3 + markdown-it-ins: ^3.0.1 + markdown-it-mark: ^3.0.1 + markdown-it-sub: ^1.0.0 + markdown-it-sup: 1.0.0 + mini-css-extract-plugin: 2.7.2 + node-schedule: 2.1.0 + p-map: 4.0.0 + passport-local: 1.0.0 + pluralize: 8.0.0 + prop-types: ^15.7.2 + qs: 6.11.1 + react: ^17.0.2 + react-copy-to-clipboard: ^5.1.0 + react-dnd: 15.1.2 + react-dnd-html5-backend: 15.1.3 + react-dom: ^17.0.2 + react-error-boundary: 3.1.4 + react-fast-compare: ^3.2.0 + react-helmet: ^6.1.0 + react-intl: 6.4.1 + react-is: ^17.0.2 + react-query: 3.24.3 + react-redux: 8.0.5 + react-refresh: 0.14.0 + react-router-dom: 5.3.4 + react-select: 5.7.0 + react-window: 1.8.8 + redux: ^4.2.1 + reselect: ^4.1.7 + rimraf: 3.0.2 + sanitize-html: 2.10.0 + semver: 7.3.8 + sift: 16.0.1 + style-loader: 3.3.1 + styled-components: 5.3.3 + typescript: 5.0.4 + webpack: ^5.82.0 + webpack-cli: ^5.1.0 + webpack-dev-server: ^4.15.0 + webpackbar: ^5.0.2 + yup: ^0.32.9 + peerDependencies: + "@strapi/strapi": ^4.3.4 + checksum: 8a38232ff0cae904de9134ae2941154f524c0cec178a6541dc7d56dae9bd176568e03efc9e975b536d3101fb7f13bb79ee3408540d2588005028d061fc2fe56c + languageName: node + linkType: hard + +"@strapi/admin@npm:4.11.4": + version: 4.11.4 + resolution: "@strapi/admin@npm:4.11.4" + dependencies: + "@babel/core": ^7.20.12 + "@babel/plugin-transform-runtime": ^7.19.6 + "@babel/preset-env": ^7.20.2 + "@babel/preset-react": ^7.18.6 + "@babel/runtime": ^7.20.13 + "@casl/ability": ^5.4.3 + "@fingerprintjs/fingerprintjs": 3.4.1 + "@pmmmwh/react-refresh-webpack-plugin": 0.5.10 + "@strapi/babel-plugin-switch-ee-ce": 4.11.4 + "@strapi/data-transfer": 4.11.4 + "@strapi/design-system": 1.8.1 + "@strapi/helper-plugin": 4.11.4 + "@strapi/icons": 1.8.1 + "@strapi/permissions": 4.11.4 + "@strapi/provider-audit-logs-local": 4.11.4 "@strapi/typescript-utils": 4.11.4 "@strapi/utils": 4.11.4 axios: 1.4.0 @@ -6441,6 +6541,17 @@ __metadata: languageName: node linkType: hard +"@strapi/babel-plugin-switch-ee-ce@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/babel-plugin-switch-ee-ce@npm:4.10.4" + dependencies: + "@babel/template": ^7.20.7 + reselect: 4.1.7 + resolve: 1.22.2 + checksum: f1ff52145c502d96f75b7361698ad9f74f436f0b48ddce0bcd02db7fa6f9b0e74eba2409d1185fec396df1c6fc7786ea5fe7ff49979d87b146219e56ff3cd1ce + languageName: node + linkType: hard + "@strapi/babel-plugin-switch-ee-ce@npm:4.11.4": version: 4.11.4 resolution: "@strapi/babel-plugin-switch-ee-ce@npm:4.11.4" @@ -6452,6 +6563,25 @@ __metadata: languageName: node linkType: hard +"@strapi/data-transfer@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/data-transfer@npm:4.10.4" + dependencies: + "@strapi/logger": 4.10.4 + "@strapi/strapi": 4.10.4 + chalk: 4.1.2 + fs-extra: 10.0.0 + lodash: 4.17.21 + semver: 7.3.8 + stream-chain: 2.2.5 + stream-json: 1.7.4 + tar: 6.1.13 + tar-stream: 2.2.0 + ws: 8.13.0 + checksum: c18056377ee72e3fff8c8d94b817cad4f8ca1179e0edb92504b31084ac85ab88f5ba4cbbf40dee70692751127041c6e8de256320eccfd48a241d237f7818fe0d + languageName: node + linkType: hard + "@strapi/data-transfer@npm:4.11.4": version: 4.11.4 resolution: "@strapi/data-transfer@npm:4.11.4" @@ -6471,6 +6601,21 @@ __metadata: languageName: node linkType: hard +"@strapi/database@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/database@npm:4.10.4" + dependencies: + date-fns: 2.29.3 + debug: 4.3.4 + fs-extra: 10.0.0 + knex: 2.4.0 + lodash: 4.17.21 + semver: 7.3.8 + umzug: 3.1.1 + checksum: 93b3ed34b9ddde27b0c4276872c2af1747419faef21419a7d75fefd3b8033f85b28370a66930d919afbb061d756c73f324f6b9f4b3de80f818b708a4a3325a5f + languageName: node + linkType: hard + "@strapi/database@npm:4.11.4": version: 4.11.4 resolution: "@strapi/database@npm:4.11.4" @@ -6487,6 +6632,30 @@ __metadata: languageName: node linkType: hard +"@strapi/design-system@npm:1.7.3": + version: 1.7.3 + resolution: "@strapi/design-system@npm:1.7.3" + dependencies: + "@codemirror/lang-json": ^6.0.1 + "@floating-ui/react-dom": ^1.3.0 + "@internationalized/number": ^3.2.0 + "@radix-ui/react-dismissable-layer": ^1.0.3 + "@radix-ui/react-dropdown-menu": ^2.0.4 + "@radix-ui/react-use-callback-ref": ^1.0.0 + "@strapi/ui-primitives": ^1.7.3 + "@uiw/react-codemirror": ^4.19.16 + compute-scroll-into-view: ^3.0.3 + prop-types: ^15.8.1 + peerDependencies: + "@strapi/icons": ^1.5.0 + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + react-router-dom: ^5.2.0 + styled-components: ^5.2.1 + checksum: 10524f110d6d8c7ef13531849b6122450aa58b35e76936dab9257eab2e6a185292fe43de0f70317e2496b7edda83ef8c793ce326ead118dd0958ee15a2edb561 + languageName: node + linkType: hard + "@strapi/design-system@npm:1.8.1, @strapi/design-system@npm:^1.6.3, @strapi/design-system@npm:^1.6.6": version: 1.8.1 resolution: "@strapi/design-system@npm:1.8.1" @@ -6514,6 +6683,25 @@ __metadata: languageName: node linkType: hard +"@strapi/generate-new@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/generate-new@npm:4.10.4" + dependencies: + "@sentry/node": 6.19.7 + chalk: ^4.1.2 + execa: 5.1.1 + fs-extra: 10.0.0 + inquirer: 8.2.5 + lodash: 4.17.21 + node-fetch: ^2.6.9 + node-machine-id: ^1.1.10 + ora: ^5.4.1 + semver: 7.3.8 + tar: 6.1.13 + checksum: 4ac77328b7ceb41bcc638d41ca47cbae6128242c6f8fbf56d60bf4b27ebbf9fb1f1a79cf28d13ab4cacf2798a144752197f4af486852dec3c0972f3b3cab8165 + languageName: node + linkType: hard + "@strapi/generate-new@npm:4.11.4": version: 4.11.4 resolution: "@strapi/generate-new@npm:4.11.4" @@ -6533,6 +6721,23 @@ __metadata: languageName: node linkType: hard +"@strapi/generators@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/generators@npm:4.10.4" + dependencies: + "@sindresorhus/slugify": 1.1.0 + "@strapi/typescript-utils": 4.10.4 + "@strapi/utils": 4.10.4 + chalk: 4.1.2 + copyfiles: 2.4.1 + fs-extra: 10.0.0 + node-plop: 0.26.3 + plop: 2.7.6 + pluralize: 8.0.0 + checksum: 4f12c73a6c5e6a781381b17b47839e16dc91942461fde845f0ee2b54912074e54db39c0875e1c2712bb0db0263d601817565579bc1167efc42df175b2551d473 + languageName: node + linkType: hard + "@strapi/generators@npm:4.11.4": version: 4.11.4 resolution: "@strapi/generators@npm:4.11.4" @@ -6550,6 +6755,31 @@ __metadata: languageName: node linkType: hard +"@strapi/helper-plugin@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/helper-plugin@npm:4.10.4" + dependencies: + axios: 1.3.4 + date-fns: 2.29.3 + formik: ^2.2.6 + immer: 9.0.19 + lodash: 4.17.21 + prop-types: ^15.7.2 + qs: 6.11.1 + react-helmet: ^6.1.0 + react-intl: 6.4.1 + react-select: 5.7.0 + peerDependencies: + "@strapi/design-system": ^1.7.3 + "@strapi/icons": ^1.7.3 + react: ^17.0.2 + react-dom: ^17.0.2 + react-router-dom: ^5.3.4 + styled-components: ^5.3.3 + checksum: 9b55c5fb3030aa8790f76997a6aac521b539e9279bc49499d4b9b791adf667fb723d1092dee9f2cc5e2bb8207b9c29cf5fffc287e6d4b639fa2e9e46a1ede45b + languageName: node + linkType: hard + "@strapi/helper-plugin@npm:4.11.4, @strapi/helper-plugin@npm:^4.6.0, @strapi/helper-plugin@npm:^4.9.1": version: 4.11.4 resolution: "@strapi/helper-plugin@npm:4.11.4" @@ -6576,6 +6806,16 @@ __metadata: languageName: node linkType: hard +"@strapi/icons@npm:1.7.3": + version: 1.7.3 + resolution: "@strapi/icons@npm:1.7.3" + peerDependencies: + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + checksum: f05d25c6d31a08d247546a0858024a06e0db449201d2c3ffb202514f0bb6a53b189c1a0713db0396f9a46edd055a2f1841f58b5b9c872803430f593791bb7297 + languageName: node + linkType: hard + "@strapi/icons@npm:1.8.1, @strapi/icons@npm:^1.6.6": version: 1.8.1 resolution: "@strapi/icons@npm:1.8.1" @@ -6586,6 +6826,16 @@ __metadata: languageName: node linkType: hard +"@strapi/logger@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/logger@npm:4.10.4" + dependencies: + lodash: 4.17.21 + winston: 3.3.3 + checksum: 6c3bd7860c20b1990e5639478f4c582e42c74d3354b36b77423856893534dc442c1ea5fe50ac0314fbe1a0574f96c518b797fc66843333311933d21e3986b0f3 + languageName: node + linkType: hard + "@strapi/logger@npm:4.11.4": version: 4.11.4 resolution: "@strapi/logger@npm:4.11.4" @@ -6596,6 +6846,18 @@ __metadata: languageName: node linkType: hard +"@strapi/permissions@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/permissions@npm:4.10.4" + dependencies: + "@casl/ability": 5.4.4 + "@strapi/utils": 4.10.4 + lodash: 4.17.21 + sift: 16.0.1 + checksum: 1a72bb80f7f70c6673f248b16b34aaecf55204a72b127dd73fbc04bb7b951c96f6e24cf9101f8aee4d4b208e98a1f628a61f227a62e18caddb7174a67be6e89d + languageName: node + linkType: hard + "@strapi/permissions@npm:4.11.4": version: 4.11.4 resolution: "@strapi/permissions@npm:4.11.4" @@ -6608,6 +6870,17 @@ __metadata: languageName: node linkType: hard +"@strapi/plugin-content-manager@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/plugin-content-manager@npm:4.10.4" + dependencies: + "@sindresorhus/slugify": 1.1.0 + "@strapi/utils": 4.10.4 + lodash: 4.17.21 + checksum: 4fa43907ac0c0aebf9a86fbc4380bd56146d6b5de52125e4c36102a003795c7da100152917c57e3b1697d061c83d2bdb6d7db183ca347fb0449768b21f286bc0 + languageName: node + linkType: hard + "@strapi/plugin-content-manager@npm:4.11.4": version: 4.11.4 resolution: "@strapi/plugin-content-manager@npm:4.11.4" @@ -6619,6 +6892,37 @@ __metadata: languageName: node linkType: hard +"@strapi/plugin-content-type-builder@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/plugin-content-type-builder@npm:4.10.4" + dependencies: + "@sindresorhus/slugify": 1.1.0 + "@strapi/design-system": 1.7.3 + "@strapi/generators": 4.10.4 + "@strapi/helper-plugin": 4.10.4 + "@strapi/icons": 1.7.3 + "@strapi/utils": 4.10.4 + fs-extra: 10.0.0 + immer: 9.0.19 + lodash: 4.17.21 + pluralize: ^8.0.0 + prop-types: ^15.7.2 + qs: 6.11.1 + react-helmet: ^6.1.0 + react-intl: 6.4.1 + react-redux: 8.0.5 + redux: ^4.2.1 + reselect: ^4.1.7 + yup: ^0.32.9 + peerDependencies: + react: ^17.0.2 + react-dom: ^17.0.2 + react-router-dom: ^5.3.4 + styled-components: ^5.3.3 + checksum: 1d519fc593d6265d0497a8799c6a94c17702526d6515a8cc21aec5a361dc6276558c0f9a38910f69e64012d9c5c2c06e887092c60d60eece86353d564ec12798 + languageName: node + linkType: hard + "@strapi/plugin-content-type-builder@npm:4.11.4": version: 4.11.4 resolution: "@strapi/plugin-content-type-builder@npm:4.11.4" @@ -6650,6 +6954,27 @@ __metadata: languageName: node linkType: hard +"@strapi/plugin-email@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/plugin-email@npm:4.10.4" + dependencies: + "@strapi/design-system": 1.7.3 + "@strapi/icons": 1.7.3 + "@strapi/provider-email-sendmail": 4.10.4 + "@strapi/utils": 4.10.4 + lodash: 4.17.21 + prop-types: ^15.7.2 + react-intl: 6.4.1 + yup: ^0.32.9 + peerDependencies: + react: ^17.0.2 + react-dom: ^17.0.2 + react-router-dom: ^5.3.4 + styled-components: ^5.3.3 + checksum: e74abf33c66e7845bac9516ce7e940cc8b4c1e4cb386663686349224bf4b8789f41843e03c73fba1ac07593ae3432f17742a579528e044f66eca709b808ed30b + languageName: node + linkType: hard + "@strapi/plugin-email@npm:4.11.4": version: 4.11.4 resolution: "@strapi/plugin-email@npm:4.11.4" @@ -6671,17 +6996,17 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-graphql@npm:^4.11.4": - version: 4.11.4 - resolution: "@strapi/plugin-graphql@npm:4.11.4" +"@strapi/plugin-graphql@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/plugin-graphql@npm:4.10.4" dependencies: "@graphql-tools/schema": 8.5.1 - "@graphql-tools/utils": ^8.13.1 - "@strapi/design-system": 1.8.1 - "@strapi/helper-plugin": 4.11.4 - "@strapi/icons": 1.8.1 - "@strapi/utils": 4.11.4 - apollo-server-core: 3.12.0 + "@graphql-tools/utils": ^8.12.0 + "@strapi/design-system": 1.7.3 + "@strapi/helper-plugin": 4.10.4 + "@strapi/icons": 1.7.3 + "@strapi/utils": 4.10.4 + apollo-server-core: 3.11.1 apollo-server-koa: 3.10.0 glob: ^7.1.7 graphql: ^15.5.1 @@ -6695,11 +7020,51 @@ __metadata: pluralize: ^8.0.0 peerDependencies: "@strapi/strapi": ^4.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - react-router-dom: 5.3.4 - styled-components: 5.3.3 - checksum: aacdd65589f2e742411f8ee971a40263e753c8f59d4ef590e09e3636deb708ad421ca09dabe6a0bd11ecf649a9f4027bed3219cb7c6219f85a1402b49271360a + react: ^17.0.2 + react-dom: ^17.0.2 + react-router-dom: ^5.3.4 + styled-components: ^5.3.3 + checksum: 9f81f5be00c185b97c58afc146a06fbed768815382f9196b9bf4e634b374e84dbc378e58671a71096942482a59942095bc733f3a2f9b44fab7a110a202aab1db + languageName: node + linkType: hard + +"@strapi/plugin-upload@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/plugin-upload@npm:4.10.4" + dependencies: + "@strapi/design-system": 1.7.3 + "@strapi/helper-plugin": 4.10.4 + "@strapi/icons": 1.7.3 + "@strapi/provider-upload-local": 4.10.4 + "@strapi/utils": 4.10.4 + axios: 1.3.4 + byte-size: 7.0.1 + cropperjs: 1.5.12 + date-fns: 2.29.3 + formik: 2.2.9 + fs-extra: 10.0.0 + immer: 9.0.19 + koa-range: 0.3.0 + koa-static: 5.0.0 + lodash: 4.17.21 + mime-types: 2.1.35 + prop-types: ^15.7.2 + qs: 6.11.1 + react-copy-to-clipboard: ^5.1.0 + react-dnd: 15.1.2 + react-helmet: ^6.1.0 + react-intl: 6.4.1 + react-query: 3.24.3 + react-redux: 8.0.5 + react-select: 5.7.0 + sharp: 0.32.0 + yup: ^0.32.9 + peerDependencies: + react: ^17.0.2 + react-dom: ^17.0.2 + react-router-dom: ^5.3.4 + styled-components: ^5.3.3 + checksum: 71f8a5afd2c4abb77b184a5c38d9e6146d83c8435576c86bd4c36150abed38c7020c5cf9e857e7c37ecbd31ea418ae7c3aab07ea7298b812d6e9cacf38ce57f8 languageName: node linkType: hard @@ -6742,16 +7107,16 @@ __metadata: languageName: node linkType: hard -"@strapi/plugin-users-permissions@npm:^4.11.4": - version: 4.11.4 - resolution: "@strapi/plugin-users-permissions@npm:4.11.4" +"@strapi/plugin-users-permissions@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/plugin-users-permissions@npm:4.10.4" dependencies: - "@strapi/design-system": 1.8.1 - "@strapi/helper-plugin": 4.11.4 - "@strapi/icons": 1.8.1 - "@strapi/utils": 4.11.4 + "@strapi/design-system": 1.7.3 + "@strapi/helper-plugin": 4.10.4 + "@strapi/icons": 1.7.3 + "@strapi/utils": 4.10.4 bcryptjs: 2.4.3 - formik: 2.4.0 + formik: 2.2.9 grant-koa: 5.4.8 immer: 9.0.19 jsonwebtoken: 9.0.0 @@ -6759,19 +7124,28 @@ __metadata: koa: ^2.13.4 koa2-ratelimit: ^1.1.2 lodash: 4.17.21 - prop-types: ^15.8.1 + prop-types: ^15.7.2 purest: 4.0.2 react-intl: 6.4.1 - react-query: 3.39.3 + react-query: 3.24.3 react-redux: 8.0.5 url-join: 4.0.1 yup: ^0.32.9 peerDependencies: - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - react-router-dom: 5.3.4 - styled-components: 5.3.3 - checksum: c1cdbf70564cfdaca613a5066c9dd537a49be0f9c12cc8b4179f7bb735ed967bdc1fc901afa560d4bc1b00432394738d37c8a4993c558a0f0024e61f7ce35348 + react: ^17.0.2 + react-dom: ^17.0.2 + react-router-dom: ^5.3.4 + styled-components: ^5.3.3 + checksum: 1e2644c8e9823fb5ba753879ab7d372cf52acedecf88f515ea40ed0cc78a2a55c2cd34bff10f34b195feac631d0b82488f5e17be4bfe6e0831ebe02ab0c1e3a7 + languageName: node + linkType: hard + +"@strapi/provider-audit-logs-local@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/provider-audit-logs-local@npm:4.10.4" + peerDependencies: + "@strapi/strapi": ^4.9.0 + checksum: 9da859d823e1ef4e558ccaaa39e93986a4af336c80aad9a2e4856dccae313133696fbb54b0b3455cdac8716f26955b9644178d7c9a5ba5a9e040deb5a6c3b008 languageName: node linkType: hard @@ -6784,13 +7158,23 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-email-nodemailer@npm:^4.11.4": - version: 4.11.4 - resolution: "@strapi/provider-email-nodemailer@npm:4.11.4" +"@strapi/provider-email-nodemailer@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/provider-email-nodemailer@npm:4.10.4" dependencies: lodash: 4.17.21 nodemailer: 6.9.1 - checksum: bcdf0d8f7354d6b16578824b94e35d1d52adefb1fc6a8dda49e0dfe70e78015833629669300c09b63eb7d4ee8909d32fc3c1d9bcc69e06aaa66e42dbcccd2abc + checksum: 9b908a1f0584414fc079af2ea552e16f60d035195101039e49508f9109f607cd140db937ec0c70cfd91505f0d8d8d70dbc9f474ef7bbbbd2a4f0ccc5df221f9d + languageName: node + linkType: hard + +"@strapi/provider-email-sendmail@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/provider-email-sendmail@npm:4.10.4" + dependencies: + "@strapi/utils": 4.10.4 + sendmail: ^1.6.1 + checksum: 31300ec52362cf8e4b10ebfddcaff3c0ddeff1b62f481b9f0d830af52284d9cb3fb5c4036faa813a4d7a28f7c3558f4322e7620d7dabef46652a2054c969236d languageName: node linkType: hard @@ -6804,13 +7188,23 @@ __metadata: languageName: node linkType: hard -"@strapi/provider-upload-aws-s3@npm:^4.11.4": - version: 4.11.4 - resolution: "@strapi/provider-upload-aws-s3@npm:4.11.4" +"@strapi/provider-upload-aws-s3@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/provider-upload-aws-s3@npm:4.10.4" dependencies: - aws-sdk: 2.1409.0 + aws-sdk: 2.1372.0 lodash: 4.17.21 - checksum: 29c66db47d481856023a69133e598555d9de664bd0260421a92bf9c6879562cff15d8669b6803e533f6152aedfad6b872dea4df0c87f282a1e332ea3a8387eb1 + checksum: cd42d0a380d96e1793fd19b60cd4c4fc0e89c694e993ad0e6a891d29911a784f400838982ed406102f67b9834d11dc91ee784c812a3c0f2bacced21fed0f86e6 + languageName: node + linkType: hard + +"@strapi/provider-upload-local@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/provider-upload-local@npm:4.10.4" + dependencies: + "@strapi/utils": 4.10.4 + fs-extra: 10.0.0 + checksum: 89017bea783ba4c252116865c96146db24f71175cf2a71355fcfd7139118644bc49d9070ec47e91ba9543ea48eb640adb4c6e91640e5a580e075dfc0be4c1270 languageName: node linkType: hard @@ -6824,7 +7218,71 @@ __metadata: languageName: node linkType: hard -"@strapi/strapi@npm:4.11.4, @strapi/strapi@npm:^4.11.4, @strapi/strapi@npm:^4.3.0": +"@strapi/strapi@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/strapi@npm:4.10.4" + dependencies: + "@koa/cors": 3.4.3 + "@koa/router": 10.1.1 + "@strapi/admin": 4.10.4 + "@strapi/data-transfer": 4.10.4 + "@strapi/database": 4.10.4 + "@strapi/generate-new": 4.10.4 + "@strapi/generators": 4.10.4 + "@strapi/logger": 4.10.4 + "@strapi/permissions": 4.10.4 + "@strapi/plugin-content-manager": 4.10.4 + "@strapi/plugin-content-type-builder": 4.10.4 + "@strapi/plugin-email": 4.10.4 + "@strapi/plugin-upload": 4.10.4 + "@strapi/typescript-utils": 4.10.4 + "@strapi/utils": 4.10.4 + bcryptjs: 2.4.3 + boxen: 5.1.2 + chalk: 4.1.2 + chokidar: 3.5.2 + ci-info: 3.8.0 + cli-table3: 0.6.2 + commander: 8.3.0 + configstore: 5.0.1 + debug: 4.3.4 + delegates: 1.0.0 + dotenv: 10.0.0 + execa: 5.1.1 + fs-extra: 10.0.0 + glob: 7.2.0 + http-errors: 1.8.1 + https-proxy-agent: 5.0.1 + inquirer: 8.2.5 + is-docker: 2.2.1 + koa: 2.13.4 + koa-body: 4.2.0 + koa-compose: 4.1.0 + koa-compress: 5.1.0 + koa-favicon: 2.1.0 + koa-helmet: 6.1.0 + koa-ip: ^2.1.2 + koa-session: 6.4.0 + koa-static: 5.0.0 + lodash: 4.17.21 + mime-types: 2.1.35 + node-fetch: 2.6.9 + node-machine-id: 1.1.12 + node-schedule: 2.1.0 + open: 8.4.0 + ora: 5.4.1 + package-json: 7.0.0 + qs: 6.11.1 + resolve-cwd: 3.0.0 + semver: 7.3.8 + statuses: 2.0.1 + bin: + strapi: bin/strapi.js + checksum: 26467c61c22f2fb7561fcb0141c0f6af1d3d51e638e03fb173d6acb7b6cac4fccd754b3ed90ba98b626b203581c8dcb438f27cb4e7f1c4162c5adf11bfa6a084 + languageName: node + linkType: hard + +"@strapi/strapi@npm:4.11.4, @strapi/strapi@npm:^4.3.0": version: 4.11.4 resolution: "@strapi/strapi@npm:4.11.4" dependencies: @@ -6888,6 +7346,20 @@ __metadata: languageName: node linkType: hard +"@strapi/typescript-utils@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/typescript-utils@npm:4.10.4" + dependencies: + chalk: 4.1.2 + cli-table3: 0.6.2 + fs-extra: 10.0.1 + lodash: 4.17.21 + prettier: 2.8.4 + typescript: 5.0.4 + checksum: 906953b1e8d8536ba11c11ad7155eef0df16f86d133e448067309cce201e85cf81b228c2fc64946e8a948d64284221cc9e5228c88fc5fd89dcd5f7a3d69c190d + languageName: node + linkType: hard + "@strapi/typescript-utils@npm:4.11.4, @strapi/typescript-utils@npm:^4.11.4": version: 4.11.4 resolution: "@strapi/typescript-utils@npm:4.11.4" @@ -6902,6 +7374,38 @@ __metadata: languageName: node linkType: hard +"@strapi/ui-primitives@npm:^1.7.3": + version: 1.12.2 + resolution: "@strapi/ui-primitives@npm:1.12.2" + dependencies: + "@radix-ui/number": ^1.0.1 + "@radix-ui/primitive": ^1.0.1 + "@radix-ui/react-collection": 1.0.3 + "@radix-ui/react-compose-refs": ^1.0.1 + "@radix-ui/react-context": ^1.0.1 + "@radix-ui/react-direction": 1.0.1 + "@radix-ui/react-dismissable-layer": ^1.0.5 + "@radix-ui/react-focus-guards": 1.0.1 + "@radix-ui/react-focus-scope": 1.0.4 + "@radix-ui/react-id": ^1.0.1 + "@radix-ui/react-popper": ^1.1.3 + "@radix-ui/react-portal": ^1.0.4 + "@radix-ui/react-primitive": ^1.0.3 + "@radix-ui/react-slot": ^1.0.2 + "@radix-ui/react-use-callback-ref": ^1.0.1 + "@radix-ui/react-use-controllable-state": ^1.0.1 + "@radix-ui/react-use-layout-effect": 1.0.1 + "@radix-ui/react-use-previous": ^1.0.1 + "@radix-ui/react-visually-hidden": ^1.0.3 + aria-hidden: ^1.2.3 + react-remove-scroll: ^2.5.6 + peerDependencies: + react: ^17.0.0 || ^18.0.0 + react-dom: ^17.0.0 || ^18.0.0 + checksum: 6661c65fca1d38d23e3b104e629a0a80d293f9a4d066b6d343faeef31f6afa007799dfe8290270480a842565cb8786e09554ded9b83ca62a21f8798ff4ab256b + languageName: node + linkType: hard + "@strapi/ui-primitives@npm:^1.8.1": version: 1.8.1 resolution: "@strapi/ui-primitives@npm:1.8.1" @@ -6934,6 +7438,20 @@ __metadata: languageName: node linkType: hard +"@strapi/utils@npm:4.10.4": + version: 4.10.4 + resolution: "@strapi/utils@npm:4.10.4" + dependencies: + "@sindresorhus/slugify": 1.1.0 + date-fns: 2.29.3 + http-errors: 1.8.1 + lodash: 4.17.21 + p-map: 4.0.0 + yup: 0.32.9 + checksum: 671a1597d33dafd414a2f64bf55969817f033fb462d9362c7de21d9fba58cca22bf2aca2a7a318b2326c3e43b1c4b78744f20e451a9097eb0131573e113741ac + languageName: node + linkType: hard + "@strapi/utils@npm:4.11.4, @strapi/utils@npm:^4.0.0": version: 4.11.4 resolution: "@strapi/utils@npm:4.11.4" @@ -7531,41 +8049,6 @@ __metadata: languageName: node linkType: hard -"@types/istanbul-lib-coverage@npm:*, @types/istanbul-lib-coverage@npm:^2.0.0": - version: 2.0.4 - resolution: "@types/istanbul-lib-coverage@npm:2.0.4" - checksum: a25d7589ee65c94d31464c16b72a9dc81dfa0bea9d3e105ae03882d616e2a0712a9c101a599ec482d297c3591e16336962878cb3eb1a0a62d5b76d277a890ce7 - languageName: node - linkType: hard - -"@types/istanbul-lib-report@npm:*": - version: 3.0.0 - resolution: "@types/istanbul-lib-report@npm:3.0.0" - dependencies: - "@types/istanbul-lib-coverage": "*" - checksum: 656398b62dc288e1b5226f8880af98087233cdb90100655c989a09f3052b5775bf98ba58a16c5ae642fb66c61aba402e07a9f2bff1d1569e3b306026c59f3f36 - languageName: node - linkType: hard - -"@types/istanbul-reports@npm:^3.0.0": - version: 3.0.1 - resolution: "@types/istanbul-reports@npm:3.0.1" - dependencies: - "@types/istanbul-lib-report": "*" - checksum: f1ad54bc68f37f60b30c7915886b92f86b847033e597f9b34f2415acdbe5ed742fa559a0a40050d74cdba3b6a63c342cac1f3a64dba5b68b66a6941f4abd7903 - languageName: node - linkType: hard - -"@types/jest@npm:~29.5.1": - version: 29.5.2 - resolution: "@types/jest@npm:29.5.2" - dependencies: - expect: ^29.0.0 - pretty-format: ^29.0.0 - checksum: 7d205599ea3cccc262bad5cc173d3242d6bf8138c99458509230e4ecef07a52d6ddcde5a1dbd49ace655c0af51d2dbadef3748697292ea4d86da19d9e03e19c0 - languageName: node - linkType: hard - "@types/js-yaml@npm:^4.0.0": version: 4.0.5 resolution: "@types/js-yaml@npm:4.0.5" @@ -7739,6 +8222,13 @@ __metadata: languageName: node linkType: hard +"@types/node@npm:^18.15.11": + version: 18.18.6 + resolution: "@types/node@npm:18.18.6" + checksum: a847639b8455fd3dfa6dbc2917274c82c9db789f1d41aaf69f94ac6c9e54c3c1dd29be6e1e1ccd7c17e54db3d78d7011bc4e70544c6447ceca253dccc0a187e1 + languageName: node + linkType: hard + "@types/normalize-package-data@npm:^2.4.0": version: 2.4.1 resolution: "@types/normalize-package-data@npm:2.4.1" @@ -7881,13 +8371,6 @@ __metadata: languageName: node linkType: hard -"@types/stack-utils@npm:^2.0.0": - version: 2.0.1 - resolution: "@types/stack-utils@npm:2.0.1" - checksum: 205fdbe3326b7046d7eaf5e494d8084f2659086a266f3f9cf00bccc549c8e36e407f88168ad4383c8b07099957ad669f75f2532ed4bc70be2b037330f7bae019 - languageName: node - linkType: hard - "@types/strip-bom@npm:^3.0.0": version: 3.0.0 resolution: "@types/strip-bom@npm:3.0.0" @@ -7983,22 +8466,6 @@ __metadata: languageName: node linkType: hard -"@types/yargs-parser@npm:*": - version: 21.0.0 - resolution: "@types/yargs-parser@npm:21.0.0" - checksum: b2f4c8d12ac18a567440379909127cf2cec393daffb73f246d0a25df36ea983b93b7e9e824251f959e9f928cbc7c1aab6728d0a0ff15d6145f66cec2be67d9a2 - languageName: node - linkType: hard - -"@types/yargs@npm:^17.0.8": - version: 17.0.24 - resolution: "@types/yargs@npm:17.0.24" - dependencies: - "@types/yargs-parser": "*" - checksum: 5f3ac4dc4f6e211c1627340160fbe2fd247ceba002190da6cf9155af1798450501d628c9165a183f30a224fc68fa5e700490d740ff4c73e2cdef95bc4e8ba7bf - languageName: node - linkType: hard - "@typescript-eslint/eslint-plugin@npm:^5.61.0": version: 5.61.0 resolution: "@typescript-eslint/eslint-plugin@npm:5.61.0" @@ -8156,6 +8623,29 @@ __metadata: languageName: node linkType: hard +"@uiw/codemirror-extensions-basic-setup@npm:4.21.20": + version: 4.21.20 + resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.21.20" + dependencies: + "@codemirror/autocomplete": ^6.0.0 + "@codemirror/commands": ^6.0.0 + "@codemirror/language": ^6.0.0 + "@codemirror/lint": ^6.0.0 + "@codemirror/search": ^6.0.0 + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + peerDependencies: + "@codemirror/autocomplete": ">=6.0.0" + "@codemirror/commands": ">=6.0.0" + "@codemirror/language": ">=6.0.0" + "@codemirror/lint": ">=6.0.0" + "@codemirror/search": ">=6.0.0" + "@codemirror/state": ">=6.0.0" + "@codemirror/view": ">=6.0.0" + checksum: 76a6caf05bbcf06c515c680ab952e79b8470ca10c9d8c3166fdb05310232239782b170da276b1dbf33900ca894332fc2aba3bd6955665b2c2580548c7e17cbc0 + languageName: node + linkType: hard + "@uiw/codemirror-extensions-basic-setup@npm:4.21.7": version: 4.21.7 resolution: "@uiw/codemirror-extensions-basic-setup@npm:4.21.7" @@ -8179,6 +8669,28 @@ __metadata: languageName: node linkType: hard +"@uiw/react-codemirror@npm:^4.19.16": + version: 4.21.20 + resolution: "@uiw/react-codemirror@npm:4.21.20" + dependencies: + "@babel/runtime": ^7.18.6 + "@codemirror/commands": ^6.1.0 + "@codemirror/state": ^6.1.1 + "@codemirror/theme-one-dark": ^6.0.0 + "@uiw/codemirror-extensions-basic-setup": 4.21.20 + codemirror: ^6.0.0 + peerDependencies: + "@babel/runtime": ">=7.11.0" + "@codemirror/state": ">=6.0.0" + "@codemirror/theme-one-dark": ">=6.0.0" + "@codemirror/view": ">=6.0.0" + codemirror: ">=6.0.0" + react: ">=16.8.0" + react-dom: ">=16.8.0" + checksum: 63ea348a922c535ff91c8bff1c1dac40ced0227d1c17139142dbc28017bb254cc32428a15686660ec4f4cd6935c574d627b6a4872910357af51da8e90faaf4da + languageName: node + linkType: hard + "@uiw/react-codemirror@npm:^4.21.3": version: 4.21.7 resolution: "@uiw/react-codemirror@npm:4.21.7" @@ -8643,7 +9155,7 @@ __metadata: languageName: node linkType: hard -"ajv-keywords@npm:^5.1.0": +"ajv-keywords@npm:^5.0.0, ajv-keywords@npm:^5.1.0": version: 5.1.0 resolution: "ajv-keywords@npm:5.1.0" dependencies: @@ -8666,7 +9178,7 @@ __metadata: languageName: node linkType: hard -"ajv@npm:^8.0.0, ajv@npm:^8.0.1, ajv@npm:^8.11.0, ajv@npm:^8.6.0, ajv@npm:^8.9.0": +"ajv@npm:^8.0.0, ajv@npm:^8.0.1, ajv@npm:^8.11.0, ajv@npm:^8.6.0, ajv@npm:^8.8.0, ajv@npm:^8.9.0": version: 8.12.0 resolution: "ajv@npm:8.12.0" dependencies: @@ -8781,13 +9293,6 @@ __metadata: languageName: node linkType: hard -"ansi-styles@npm:^5.0.0": - version: 5.2.0 - resolution: "ansi-styles@npm:5.2.0" - checksum: d7f4e97ce0623aea6bc0d90dcd28881ee04cba06c570b97fd3391bd7a268eedfd9d5e2dd4fdcbdd82b8105df5faf6f24aaedc08eaf3da898e702db5948f63469 - languageName: node - linkType: hard - "ansi-styles@npm:^6.0.0, ansi-styles@npm:^6.1.0": version: 6.2.1 resolution: "ansi-styles@npm:6.2.1" @@ -8881,7 +9386,7 @@ __metadata: languageName: node linkType: hard -"apollo-reporting-protobuf@npm:^3.4.0": +"apollo-reporting-protobuf@npm:^3.3.3, apollo-reporting-protobuf@npm:^3.4.0": version: 3.4.0 resolution: "apollo-reporting-protobuf@npm:3.4.0" dependencies: @@ -8890,7 +9395,40 @@ __metadata: languageName: node linkType: hard -"apollo-server-core@npm:3.12.0, apollo-server-core@npm:^3.10.0": +"apollo-server-core@npm:3.11.1": + version: 3.11.1 + resolution: "apollo-server-core@npm:3.11.1" + dependencies: + "@apollo/utils.keyvaluecache": ^1.0.1 + "@apollo/utils.logger": ^1.0.0 + "@apollo/utils.usagereporting": ^1.0.0 + "@apollographql/apollo-tools": ^0.5.3 + "@apollographql/graphql-playground-html": 1.6.29 + "@graphql-tools/mock": ^8.1.2 + "@graphql-tools/schema": ^8.0.0 + "@josephg/resolvable": ^1.0.0 + apollo-datasource: ^3.3.2 + apollo-reporting-protobuf: ^3.3.3 + apollo-server-env: ^4.2.1 + apollo-server-errors: ^3.3.1 + apollo-server-plugin-base: ^3.7.1 + apollo-server-types: ^3.7.1 + async-retry: ^1.2.1 + fast-json-stable-stringify: ^2.1.0 + graphql-tag: ^2.11.0 + loglevel: ^1.6.8 + lru-cache: ^6.0.0 + node-abort-controller: ^3.0.1 + sha.js: ^2.4.11 + uuid: ^9.0.0 + whatwg-mimetype: ^3.0.0 + peerDependencies: + graphql: ^15.3.0 || ^16.0.0 + checksum: a5cb7cff331680c2a926c64e88f744425b724bcfae46aeb02ae636d0b6f57a605e561eb284e765618bd0b2b5f8c556c92183f69852f2e4f5889368fee6aa38dc + languageName: node + linkType: hard + +"apollo-server-core@npm:^3.10.0": version: 3.12.0 resolution: "apollo-server-core@npm:3.12.0" dependencies: @@ -8963,7 +9501,7 @@ __metadata: languageName: node linkType: hard -"apollo-server-plugin-base@npm:^3.7.2": +"apollo-server-plugin-base@npm:^3.7.1, apollo-server-plugin-base@npm:^3.7.2": version: 3.7.2 resolution: "apollo-server-plugin-base@npm:3.7.2" dependencies: @@ -8974,7 +9512,7 @@ __metadata: languageName: node linkType: hard -"apollo-server-types@npm:^3.6.2, apollo-server-types@npm:^3.8.0": +"apollo-server-types@npm:^3.6.2, apollo-server-types@npm:^3.7.1, apollo-server-types@npm:^3.8.0": version: 3.8.0 resolution: "apollo-server-types@npm:3.8.0" dependencies: @@ -9407,27 +9945,9 @@ __metadata: languageName: node linkType: hard -"aws-sdk@npm:2.1409.0": - version: 2.1409.0 - resolution: "aws-sdk@npm:2.1409.0" - dependencies: - buffer: 4.9.2 - events: 1.1.1 - ieee754: 1.1.13 - jmespath: 0.16.0 - querystring: 0.2.0 - sax: 1.2.1 - url: 0.10.3 - util: ^0.12.4 - uuid: 8.0.0 - xml2js: 0.5.0 - checksum: f0046c83916e12b07b28699fd20aea11d78a3f41b1aa6add2ed645f92dec8b424640ef9439596545eba5f3d3a4254c08ce12b7d48504656dd37d2cc9b5ba9994 - languageName: node - linkType: hard - -"aws-sdk@npm:^2.0.0": - version: 2.1412.0 - resolution: "aws-sdk@npm:2.1412.0" +"aws-sdk@npm:2.1372.0": + version: 2.1372.0 + resolution: "aws-sdk@npm:2.1372.0" dependencies: buffer: 4.9.2 events: 1.1.1 @@ -9439,7 +9959,7 @@ __metadata: util: ^0.12.4 uuid: 8.0.0 xml2js: 0.5.0 - checksum: 7e4667a7073d6244329aa6c8e400f656c4cee8afa1b9db4b88067dc1912ace2c6b7cee6ed7e432754a7a1bc3907083f093e0b823a9763e75b1ca2aee4555f463 + checksum: da064626d434f792adf74861534ab3fc15757ba9352f735f6703deacebf1b982c057d5db434ac00fc5d364aee1c82de684572e205228f5014ca468e05e312d97 languageName: node linkType: hard @@ -9457,6 +9977,17 @@ __metadata: languageName: node linkType: hard +"axios@npm:1.3.4": + version: 1.3.4 + resolution: "axios@npm:1.3.4" + dependencies: + follow-redirects: ^1.15.0 + form-data: ^4.0.0 + proxy-from-env: ^1.1.0 + checksum: 7440edefcf8498bc3cdf39de00443e8101f249972c83b739c6e880d9d669fea9486372dbe8739e88b3bf8bb1ad15f6106693f206f078f4516fe8fd47b1c3093c + languageName: node + linkType: hard + "axios@npm:1.4.0": version: 1.4.0 resolution: "axios@npm:1.4.0" @@ -9537,6 +10068,20 @@ __metadata: languageName: node linkType: hard +"babel-plugin-styled-components@npm:2.0.2": + version: 2.0.2 + resolution: "babel-plugin-styled-components@npm:2.0.2" + dependencies: + "@babel/helper-annotate-as-pure": ^7.16.0 + "@babel/helper-module-imports": ^7.16.0 + babel-plugin-syntax-jsx: ^6.18.0 + lodash: ^4.17.11 + peerDependencies: + styled-components: ">= 2" + checksum: 3de729e909506b8dda27567fa561aa2f50822f1151f0d321303790afa45ffc0698f0d6836b8c8fd5f24845f4e1b181f8c51532dd9c1fa7a15fa37033a445c137 + languageName: node + linkType: hard + "babel-plugin-styled-components@npm:2.1.1": version: 2.1.1 resolution: "babel-plugin-styled-components@npm:2.1.1" @@ -10531,7 +11076,7 @@ __metadata: languageName: node linkType: hard -"ci-info@npm:3.8.0, ci-info@npm:^3.2.0, ci-info@npm:^3.8.0": +"ci-info@npm:3.8.0, ci-info@npm:^3.8.0": version: 3.8.0 resolution: "ci-info@npm:3.8.0" checksum: d0a4d3160497cae54294974a7246202244fff031b0a6ea20dd57b10ec510aa17399c41a1b0982142c105f3255aff2173e5c0dd7302ee1b2f28ba3debda375098 @@ -11212,7 +11757,7 @@ __metadata: languageName: node linkType: hard -"copy-to-clipboard@npm:^3.2.0": +"copy-to-clipboard@npm:^3.2.0, copy-to-clipboard@npm:^3.3.1": version: 3.3.3 resolution: "copy-to-clipboard@npm:3.3.3" dependencies: @@ -11474,7 +12019,7 @@ __metadata: languageName: node linkType: hard -"css-loader@npm:^6.8.1": +"css-loader@npm:^6.7.3, css-loader@npm:^6.8.1": version: 6.8.1 resolution: "css-loader@npm:6.8.1" dependencies: @@ -11615,6 +12160,13 @@ __metadata: languageName: node linkType: hard +"date-fns@npm:2.29.3": + version: 2.29.3 + resolution: "date-fns@npm:2.29.3" + checksum: e01cf5b62af04e05dfff921bb9c9933310ed0e1ae9a81eb8653452e64dc841acf7f6e01e1a5ae5644d0337e9a7f936175fd2cb6819dc122fdd9c5e86c56be484 + languageName: node + linkType: hard + "date-fns@npm:2.30.0": version: 2.30.0 resolution: "date-fns@npm:2.30.0" @@ -11991,13 +12543,6 @@ __metadata: languageName: node linkType: hard -"diff-sequences@npm:^29.4.3": - version: 29.4.3 - resolution: "diff-sequences@npm:29.4.3" - checksum: 28b265e04fdddcf7f9f814effe102cc95a9dec0564a579b5aed140edb24fc345c611ca52d76d725a3cab55d3888b915b5e8a4702e0f6058968a90fa5f41fcde7 - languageName: node - linkType: hard - "diff@npm:^3.1.0": version: 3.5.0 resolution: "diff@npm:3.5.0" @@ -12250,7 +12795,7 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:16.0.x, dotenv@npm:~16.0.3": +"dotenv@npm:16.0.x": version: 16.0.3 resolution: "dotenv@npm:16.0.3" checksum: afcf03f373d7a6d62c7e9afea6328e62851d627a4e73f2e12d0a8deae1cd375892004f3021883f8aec85932cd2834b091f568ced92b4774625b321db83b827f8 @@ -12264,7 +12809,7 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:^16.0.0, dotenv@npm:^16.3.1": +"dotenv@npm:^16.0.0, dotenv@npm:^16.0.3, dotenv@npm:^16.3.1": version: 16.3.1 resolution: "dotenv@npm:16.3.1" checksum: 15d75e7279018f4bafd0ee9706593dd14455ddb71b3bcba9c52574460b7ccaf67d5cf8b2c08a5af1a9da6db36c956a04a1192b101ee102a3e0cf8817bbcf3dfd @@ -12362,6 +12907,13 @@ __metadata: languageName: node linkType: hard +"emittery@npm:^0.10.2": + version: 0.10.2 + resolution: "emittery@npm:0.10.2" + checksum: ee3e21788b043b90885b18ea756ec3105c1cedc50b29709c92b01e239c7e55345d4bb6d3aef4ddbaf528eef448a40b3bb831bad9ee0fc9c25cbf1367ab1ab5ac + languageName: node + linkType: hard + "emittery@npm:^0.12.1": version: 0.12.1 resolution: "emittery@npm:0.12.1" @@ -13316,20 +13868,6 @@ __metadata: languageName: node linkType: hard -"expect@npm:^29.0.0": - version: 29.6.1 - resolution: "expect@npm:29.6.1" - dependencies: - "@jest/expect-utils": ^29.6.1 - "@types/node": "*" - jest-get-type: ^29.4.3 - jest-matcher-utils: ^29.6.1 - jest-message-util: ^29.6.1 - jest-util: ^29.6.1 - checksum: 4e712e52c90f6c54e748fd2876be33c43ada6a59088ddf6a1acb08b18b3b97b3a672124684abe32599986d2f2a438d5afad148837ee06ea386d2a4bf0348de78 - languageName: node - linkType: hard - "exponential-backoff@npm:^3.1.1": version: 3.1.1 resolution: "exponential-backoff@npm:3.1.1" @@ -13868,6 +14406,32 @@ __metadata: languageName: node linkType: hard +"fork-ts-checker-webpack-plugin@npm:7.2.1": + version: 7.2.1 + resolution: "fork-ts-checker-webpack-plugin@npm:7.2.1" + dependencies: + "@babel/code-frame": ^7.16.7 + chalk: ^4.1.2 + chokidar: ^3.5.3 + cosmiconfig: ^7.0.1 + deepmerge: ^4.2.2 + fs-extra: ^10.0.0 + memfs: ^3.4.1 + minimatch: ^3.0.4 + schema-utils: 4.0.0 + semver: ^7.3.5 + tapable: ^2.2.1 + peerDependencies: + typescript: ">3.6.0" + vue-template-compiler: "*" + webpack: ^5.11.0 + peerDependenciesMeta: + vue-template-compiler: + optional: true + checksum: cc4a5caafc4df43324e03944e4cbbccf356f0ea09cf3694835729dc63b82eb0d630675b9ab5f5e45764f24242ea6f3bd2e5fd26256351eeef4e740785eec26c2 + languageName: node + linkType: hard + "fork-ts-checker-webpack-plugin@npm:7.3.0": version: 7.3.0 resolution: "fork-ts-checker-webpack-plugin@npm:7.3.0" @@ -13935,6 +14499,23 @@ __metadata: languageName: node linkType: hard +"formik@npm:2.2.9": + version: 2.2.9 + resolution: "formik@npm:2.2.9" + dependencies: + deepmerge: ^2.1.1 + hoist-non-react-statics: ^3.3.0 + lodash: ^4.17.21 + lodash-es: ^4.17.21 + react-fast-compare: ^2.0.1 + tiny-warning: ^1.0.2 + tslib: ^1.10.0 + peerDependencies: + react: ">=16.8.0" + checksum: f07f80eee8423b4c5560546c48c4093c47530dae7d931a4e0d947d68ae1aab94291b1bf2e99ecaa5854ee50593b415fb5724c624c787338f0577f066009e8812 + languageName: node + linkType: hard + "formik@npm:2.4.0": version: 2.4.0 resolution: "formik@npm:2.4.0" @@ -13952,6 +14533,24 @@ __metadata: languageName: node linkType: hard +"formik@npm:^2.2.6": + version: 2.4.5 + resolution: "formik@npm:2.4.5" + dependencies: + "@types/hoist-non-react-statics": ^3.3.1 + deepmerge: ^2.1.1 + hoist-non-react-statics: ^3.3.0 + lodash: ^4.17.21 + lodash-es: ^4.17.21 + react-fast-compare: ^2.0.1 + tiny-warning: ^1.0.2 + tslib: ^2.0.0 + peerDependencies: + react: ">=16.8.0" + checksum: 316c91fc4e440094655c0d0ba47277a0f84f6082f77ae2ae959e97e2eebb8eab5b866a9e43d93a28efdae07c3f23e779da67922e2f2a1fb47d135b7346e0b5f3 + languageName: node + linkType: hard + "formik@npm:^2.4.0": version: 2.4.2 resolution: "formik@npm:2.4.2" @@ -14087,7 +14686,7 @@ __metadata: languageName: node linkType: hard -"fs-jetpack@npm:^4.3.1": +"fs-jetpack@npm:^4.1.0, fs-jetpack@npm:^4.3.1": version: 4.3.1 resolution: "fs-jetpack@npm:4.3.1" dependencies: @@ -15061,6 +15660,13 @@ __metadata: languageName: node linkType: hard +"helmet@npm:^4.4.1": + version: 4.6.0 + resolution: "helmet@npm:4.6.0" + checksum: 139ad678d1cab207b043c206f50f6744eff2ef1f463e4626d36718b45b337485c77d10260ef9d89d292fa678da5153d86b08172b3b365cc8e680241015ed3a49 + languageName: node + linkType: hard + "helmet@npm:^6.0.1": version: 6.2.0 resolution: "helmet@npm:6.2.0" @@ -16638,68 +17244,6 @@ __metadata: languageName: node linkType: hard -"jest-diff@npm:^29.6.1": - version: 29.6.1 - resolution: "jest-diff@npm:29.6.1" - dependencies: - chalk: ^4.0.0 - diff-sequences: ^29.4.3 - jest-get-type: ^29.4.3 - pretty-format: ^29.6.1 - checksum: c6350178ca27d92c7fd879790fb2525470c1ff1c5d29b1834a240fecd26c6904fb470ebddb98dc96dd85389c56c3b50e6965a1f5203e9236d213886ed9806219 - languageName: node - linkType: hard - -"jest-get-type@npm:^29.4.3": - version: 29.4.3 - resolution: "jest-get-type@npm:29.4.3" - checksum: 6ac7f2dde1c65e292e4355b6c63b3a4897d7e92cb4c8afcf6d397f2682f8080e094c8b0b68205a74d269882ec06bf696a9de6cd3e1b7333531e5ed7b112605ce - languageName: node - linkType: hard - -"jest-matcher-utils@npm:^29.6.1": - version: 29.6.1 - resolution: "jest-matcher-utils@npm:29.6.1" - dependencies: - chalk: ^4.0.0 - jest-diff: ^29.6.1 - jest-get-type: ^29.4.3 - pretty-format: ^29.6.1 - checksum: d2efa6aed6e4820758b732b9fefd315c7fa4508ee690da656e1c5ac4c1a0f4cee5b04c9719ee1fda9aeb883b4209186c145089ced521e715b9fa70afdfa4a9c6 - languageName: node - linkType: hard - -"jest-message-util@npm:^29.6.1": - version: 29.6.1 - resolution: "jest-message-util@npm:29.6.1" - dependencies: - "@babel/code-frame": ^7.12.13 - "@jest/types": ^29.6.1 - "@types/stack-utils": ^2.0.0 - chalk: ^4.0.0 - graceful-fs: ^4.2.9 - micromatch: ^4.0.4 - pretty-format: ^29.6.1 - slash: ^3.0.0 - stack-utils: ^2.0.3 - checksum: 3e7cb2ff087fe72255292e151d24e4fbb4cd6134885c0a67a4b302f233fe4110bf7580b176f427f05ad7550eb878ed94237209785d09d659a7d171ffa59c068f - languageName: node - linkType: hard - -"jest-util@npm:^29.6.1": - version: 29.6.1 - resolution: "jest-util@npm:29.6.1" - dependencies: - "@jest/types": ^29.6.1 - "@types/node": "*" - chalk: ^4.0.0 - ci-info: ^3.2.0 - graceful-fs: ^4.2.9 - picomatch: ^2.2.3 - checksum: fc553556c1350c443449cadaba5fb9d604628e8b5ceb6ceaf4e7e08975b24277d0a14bf2e0f956024e03c23e556fcb074659423422a06fbedf2ab52978697ac7 - languageName: node - linkType: hard - "jest-worker@npm:^26.2.1": version: 26.6.2 resolution: "jest-worker@npm:26.6.2" @@ -17300,6 +17844,15 @@ __metadata: languageName: node linkType: hard +"koa-helmet@npm:6.1.0": + version: 6.1.0 + resolution: "koa-helmet@npm:6.1.0" + dependencies: + helmet: ^4.4.1 + checksum: 6c5c37b345a9a996f10ed9231393daace0c35b94a1bddd6f94261a2a40e50d278464f3bdae02870fc20a70e94f4f72fc4c47b3cea983e582761256ee3866b3fe + languageName: node + linkType: hard + "koa-helmet@npm:7.0.2": version: 7.0.2 resolution: "koa-helmet@npm:7.0.2" @@ -18530,15 +19083,6 @@ __metadata: languageName: node linkType: hard -"mime@npm:^2.0.0": - version: 2.6.0 - resolution: "mime@npm:2.6.0" - bin: - mime: cli.js - checksum: 1497ba7b9f6960694268a557eae24b743fd2923da46ec392b042469f4b901721ba0adcf8b0d3c2677839d0e243b209d76e5edcbd09cfdeffa2dfb6bb4df4b862 - languageName: node - linkType: hard - "mimic-fn@npm:^1.0.0": version: 1.2.0 resolution: "mimic-fn@npm:1.2.0" @@ -19253,7 +19797,7 @@ __metadata: languageName: node linkType: hard -"normalize-package-data@npm:^2.0.0, normalize-package-data@npm:^2.3.2, normalize-package-data@npm:^2.3.4, normalize-package-data@npm:^2.4.0, normalize-package-data@npm:^2.5.0": +"normalize-package-data@npm:^2.0.0, normalize-package-data@npm:^2.3.2, normalize-package-data@npm:^2.3.4, normalize-package-data@npm:^2.5.0": version: 2.5.0 resolution: "normalize-package-data@npm:2.5.0" dependencies: @@ -20371,7 +20915,7 @@ __metadata: languageName: node linkType: hard -"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.2, picomatch@npm:^2.2.3, picomatch@npm:^2.3.0, picomatch@npm:^2.3.1": +"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.2, picomatch@npm:^2.3.0, picomatch@npm:^2.3.1": version: 2.3.1 resolution: "picomatch@npm:2.3.1" checksum: 050c865ce81119c4822c45d3c84f1ced46f93a0126febae20737bd05ca20589c564d6e9226977df859ed5e03dc73f02584a2b0faad36e896936238238b0446cf @@ -20583,6 +21127,13 @@ __metadata: languageName: node linkType: hard +"pony-cause@npm:^1.1.1": + version: 1.1.1 + resolution: "pony-cause@npm:1.1.1" + checksum: 5ff8878b808be48db801d52246a99d7e4789e52d20575ba504ede30c818fd85d38a033915e02c15fa9b6dce72448836dc1a47094acf8f1c21c4f04a4603b0cfb + languageName: node + linkType: hard + "pony-cause@npm:^2.1.2": version: 2.1.10 resolution: "pony-cause@npm:2.1.10" @@ -21392,17 +21943,6 @@ __metadata: languageName: node linkType: hard -"pretty-format@npm:^29.0.0, pretty-format@npm:^29.6.1": - version: 29.6.1 - resolution: "pretty-format@npm:29.6.1" - dependencies: - "@jest/schemas": ^29.6.0 - ansi-styles: ^5.0.0 - react-is: ^18.0.0 - checksum: 6f923a2379a37a425241dc223d76f671c73c4f37dba158050575a54095867d565c068b441843afdf3d7c37bed9df4bbadf46297976e60d4149972b779474203a - languageName: node - linkType: hard - "pretty-time@npm:^1.1.0": version: 1.1.0 resolution: "pretty-time@npm:1.1.0" @@ -21474,30 +22014,6 @@ __metadata: languageName: node linkType: hard -"protobufjs@npm:^6.11.3, protobufjs@npm:^6.8.6": - version: 6.11.3 - resolution: "protobufjs@npm:6.11.3" - dependencies: - "@protobufjs/aspromise": ^1.1.2 - "@protobufjs/base64": ^1.1.2 - "@protobufjs/codegen": ^2.0.4 - "@protobufjs/eventemitter": ^1.1.0 - "@protobufjs/fetch": ^1.1.0 - "@protobufjs/float": ^1.0.2 - "@protobufjs/inquire": ^1.1.0 - "@protobufjs/path": ^1.1.2 - "@protobufjs/pool": ^1.1.0 - "@protobufjs/utf8": ^1.1.0 - "@types/long": ^4.0.1 - "@types/node": ">=13.7.0" - long: ^4.0.0 - bin: - pbjs: bin/pbjs - pbts: bin/pbts - checksum: 4a6ce1964167e4c45c53fd8a312d7646415c777dd31b4ba346719947b88e61654912326101f927da387d6b6473ab52a7ea4f54d6f15d63b31130ce28e2e15070 - languageName: node - linkType: hard - "protobufjs@npm:^7.0.0": version: 7.2.4 resolution: "protobufjs@npm:7.2.4" @@ -22337,6 +22853,18 @@ __metadata: languageName: node linkType: hard +"react-copy-to-clipboard@npm:^5.1.0": + version: 5.1.0 + resolution: "react-copy-to-clipboard@npm:5.1.0" + dependencies: + copy-to-clipboard: ^3.3.1 + prop-types: ^15.8.1 + peerDependencies: + react: ^15.3.0 || 16 || 17 || 18 + checksum: f00a4551b9b63c944a041a6ab46af5ef20ba1106b3bc25173e7ef9bffbfba17a613368682ab8820cfe8d4b3acc5335cd9ce20229145bcc1e6aa8d1db04c512e5 + languageName: node + linkType: hard + "react-dnd-html5-backend@npm:15.1.3": version: 15.1.3 resolution: "react-dnd-html5-backend@npm:15.1.3" @@ -22371,6 +22899,19 @@ __metadata: languageName: node linkType: hard +"react-dom@npm:^17.0.2": + version: 17.0.2 + resolution: "react-dom@npm:17.0.2" + dependencies: + loose-envify: ^1.1.0 + object-assign: ^4.1.1 + scheduler: ^0.20.2 + peerDependencies: + react: 17.0.2 + checksum: 1c1eaa3bca7c7228d24b70932e3d7c99e70d1d04e13bb0843bbf321582bc25d7961d6b8a6978a58a598af2af496d1cedcfb1bf65f6b0960a0a8161cb8dab743c + languageName: node + linkType: hard + "react-dom@npm:^18.2.0": version: 18.2.0 resolution: "react-dom@npm:18.2.0" @@ -22401,7 +22942,7 @@ __metadata: languageName: node linkType: hard -"react-fast-compare@npm:^3.1.1": +"react-fast-compare@npm:^3.1.1, react-fast-compare@npm:^3.2.0": version: 3.2.2 resolution: "react-fast-compare@npm:3.2.2" checksum: 2071415b4f76a3e6b55c84611c4d24dcb12ffc85811a2840b5a3f1ff2d1a99be1020d9437ee7c6e024c9f4cbb84ceb35e48cf84f28fcb00265ad2dfdd3947704 @@ -22486,6 +23027,13 @@ __metadata: languageName: node linkType: hard +"react-is@npm:^17.0.2": + version: 17.0.2 + resolution: "react-is@npm:17.0.2" + checksum: 9d6d111d8990dc98bc5402c1266a808b0459b5d54830bbea24c12d908b536df7883f268a7868cfaedde3dd9d4e0d574db456f84d2e6df9c4526f99bb4b5344d8 + languageName: node + linkType: hard + "react-is@npm:^18.0.0, react-is@npm:^18.2.0": version: 18.2.0 resolution: "react-is@npm:18.2.0" @@ -22493,6 +23041,24 @@ __metadata: languageName: node linkType: hard +"react-query@npm:3.24.3": + version: 3.24.3 + resolution: "react-query@npm:3.24.3" + dependencies: + "@babel/runtime": ^7.5.5 + broadcast-channel: ^3.4.1 + match-sorter: ^6.0.2 + peerDependencies: + react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + react-dom: + optional: true + react-native: + optional: true + checksum: 0b86a33b860c092d36e269db1331afbf0df5b720ea746c9093cd8241204a076ff404affb8b4dae08904e3714545d4bd8920babe2a6e5ee9660d94bbcdbeb8072 + languageName: node + linkType: hard + "react-query@npm:3.39.3": version: 3.39.3 resolution: "react-query@npm:3.39.3" @@ -22604,6 +23170,25 @@ __metadata: languageName: node linkType: hard +"react-remove-scroll@npm:^2.5.6": + version: 2.5.7 + resolution: "react-remove-scroll@npm:2.5.7" + dependencies: + react-remove-scroll-bar: ^2.3.4 + react-style-singleton: ^2.2.1 + tslib: ^2.1.0 + use-callback-ref: ^1.3.0 + use-sidecar: ^1.1.2 + peerDependencies: + "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + peerDependenciesMeta: + "@types/react": + optional: true + checksum: e0dbb6856beaed2cff4996d9ca62d775686ff72e3e9de34043034d932223b588993b2fc7a18644750dd3d73eb19bd3f2cedb8d91f0e424c1ef8403010da24b1d + languageName: node + linkType: hard + "react-responsive@npm:^9.0.2": version: 9.0.2 resolution: "react-responsive@npm:9.0.2" @@ -22752,6 +23337,16 @@ __metadata: languageName: node linkType: hard +"react@npm:^17.0.2": + version: 17.0.2 + resolution: "react@npm:17.0.2" + dependencies: + loose-envify: ^1.1.0 + object-assign: ^4.1.1 + checksum: b254cc17ce3011788330f7bbf383ab653c6848902d7936a87b09d835d091e3f295f7e9dd1597c6daac5dc80f90e778c8230218ba8ad599f74adcc11e33b9d61b + languageName: node + linkType: hard + "react@npm:^18.2.0": version: 18.2.0 resolution: "react@npm:18.2.0" @@ -23867,6 +24462,16 @@ __metadata: languageName: node linkType: hard +"scheduler@npm:^0.20.2": + version: 0.20.2 + resolution: "scheduler@npm:0.20.2" + dependencies: + loose-envify: ^1.1.0 + object-assign: ^4.1.1 + checksum: c4b35cf967c8f0d3e65753252d0f260271f81a81e427241295c5a7b783abf4ea9e905f22f815ab66676f5313be0a25f47be582254db8f9241b259213e999b8fc + languageName: node + linkType: hard + "scheduler@npm:^0.23.0": version: 0.23.0 resolution: "scheduler@npm:0.23.0" @@ -23876,6 +24481,18 @@ __metadata: languageName: node linkType: hard +"schema-utils@npm:4.0.0": + version: 4.0.0 + resolution: "schema-utils@npm:4.0.0" + dependencies: + "@types/json-schema": ^7.0.9 + ajv: ^8.8.0 + ajv-formats: ^2.1.1 + ajv-keywords: ^5.0.0 + checksum: c843e92fdd1a5c145dbb6ffdae33e501867f9703afac67bdf35a685e49f85b1dcc10ea250033175a64bd9d31f0555bc6785b8359da0c90bcea30cf6dfbb55a8f + languageName: node + linkType: hard + "schema-utils@npm:^3.0.0, schema-utils@npm:^3.1.1, schema-utils@npm:^3.2.0": version: 3.3.0 resolution: "schema-utils@npm:3.3.0" @@ -23931,7 +24548,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.3.0, semver@npm:^5.4.0, semver@npm:^5.5.0, semver@npm:^5.6.0": +"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.3.0, semver@npm:^5.5.0, semver@npm:^5.6.0": version: 5.7.1 resolution: "semver@npm:5.7.1" bin: @@ -23949,6 +24566,17 @@ __metadata: languageName: node linkType: hard +"semver@npm:7.3.8": + version: 7.3.8 + resolution: "semver@npm:7.3.8" + dependencies: + lru-cache: ^6.0.0 + bin: + semver: bin/semver.js + checksum: ba9c7cbbf2b7884696523450a61fee1a09930d888b7a8d7579025ad93d459b2d1949ee5bbfeb188b2be5f4ac163544c5e98491ad6152df34154feebc2cc337c1 + languageName: node + linkType: hard + "semver@npm:7.5.1": version: 7.5.1 resolution: "semver@npm:7.5.1" @@ -24704,15 +25332,6 @@ __metadata: languageName: node linkType: hard -"stack-utils@npm:^2.0.3": - version: 2.0.6 - resolution: "stack-utils@npm:2.0.6" - dependencies: - escape-string-regexp: ^2.0.0 - checksum: 052bf4d25bbf5f78e06c1d5e67de2e088b06871fa04107ca8d3f0e9d9263326e2942c8bedee3545795fc77d787d443a538345eef74db2f8e35db3558c6f91ff7 - languageName: node - linkType: hard - "stackframe@npm:^1.3.4": version: 1.3.4 resolution: "stackframe@npm:1.3.4" @@ -26216,7 +26835,7 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^2.18.0": +"type-fest@npm:^2.0.0, type-fest@npm:^2.18.0": version: 2.19.0 resolution: "type-fest@npm:2.19.0" checksum: a4ef07ece297c9fba78fc1bd6d85dff4472fe043ede98bd4710d2615d15776902b595abf62bd78339ed6278f021235fb28a96361f8be86ed754f778973a0d278 @@ -26253,6 +26872,16 @@ __metadata: languageName: node linkType: hard +"typescript@npm:5.0.4": + version: 5.0.4 + resolution: "typescript@npm:5.0.4" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 82b94da3f4604a8946da585f7d6c3025fff8410779e5bde2855ab130d05e4fd08938b9e593b6ebed165bda6ad9292b230984f10952cf82f0a0ca07bbeaa08172 + languageName: node + linkType: hard + "typescript@npm:5.1.3": version: 5.1.3 resolution: "typescript@npm:5.1.3" @@ -26273,6 +26902,16 @@ __metadata: languageName: node linkType: hard +"typescript@npm:^5.0.4": + version: 5.2.2 + resolution: "typescript@npm:5.2.2" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 7912821dac4d962d315c36800fe387cdc0a6298dba7ec171b350b4a6e988b51d7b8f051317786db1094bd7431d526b648aba7da8236607febb26cf5b871d2d3c + languageName: node + linkType: hard + "typescript@npm:~3.8.3": version: 3.8.3 resolution: "typescript@npm:3.8.3" @@ -26283,6 +26922,16 @@ __metadata: languageName: node linkType: hard +"typescript@patch:typescript@5.0.4#~builtin": + version: 5.0.4 + resolution: "typescript@patch:typescript@npm%3A5.0.4#~builtin::version=5.0.4&hash=b5f058" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: d26b6ba97b6d163c55dbdffd9bbb4c211667ebebc743accfeb2c8c0154aace7afd097b51165a72a5bad2cf65a4612259344ff60f8e642362aa1695c760d303ac + languageName: node + linkType: hard + "typescript@patch:typescript@5.1.3#~builtin": version: 5.1.3 resolution: "typescript@patch:typescript@npm%3A5.1.3#~builtin::version=5.1.3&hash=5da071" @@ -26303,6 +26952,16 @@ __metadata: languageName: node linkType: hard +"typescript@patch:typescript@^5.0.4#~builtin": + version: 5.2.2 + resolution: "typescript@patch:typescript@npm%3A5.2.2#~builtin::version=5.2.2&hash=14eedb" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 07106822b4305de3f22835cbba949a2b35451cad50888759b6818421290ff95d522b38ef7919e70fb381c5fe9c1c643d7dea22c8b31652a717ddbd57b7f4d554 + languageName: node + linkType: hard + "typescript@patch:typescript@~3.8.3#~builtin": version: 3.8.3 resolution: "typescript@patch:typescript@npm%3A3.8.3#~builtin::version=3.8.3&hash=c44097" @@ -26336,6 +26995,20 @@ __metadata: languageName: node linkType: hard +"umzug@npm:3.1.1": + version: 3.1.1 + resolution: "umzug@npm:3.1.1" + dependencies: + "@rushstack/ts-command-line": ^4.7.7 + emittery: ^0.10.2 + fs-jetpack: ^4.1.0 + glob: ^7.1.6 + pony-cause: ^1.1.1 + type-fest: ^2.0.0 + checksum: 5ade702c7621c0d1b4ec31d7edc93c39bdf309d8e02f07224d0601d87d5e239679c832b32fad6331716407ada89da9effc0515faf1890ed203b8521c9023fd3d + languageName: node + linkType: hard + "umzug@npm:3.2.1": version: 3.2.1 resolution: "umzug@npm:3.2.1" @@ -27385,6 +28058,43 @@ __metadata: languageName: node linkType: hard +"webpack@npm:^5.82.0": + version: 5.89.0 + resolution: "webpack@npm:5.89.0" + dependencies: + "@types/eslint-scope": ^3.7.3 + "@types/estree": ^1.0.0 + "@webassemblyjs/ast": ^1.11.5 + "@webassemblyjs/wasm-edit": ^1.11.5 + "@webassemblyjs/wasm-parser": ^1.11.5 + acorn: ^8.7.1 + acorn-import-assertions: ^1.9.0 + browserslist: ^4.14.5 + chrome-trace-event: ^1.0.2 + enhanced-resolve: ^5.15.0 + es-module-lexer: ^1.2.1 + eslint-scope: 5.1.1 + events: ^3.2.0 + glob-to-regexp: ^0.4.1 + graceful-fs: ^4.2.9 + json-parse-even-better-errors: ^2.3.1 + loader-runner: ^4.2.0 + mime-types: ^2.1.27 + neo-async: ^2.6.2 + schema-utils: ^3.2.0 + tapable: ^2.1.1 + terser-webpack-plugin: ^5.3.7 + watchpack: ^2.4.0 + webpack-sources: ^3.2.3 + peerDependenciesMeta: + webpack-cli: + optional: true + bin: + webpack: bin/webpack.js + checksum: 43fe0dbc30e168a685ef5a86759d5016a705f6563b39a240aa00826a80637d4a3deeb8062e709d6a4b05c63e796278244c84b04174704dc4a37bedb0f565c5ed + languageName: node + linkType: hard + "webpack@npm:^5.86.0": version: 5.88.1 resolution: "webpack@npm:5.88.1"