chore: :arrow_up: Upgrade dependencies
@@ -28,29 +28,29 @@ ".cache"
] }, "dependencies": { - "@strapi/plugin-graphql": "4.25.8", - "@strapi/plugin-i18n": "4.25.8", - "@strapi/plugin-sentry": "^4.25.8", - "@strapi/plugin-users-permissions": "4.25.8", - "@strapi/provider-email-nodemailer": "^4.25.8", - "@strapi/strapi": "4.25.8", + "@strapi/plugin-graphql": "4.25.16", + "@strapi/plugin-i18n": "4.25.16", + "@strapi/plugin-sentry": "^4.25.16", + "@strapi/plugin-users-permissions": "4.25.16", + "@strapi/provider-email-nodemailer": "^4.25.16", + "@strapi/strapi": "4.25.16", "marked": "^12.0.2", "moment": "^2.30.1", - "pg": "8.12.0", + "pg": "8.13.1", "react": "^18.3.1", "react-dom": "^18.3.1", "react-router-dom": "^5.3.4", "strapi-plugin-init-admin-user": "^0.2.3", "strapi-plugin-multi-select": "^1.2.3", "stripe": "^14.25.0", - "styled-components": "^5.3.11" + "styled-components": "^5.2.1" }, "devDependencies": { - "@types/react": "^18.3.4", - "@types/react-dom": "^18.3.0", - "@types/uuid": "^9.0.8", + "@types/react": "^18.3.12", + "@types/react-dom": "^18.3.1", + "@types/uuid": "^10.0.0", "babel-eslint": "^10.1.0", - "eslint": "^9.9.0", + "eslint": "^9.15.0", "faker": "^6.6.6", "jest": "^29.7.0", "sqlite3": "^5.1.7"
@@ -1,4 +1,4 @@
-import type { Schema, Attribute } from '@strapi/strapi'; +import type { Attribute, Schema } from '@strapi/strapi'; declare module '@strapi/types' { export module Shared {}
@@ -1,13 +1,13 @@
-import type { Schema, Attribute } from '@strapi/strapi'; +import type { Attribute, Schema } from '@strapi/strapi'; -export interface AdminPermission extends Schema.CollectionType { - collectionName: 'admin_permissions'; +export interface AdminApiToken extends Schema.CollectionType { + collectionName: 'strapi_api_tokens'; info: { - name: 'Permission'; description: ''; - singularName: 'permission'; - pluralName: 'permissions'; - displayName: 'Permission'; + displayName: 'Api Token'; + name: 'Api Token'; + pluralName: 'api-tokens'; + singularName: 'api-token'; }; pluginOptions: { 'content-manager': {@@ -18,192 +18,41 @@ visible: false;
}; }; attributes: { - action: Attribute.String & + accessKey: Attribute.String & Attribute.Required & Attribute.SetMinMaxLength<{ minLength: 1; }>; - actionParameters: Attribute.JSON & Attribute.DefaultTo<{}>; - subject: Attribute.String & - Attribute.SetMinMaxLength<{ - minLength: 1; - }>; - properties: Attribute.JSON & Attribute.DefaultTo<{}>; - conditions: Attribute.JSON & Attribute.DefaultTo<[]>; - role: Attribute.Relation<'admin::permission', 'manyToOne', 'admin::role'>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation< - 'admin::permission', + 'admin::api-token', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< - 'admin::permission', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; - }; -} - -export interface AdminUser extends Schema.CollectionType { - collectionName: 'admin_users'; - info: { - name: 'User'; - description: ''; - singularName: 'user'; - pluralName: 'users'; - displayName: 'User'; - }; - pluginOptions: { - 'content-manager': { - visible: false; - }; - 'content-type-builder': { - visible: false; - }; - }; - attributes: { - firstname: Attribute.String & + description: Attribute.String & Attribute.SetMinMaxLength<{ minLength: 1; - }>; - lastname: Attribute.String & - Attribute.SetMinMaxLength<{ - minLength: 1; - }>; - username: Attribute.String; - email: Attribute.Email & - Attribute.Required & - Attribute.Private & - Attribute.Unique & - Attribute.SetMinMaxLength<{ - minLength: 6; - }>; - password: Attribute.Password & - Attribute.Private & - Attribute.SetMinMaxLength<{ - minLength: 6; - }>; - resetPasswordToken: Attribute.String & Attribute.Private; - registrationToken: Attribute.String & Attribute.Private; - isActive: Attribute.Boolean & - Attribute.Private & - Attribute.DefaultTo<false>; - roles: Attribute.Relation<'admin::user', 'manyToMany', 'admin::role'> & - Attribute.Private; - blocked: Attribute.Boolean & Attribute.Private & Attribute.DefaultTo<false>; - preferedLanguage: Attribute.String; - createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation<'admin::user', 'oneToOne', 'admin::user'> & - Attribute.Private; - updatedBy: Attribute.Relation<'admin::user', 'oneToOne', 'admin::user'> & - Attribute.Private; - }; -} - -export interface AdminRole extends Schema.CollectionType { - collectionName: 'admin_roles'; - info: { - name: 'Role'; - description: ''; - singularName: 'role'; - pluralName: 'roles'; - displayName: 'Role'; - }; - pluginOptions: { - 'content-manager': { - visible: false; - }; - 'content-type-builder': { - visible: false; - }; - }; - attributes: { + }> & + Attribute.DefaultTo<''>; + expiresAt: Attribute.DateTime; + lastUsedAt: Attribute.DateTime; + lifespan: Attribute.BigInteger; name: Attribute.String & Attribute.Required & Attribute.Unique & Attribute.SetMinMaxLength<{ minLength: 1; }>; - code: Attribute.String & - Attribute.Required & - Attribute.Unique & - Attribute.SetMinMaxLength<{ - minLength: 1; - }>; - description: Attribute.String; - users: Attribute.Relation<'admin::role', 'manyToMany', 'admin::user'>; permissions: Attribute.Relation< - 'admin::role', + 'admin::api-token', 'oneToMany', - 'admin::permission' + 'admin::api-token-permission' >; - createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation<'admin::role', 'oneToOne', 'admin::user'> & - Attribute.Private; - updatedBy: Attribute.Relation<'admin::role', 'oneToOne', 'admin::user'> & - Attribute.Private; - }; -} - -export interface AdminApiToken extends Schema.CollectionType { - collectionName: 'strapi_api_tokens'; - 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: Attribute.String & - Attribute.Required & - Attribute.Unique & - Attribute.SetMinMaxLength<{ - minLength: 1; - }>; - description: Attribute.String & - Attribute.SetMinMaxLength<{ - minLength: 1; - }> & - Attribute.DefaultTo<''>; type: Attribute.Enumeration<['read-only', 'full-access', 'custom']> & Attribute.Required & Attribute.DefaultTo<'read-only'>; - accessKey: Attribute.String & - Attribute.Required & - Attribute.SetMinMaxLength<{ - minLength: 1; - }>; - lastUsedAt: Attribute.DateTime; - permissions: Attribute.Relation< - 'admin::api-token', - 'oneToMany', - 'admin::api-token-permission' - >; - expiresAt: Attribute.DateTime; - lifespan: Attribute.BigInteger; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'admin::api-token', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; updatedBy: Attribute.Relation< 'admin::api-token', 'oneToOne',@@ -216,11 +65,11 @@
export interface AdminApiTokenPermission extends Schema.CollectionType { collectionName: 'strapi_api_token_permissions'; info: { - name: 'API Token Permission'; description: ''; - singularName: 'api-token-permission'; - pluralName: 'api-token-permissions'; displayName: 'API Token Permission'; + name: 'API Token Permission'; + pluralName: 'api-token-permissions'; + singularName: 'api-token-permission'; }; pluginOptions: { 'content-manager': {@@ -236,19 +85,19 @@ Attribute.Required &
Attribute.SetMinMaxLength<{ minLength: 1; }>; - token: Attribute.Relation< - 'admin::api-token-permission', - 'manyToOne', - 'admin::api-token' - >; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation< 'admin::api-token-permission', 'oneToOne', 'admin::user' > & Attribute.Private; + token: Attribute.Relation< + 'admin::api-token-permission', + 'manyToOne', + 'admin::api-token' + >; + updatedAt: Attribute.DateTime; updatedBy: Attribute.Relation< 'admin::api-token-permission', 'oneToOne',@@ -258,14 +107,14 @@ Attribute.Private;
}; } -export interface AdminTransferToken extends Schema.CollectionType { - collectionName: 'strapi_transfer_tokens'; +export interface AdminPermission extends Schema.CollectionType { + collectionName: 'admin_permissions'; info: { - name: 'Transfer Token'; - singularName: 'transfer-token'; - pluralName: 'transfer-tokens'; - displayName: 'Transfer Token'; description: ''; + displayName: 'Permission'; + name: 'Permission'; + pluralName: 'permissions'; + singularName: 'permission'; }; pluginOptions: { 'content-manager': {@@ -276,85 +125,29 @@ visible: false;
}; }; attributes: { - name: Attribute.String & - Attribute.Required & - Attribute.Unique & - Attribute.SetMinMaxLength<{ - minLength: 1; - }>; - description: Attribute.String & - Attribute.SetMinMaxLength<{ - minLength: 1; - }> & - Attribute.DefaultTo<''>; - accessKey: Attribute.String & + action: Attribute.String & Attribute.Required & Attribute.SetMinMaxLength<{ minLength: 1; }>; - lastUsedAt: Attribute.DateTime; - permissions: Attribute.Relation< - 'admin::transfer-token', - 'oneToMany', - 'admin::transfer-token-permission' - >; - expiresAt: Attribute.DateTime; - lifespan: Attribute.BigInteger; + actionParameters: Attribute.JSON & Attribute.DefaultTo<{}>; + conditions: Attribute.JSON & Attribute.DefaultTo<[]>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation< - 'admin::transfer-token', + 'admin::permission', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< - 'admin::transfer-token', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; - }; -} - -export interface AdminTransferTokenPermission extends Schema.CollectionType { - collectionName: 'strapi_transfer_token_permissions'; - 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: Attribute.String & - Attribute.Required & + properties: Attribute.JSON & Attribute.DefaultTo<{}>; + role: Attribute.Relation<'admin::permission', 'manyToOne', 'admin::role'>; + subject: Attribute.String & Attribute.SetMinMaxLength<{ minLength: 1; }>; - token: Attribute.Relation< - 'admin::transfer-token-permission', - 'manyToOne', - 'admin::transfer-token' - >; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'admin::transfer-token-permission', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; updatedBy: Attribute.Relation< - 'admin::transfer-token-permission', + 'admin::permission', 'oneToOne', 'admin::user' > &@@ -362,13 +155,14 @@ Attribute.Private;
}; } -export interface PluginUploadFile extends Schema.CollectionType { - collectionName: 'files'; +export interface AdminRole extends Schema.CollectionType { + collectionName: 'admin_roles'; info: { - singularName: 'file'; - pluralName: 'files'; - displayName: 'File'; description: ''; + displayName: 'Role'; + name: 'Role'; + pluralName: 'roles'; + singularName: 'role'; }; pluginOptions: { 'content-manager': {@@ -379,127 +173,42 @@ visible: false;
}; }; attributes: { - name: Attribute.String & Attribute.Required; - alternativeText: Attribute.String; - caption: Attribute.String; - width: Attribute.Integer; - height: Attribute.Integer; - formats: Attribute.JSON; - hash: Attribute.String & Attribute.Required; - ext: Attribute.String; - mime: Attribute.String & Attribute.Required; - size: Attribute.Decimal & Attribute.Required; - url: Attribute.String & Attribute.Required; - previewUrl: Attribute.String; - provider: Attribute.String & Attribute.Required; - provider_metadata: Attribute.JSON; - related: Attribute.Relation<'plugin::upload.file', 'morphToMany'>; - folder: Attribute.Relation< - 'plugin::upload.file', - 'manyToOne', - 'plugin::upload.folder' - > & - Attribute.Private; - folderPath: Attribute.String & + code: Attribute.String & Attribute.Required & - Attribute.Private & - Attribute.SetMinMax< - { - min: 1; - }, - number - >; + Attribute.Unique & + Attribute.SetMinMaxLength<{ + minLength: 1; + }>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'plugin::upload.file', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; - updatedBy: Attribute.Relation< - 'plugin::upload.file', - 'oneToOne', - 'admin::user' - > & + createdBy: Attribute.Relation<'admin::role', 'oneToOne', 'admin::user'> & Attribute.Private; - }; -} - -export interface PluginUploadFolder extends Schema.CollectionType { - collectionName: 'upload_folders'; - info: { - singularName: 'folder'; - pluralName: 'folders'; - displayName: 'Folder'; - }; - pluginOptions: { - 'content-manager': { - visible: false; - }; - 'content-type-builder': { - visible: false; - }; - }; - attributes: { + description: Attribute.String; name: Attribute.String & Attribute.Required & - Attribute.SetMinMax< - { - min: 1; - }, - number - >; - pathId: Attribute.Integer & Attribute.Required & Attribute.Unique; - parent: Attribute.Relation< - 'plugin::upload.folder', - 'manyToOne', - 'plugin::upload.folder' - >; - children: Attribute.Relation< - 'plugin::upload.folder', - 'oneToMany', - 'plugin::upload.folder' - >; - files: Attribute.Relation< - 'plugin::upload.folder', + Attribute.Unique & + Attribute.SetMinMaxLength<{ + minLength: 1; + }>; + permissions: Attribute.Relation< + 'admin::role', 'oneToMany', - 'plugin::upload.file' + 'admin::permission' >; - path: Attribute.String & - Attribute.Required & - Attribute.SetMinMax< - { - min: 1; - }, - number - >; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'plugin::upload.folder', - 'oneToOne', - 'admin::user' - > & + updatedBy: Attribute.Relation<'admin::role', 'oneToOne', 'admin::user'> & Attribute.Private; - updatedBy: Attribute.Relation< - 'plugin::upload.folder', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; + users: Attribute.Relation<'admin::role', 'manyToMany', 'admin::user'>; }; } -export interface PluginContentReleasesRelease extends Schema.CollectionType { - collectionName: 'strapi_releases'; +export interface AdminTransferToken extends Schema.CollectionType { + collectionName: 'strapi_transfer_tokens'; info: { - singularName: 'release'; - pluralName: 'releases'; - displayName: 'Release'; - }; - options: { - draftAndPublish: false; + description: ''; + displayName: 'Transfer Token'; + name: 'Transfer Token'; + pluralName: 'transfer-tokens'; + singularName: 'transfer-token'; }; pluginOptions: { 'content-manager': {@@ -510,79 +219,40 @@ visible: false;
}; }; attributes: { - name: Attribute.String & Attribute.Required; - releasedAt: Attribute.DateTime; - scheduledAt: Attribute.DateTime; - timezone: Attribute.String; - status: Attribute.Enumeration< - ['ready', 'blocked', 'failed', 'done', 'empty'] - > & - Attribute.Required; - actions: Attribute.Relation< - 'plugin::content-releases.release', - 'oneToMany', - 'plugin::content-releases.release-action' - >; + accessKey: Attribute.String & + Attribute.Required & + Attribute.SetMinMaxLength<{ + minLength: 1; + }>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation< - 'plugin::content-releases.release', + 'admin::transfer-token', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< - 'plugin::content-releases.release', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; - }; -} - -export interface PluginContentReleasesReleaseAction - extends Schema.CollectionType { - collectionName: 'strapi_release_actions'; - info: { - singularName: 'release-action'; - pluralName: 'release-actions'; - displayName: 'Release Action'; - }; - options: { - draftAndPublish: false; - }; - pluginOptions: { - 'content-manager': { - visible: false; - }; - 'content-type-builder': { - visible: false; - }; - }; - attributes: { - type: Attribute.Enumeration<['publish', 'unpublish']> & Attribute.Required; - entry: Attribute.Relation< - 'plugin::content-releases.release-action', - 'morphToOne' + description: Attribute.String & + Attribute.SetMinMaxLength<{ + minLength: 1; + }> & + Attribute.DefaultTo<''>; + expiresAt: Attribute.DateTime; + lastUsedAt: Attribute.DateTime; + lifespan: Attribute.BigInteger; + name: Attribute.String & + Attribute.Required & + Attribute.Unique & + Attribute.SetMinMaxLength<{ + minLength: 1; + }>; + permissions: Attribute.Relation< + 'admin::transfer-token', + 'oneToMany', + 'admin::transfer-token-permission' >; - contentType: Attribute.String & Attribute.Required; - locale: Attribute.String; - release: Attribute.Relation< - 'plugin::content-releases.release-action', - 'manyToOne', - 'plugin::content-releases.release' - >; - isEntryValid: Attribute.Boolean; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'plugin::content-releases.release-action', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; updatedBy: Attribute.Relation< - 'plugin::content-releases.release-action', + 'admin::transfer-token', 'oneToOne', 'admin::user' > &@@ -590,17 +260,14 @@ Attribute.Private;
}; } -export interface PluginI18NLocale extends Schema.CollectionType { - collectionName: 'i18n_locale'; +export interface AdminTransferTokenPermission extends Schema.CollectionType { + collectionName: 'strapi_transfer_token_permissions'; info: { - singularName: 'locale'; - pluralName: 'locales'; - collectionName: 'locales'; - displayName: 'Locale'; description: ''; - }; - options: { - draftAndPublish: false; + displayName: 'Transfer Token Permission'; + name: 'Transfer Token Permission'; + pluralName: 'transfer-token-permissions'; + singularName: 'transfer-token-permission'; }; pluginOptions: { 'content-manager': {@@ -611,67 +278,26 @@ visible: false;
}; }; attributes: { - name: Attribute.String & - Attribute.SetMinMax< - { - min: 1; - max: 50; - }, - number - >; - code: Attribute.String & Attribute.Unique; + action: Attribute.String & + Attribute.Required & + Attribute.SetMinMaxLength<{ + minLength: 1; + }>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation< - 'plugin::i18n.locale', + 'admin::transfer-token-permission', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< - 'plugin::i18n.locale', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; - }; -} - -export interface PluginUsersPermissionsPermission - extends Schema.CollectionType { - collectionName: 'up_permissions'; - info: { - name: 'permission'; - description: ''; - singularName: 'permission'; - pluralName: 'permissions'; - displayName: 'Permission'; - }; - pluginOptions: { - 'content-manager': { - visible: false; - }; - 'content-type-builder': { - visible: false; - }; - }; - attributes: { - action: Attribute.String & Attribute.Required; - role: Attribute.Relation< - 'plugin::users-permissions.permission', + token: Attribute.Relation< + 'admin::transfer-token-permission', 'manyToOne', - 'plugin::users-permissions.role' + 'admin::transfer-token' >; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'plugin::users-permissions.permission', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; updatedBy: Attribute.Relation< - 'plugin::users-permissions.permission', + 'admin::transfer-token-permission', 'oneToOne', 'admin::user' > &@@ -679,14 +305,14 @@ Attribute.Private;
}; } -export interface PluginUsersPermissionsRole extends Schema.CollectionType { - collectionName: 'up_roles'; +export interface AdminUser extends Schema.CollectionType { + collectionName: 'admin_users'; info: { - name: 'role'; description: ''; - singularName: 'role'; - pluralName: 'roles'; - displayName: 'Role'; + displayName: 'User'; + name: 'User'; + pluralName: 'users'; + singularName: 'user'; }; pluginOptions: { 'content-manager': {@@ -697,203 +323,122 @@ visible: false;
}; }; attributes: { - name: Attribute.String & - Attribute.Required & - Attribute.SetMinMaxLength<{ - minLength: 3; - }>; - description: Attribute.String; - type: Attribute.String & Attribute.Unique; - permissions: Attribute.Relation< - 'plugin::users-permissions.role', - 'oneToMany', - 'plugin::users-permissions.permission' - >; - users: Attribute.Relation< - 'plugin::users-permissions.role', - 'oneToMany', - 'plugin::users-permissions.user' - >; + blocked: Attribute.Boolean & Attribute.Private & Attribute.DefaultTo<false>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'plugin::users-permissions.role', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; - updatedBy: Attribute.Relation< - 'plugin::users-permissions.role', - 'oneToOne', - 'admin::user' - > & + createdBy: Attribute.Relation<'admin::user', 'oneToOne', 'admin::user'> & Attribute.Private; - }; -} - -export interface PluginUsersPermissionsUser extends Schema.CollectionType { - collectionName: 'up_users'; - info: { - name: 'user'; - description: ''; - singularName: 'user'; - pluralName: 'users'; - displayName: 'User'; - }; - options: { - draftAndPublish: false; - }; - attributes: { - username: Attribute.String & + email: Attribute.Email & Attribute.Required & + Attribute.Private & Attribute.Unique & Attribute.SetMinMaxLength<{ - minLength: 3; + minLength: 6; }>; - email: Attribute.Email & - Attribute.Required & + firstname: Attribute.String & + Attribute.SetMinMaxLength<{ + minLength: 1; + }>; + isActive: Attribute.Boolean & + Attribute.Private & + Attribute.DefaultTo<false>; + lastname: Attribute.String & Attribute.SetMinMaxLength<{ - minLength: 6; + minLength: 1; }>; - provider: Attribute.String; password: Attribute.Password & Attribute.Private & Attribute.SetMinMaxLength<{ minLength: 6; }>; + preferedLanguage: Attribute.String; + registrationToken: Attribute.String & Attribute.Private; resetPasswordToken: Attribute.String & Attribute.Private; - confirmationToken: Attribute.String & Attribute.Private; - confirmed: Attribute.Boolean & Attribute.DefaultTo<false>; - blocked: Attribute.Boolean & Attribute.Private & Attribute.DefaultTo<false>; - role: Attribute.Relation< - 'plugin::users-permissions.user', - 'manyToOne', - 'plugin::users-permissions.role' - >; - events: Attribute.Relation< - 'plugin::users-permissions.user', - 'manyToMany', - 'api::event.event' - >; - passengers: Attribute.Relation< - 'plugin::users-permissions.user', - 'oneToMany', - 'api::passenger.passenger' - > & + roles: Attribute.Relation<'admin::user', 'manyToMany', 'admin::role'> & Attribute.Private; - vehicles: Attribute.Relation< - 'plugin::users-permissions.user', - 'oneToMany', - 'api::vehicle.vehicle' - >; - firstName: Attribute.String; - lastName: Attribute.String; - onboardingUser: Attribute.Boolean & Attribute.DefaultTo<false>; - onboardingCreator: Attribute.Boolean & Attribute.DefaultTo<false>; - lang: Attribute.Enumeration<['fr', 'en', 'de', 'nl', 'it']> & - Attribute.DefaultTo<'fr'>; - newsletterConsent: Attribute.Boolean & Attribute.DefaultTo<false>; - notificationEnabled: Attribute.Boolean & Attribute.DefaultTo<true>; - notifications: Attribute.Relation< - 'plugin::users-permissions.user', - 'oneToMany', - 'api::notification.notification' - >; - tosAcceptationDate: Attribute.DateTime; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'plugin::users-permissions.user', - 'oneToOne', - 'admin::user' - > & + updatedBy: Attribute.Relation<'admin::user', 'oneToOne', 'admin::user'> & Attribute.Private; - updatedBy: Attribute.Relation< - 'plugin::users-permissions.user', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; + username: Attribute.String; }; } export interface ApiEventEvent extends Schema.CollectionType { collectionName: 'events'; info: { - name: 'event'; description: ''; + displayName: 'Event'; + name: 'event'; + pluralName: 'events'; singularName: 'event'; - pluralName: 'events'; - displayName: 'Event'; }; options: { draftAndPublish: false; }; attributes: { - name: Attribute.String & Attribute.Required; - email: Attribute.String & Attribute.Required; - lang: Attribute.Enumeration<['fr', 'en', 'de', 'nl', 'it']> & - Attribute.DefaultTo<'en'>; - date: Attribute.Date; address: Attribute.Text; - uuid: Attribute.String & Attribute.Unique; + administrators: Attribute.String; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::event.event', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + creator: Attribute.Relation< + 'api::event.event', + 'oneToOne', + 'plugin::users-permissions.user' + >; + date: Attribute.Date; description: Attribute.Text & Attribute.SetMinMaxLength<{ maxLength: 250; }>; + email: Attribute.String & Attribute.Required; + enabled_modules: Attribute.JSON & + Attribute.CustomField< + 'plugin::multi-select.multi-select', + ['caroster-plus'] + >; + lang: Attribute.Enumeration<['fr', 'en', 'de', 'nl', 'it']> & + Attribute.DefaultTo<'en'>; + latitude: Attribute.Float; + longitude: Attribute.Float; + name: Attribute.String & Attribute.Required; newsletter: Attribute.Boolean & Attribute.Private; - users: Attribute.Relation< + passengers: Attribute.Relation< 'api::event.event', - 'manyToMany', - 'plugin::users-permissions.user' + 'oneToMany', + 'api::passenger.passenger' >; travels: Attribute.Relation< 'api::event.event', 'oneToMany', 'api::travel.travel' >; - passengers: Attribute.Relation< - 'api::event.event', - 'oneToMany', - 'api::passenger.passenger' - >; - latitude: Attribute.Float; - longitude: Attribute.Float; - enabled_modules: Attribute.JSON & - Attribute.CustomField< - 'plugin::multi-select.multi-select', - ['caroster-plus'] - >; - administrators: Attribute.String; - creator: Attribute.Relation< - 'api::event.event', - 'oneToOne', - 'plugin::users-permissions.user' - >; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< + updatedBy: Attribute.Relation< 'api::event.event', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< + users: Attribute.Relation< 'api::event.event', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; + 'manyToMany', + 'plugin::users-permissions.user' + >; + uuid: Attribute.String & Attribute.Unique; }; } export interface ApiModuleModule extends Schema.SingleType { collectionName: 'modules'; info: { + description: ''; + displayName: 'Modules'; + pluralName: 'modules'; singularName: 'module'; - pluralName: 'modules'; - displayName: 'Modules'; - description: ''; }; options: { draftAndPublish: false;@@ -904,20 +449,19 @@ localized: true;
}; }; attributes: { - caroster_plus_enabled: Attribute.Boolean & + caroster_plus_description: Attribute.RichText & Attribute.SetPluginOptions<{ i18n: { - localized: false; + localized: true; }; - }> & - Attribute.DefaultTo<false>; - caroster_plus_price: Attribute.Decimal & + }>; + caroster_plus_enabled: Attribute.Boolean & Attribute.SetPluginOptions<{ i18n: { localized: false; }; }> & - Attribute.DefaultTo<0>; + Attribute.DefaultTo<false>; caroster_plus_name: Attribute.String & Attribute.Required & Attribute.SetPluginOptions<{@@ -925,62 +469,77 @@ i18n: {
localized: true; }; }>; - caroster_plus_payment_link_id: Attribute.String & + caroster_plus_payment_link: Attribute.String & Attribute.Required & - Attribute.Private & Attribute.SetPluginOptions<{ i18n: { localized: false; }; }>; - caroster_plus_payment_link: Attribute.String & + caroster_plus_payment_link_id: Attribute.String & Attribute.Required & + Attribute.Private & Attribute.SetPluginOptions<{ i18n: { localized: false; }; }>; - caroster_plus_description: Attribute.RichText & + caroster_plus_price: Attribute.Decimal & Attribute.SetPluginOptions<{ i18n: { - localized: true; + localized: false; }; - }>; + }> & + Attribute.DefaultTo<0>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation< 'api::module.module', 'oneToOne', 'admin::user' > & Attribute.Private; + locale: Attribute.String; + localizations: Attribute.Relation< + 'api::module.module', + 'oneToMany', + 'api::module.module' + >; + updatedAt: Attribute.DateTime; updatedBy: Attribute.Relation< 'api::module.module', 'oneToOne', 'admin::user' > & Attribute.Private; - localizations: Attribute.Relation< - 'api::module.module', - 'oneToMany', - 'api::module.module' - >; - locale: Attribute.String; }; } export interface ApiNotificationNotification extends Schema.CollectionType { collectionName: 'notifications'; info: { + description: ''; + displayName: 'Notification'; + pluralName: 'notifications'; singularName: 'notification'; - pluralName: 'notifications'; - displayName: 'Notification'; - description: ''; }; options: { draftAndPublish: false; }; attributes: { + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::notification.notification', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + event: Attribute.Relation< + 'api::notification.notification', + 'oneToOne', + 'api::event.event' + >; + payload: Attribute.JSON; + read: Attribute.Boolean & Attribute.DefaultTo<false>; type: Attribute.Enumeration< [ 'NewPassengerInYourTrip',@@ -999,55 +558,41 @@ 'EnabledCarosterPlus'
] > & Attribute.Required; - user: Attribute.Relation< - 'api::notification.notification', - 'manyToOne', - 'plugin::users-permissions.user' - >; - event: Attribute.Relation< - 'api::notification.notification', - 'oneToOne', - 'api::event.event' - >; - read: Attribute.Boolean & Attribute.DefaultTo<false>; - payload: Attribute.JSON; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< + updatedBy: Attribute.Relation< 'api::notification.notification', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< + user: Attribute.Relation< 'api::notification.notification', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; + 'manyToOne', + 'plugin::users-permissions.user' + >; }; } export interface ApiPagePage extends Schema.CollectionType { collectionName: 'pages'; info: { + displayName: 'Page'; name: 'page'; + pluralName: 'pages'; singularName: 'page'; - pluralName: 'pages'; - displayName: 'Page'; }; options: { increments: true; timestamps: true; }; attributes: { - name: Attribute.String & Attribute.Required; content: Attribute.RichText; - type: Attribute.Enumeration<['tos']>; createdAt: Attribute.DateTime; - updatedAt: Attribute.DateTime; createdBy: Attribute.Relation<'api::page.page', 'oneToOne', 'admin::user'> & Attribute.Private; + name: Attribute.String & Attribute.Required; + type: Attribute.Enumeration<['tos']>; + updatedAt: Attribute.DateTime; updatedBy: Attribute.Relation<'api::page.page', 'oneToOne', 'admin::user'> & Attribute.Private; };@@ -1056,60 +601,60 @@
export interface ApiPassengerPassenger extends Schema.CollectionType { collectionName: 'passengers'; info: { + description: ''; + displayName: 'Passenger'; name: 'Passenger'; - description: ''; - singularName: 'passenger'; pluralName: 'passengers'; - displayName: 'Passenger'; + singularName: 'passenger'; }; options: { draftAndPublish: false; }; attributes: { - name: Attribute.String & Attribute.Required; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::passenger.passenger', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; email: Attribute.Email; - location: Attribute.String; - user: Attribute.Relation< + event: Attribute.Relation< 'api::passenger.passenger', 'manyToOne', - 'plugin::users-permissions.user' + 'api::event.event' >; + location: Attribute.String; + name: Attribute.String & Attribute.Required; + phone: Attribute.String; + phoneCountry: Attribute.String; travel: Attribute.Relation< 'api::passenger.passenger', 'manyToOne', 'api::travel.travel' >; - event: Attribute.Relation< - 'api::passenger.passenger', - 'manyToOne', - 'api::event.event' - >; - phone: Attribute.String; - phoneCountry: Attribute.String; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'api::passenger.passenger', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; updatedBy: Attribute.Relation< 'api::passenger.passenger', 'oneToOne', 'admin::user' > & Attribute.Private; + user: Attribute.Relation< + 'api::passenger.passenger', + 'manyToOne', + 'plugin::users-permissions.user' + >; }; } export interface ApiSettingSetting extends Schema.SingleType { collectionName: 'settings'; info: { + description: ''; + displayName: 'Settings'; + pluralName: 'settings'; singularName: 'setting'; - pluralName: 'settings'; - displayName: 'Settings'; - description: ''; }; options: { draftAndPublish: false;@@ -1120,37 +665,56 @@ localized: true;
}; }; attributes: { - gtm_id: Attribute.String & + about_link: Attribute.String & Attribute.SetPluginOptions<{ i18n: { localized: false; }; }>; - about_link: Attribute.String & + announcement: Attribute.RichText & Attribute.SetPluginOptions<{ i18n: { - localized: false; + localized: true; }; }>; - announcement: Attribute.RichText & + code_link: Attribute.String & Attribute.SetPluginOptions<{ i18n: { - localized: true; + localized: false; }; }>; - matomo_script_url: Attribute.String & + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::setting.setting', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + data_policy_link: Attribute.String & Attribute.SetPluginOptions<{ i18n: { localized: false; }; }>; - opencollective_link: Attribute.String & + gtm_id: Attribute.String & Attribute.SetPluginOptions<{ i18n: { localized: false; }; }>; - code_link: Attribute.String & + locale: Attribute.String; + localizations: Attribute.Relation< + 'api::setting.setting', + 'oneToMany', + 'api::setting.setting' + >; + matomo_script_url: Attribute.String & + Attribute.SetPluginOptions<{ + i18n: { + localized: false; + }; + }>; + opencollective_link: Attribute.String & Attribute.SetPluginOptions<{ i18n: { localized: false;@@ -1168,123 +732,106 @@ i18n: {
localized: false; }; }>; - data_policy_link: Attribute.String & - Attribute.SetPluginOptions<{ - i18n: { - localized: false; - }; - }>; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< - 'api::setting.setting', - 'oneToOne', - 'admin::user' - > & - Attribute.Private; updatedBy: Attribute.Relation< 'api::setting.setting', 'oneToOne', 'admin::user' > & Attribute.Private; - localizations: Attribute.Relation< - 'api::setting.setting', - 'oneToMany', - 'api::setting.setting' - >; - locale: Attribute.String; }; } export interface ApiTravelTravel extends Schema.CollectionType { collectionName: 'travels'; info: { - name: 'travel'; description: ''; + displayName: 'Travel'; + name: 'travel'; + pluralName: 'travels'; singularName: 'travel'; - pluralName: 'travels'; - displayName: 'Travel'; }; options: { draftAndPublish: false; }; attributes: { - meeting: Attribute.String; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::travel.travel', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + departureDate: Attribute.Date; + departureTime: Attribute.String; details: Attribute.Text; - vehicleName: Attribute.String; - seats: Attribute.Integer & - Attribute.SetMinMax< - { - min: 0; - }, - number - > & - Attribute.DefaultTo<4>; - phone_number: Attribute.String; event: Attribute.Relation< 'api::travel.travel', 'manyToOne', 'api::event.event' >; + meeting: Attribute.String; + meeting_latitude: Attribute.Float; + meeting_longitude: Attribute.Float; passengers: Attribute.Relation< 'api::travel.travel', 'oneToMany', 'api::passenger.passenger' >; - meeting_latitude: Attribute.Float; - meeting_longitude: Attribute.Float; - user: Attribute.Relation< - 'api::travel.travel', - 'oneToOne', - 'plugin::users-permissions.user' - >; - departureDate: Attribute.Date; - departureTime: Attribute.String; + phone_number: Attribute.String; phoneCountry: Attribute.String; - createdAt: Attribute.DateTime; + seats: Attribute.Integer & + Attribute.SetMinMax< + { + min: 0; + }, + number + > & + Attribute.DefaultTo<4>; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< + updatedBy: Attribute.Relation< 'api::travel.travel', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< + user: Attribute.Relation< 'api::travel.travel', 'oneToOne', - 'admin::user' - > & - Attribute.Private; + 'plugin::users-permissions.user' + >; + vehicleName: Attribute.String; }; } export interface ApiTripAlertTripAlert extends Schema.CollectionType { collectionName: 'trip_alerts'; info: { - singularName: 'trip-alert'; - pluralName: 'trip-alerts'; + description: ''; displayName: 'TripAlert'; - description: ''; + pluralName: 'trip-alerts'; + singularName: 'trip-alert'; }; options: { draftAndPublish: false; }; attributes: { - event: Attribute.Relation< + address: Attribute.String; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< 'api::trip-alert.trip-alert', 'oneToOne', - 'api::event.event' - >; - user: Attribute.Relation< + 'admin::user' + > & + Attribute.Private; + enabled: Attribute.Boolean & Attribute.DefaultTo<true>; + event: Attribute.Relation< 'api::trip-alert.trip-alert', 'oneToOne', - 'plugin::users-permissions.user' + 'api::event.event' >; latitude: Attribute.Float; longitude: Attribute.Float; - enabled: Attribute.Boolean & Attribute.DefaultTo<true>; - address: Attribute.String; radius: Attribute.Float & Attribute.SetMinMax< {@@ -1292,37 +839,44 @@ min: 0;
}, number >; - createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; - createdBy: Attribute.Relation< + updatedBy: Attribute.Relation< 'api::trip-alert.trip-alert', 'oneToOne', 'admin::user' > & Attribute.Private; - updatedBy: Attribute.Relation< + user: Attribute.Relation< 'api::trip-alert.trip-alert', 'oneToOne', - 'admin::user' - > & - Attribute.Private; + 'plugin::users-permissions.user' + >; }; } export interface ApiVehicleVehicle extends Schema.CollectionType { collectionName: 'vehicles'; info: { - name: 'vehicle'; description: ''; + displayName: 'Vehicle'; + name: 'vehicle'; + pluralName: 'vehicles'; singularName: 'vehicle'; - pluralName: 'vehicles'; - displayName: 'Vehicle'; }; options: { draftAndPublish: false; }; attributes: { + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::vehicle.vehicle', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; name: Attribute.String & Attribute.Required; + phone_number: Attribute.String; + phoneCountry: Attribute.String; seats: Attribute.Integer & Attribute.SetMinMax< {@@ -1331,48 +885,486 @@ },
number > & Attribute.DefaultTo<4>; - phone_number: Attribute.String; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'api::vehicle.vehicle', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; user: Attribute.Relation< 'api::vehicle.vehicle', 'manyToOne', 'plugin::users-permissions.user' >; - phoneCountry: Attribute.String; + }; +} + +export interface PluginContentReleasesRelease extends Schema.CollectionType { + collectionName: 'strapi_releases'; + info: { + displayName: 'Release'; + pluralName: 'releases'; + singularName: 'release'; + }; + options: { + draftAndPublish: false; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + actions: Attribute.Relation< + 'plugin::content-releases.release', + 'oneToMany', + 'plugin::content-releases.release-action' + >; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::content-releases.release', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + name: Attribute.String & Attribute.Required; + releasedAt: Attribute.DateTime; + scheduledAt: Attribute.DateTime; + status: Attribute.Enumeration< + ['ready', 'blocked', 'failed', 'done', 'empty'] + > & + Attribute.Required; + timezone: Attribute.String; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::content-releases.release', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + }; +} + +export interface PluginContentReleasesReleaseAction + extends Schema.CollectionType { + collectionName: 'strapi_release_actions'; + info: { + displayName: 'Release Action'; + pluralName: 'release-actions'; + singularName: 'release-action'; + }; + options: { + draftAndPublish: false; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + contentType: Attribute.String & Attribute.Required; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::content-releases.release-action', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + entry: Attribute.Relation< + 'plugin::content-releases.release-action', + 'morphToOne' + >; + isEntryValid: Attribute.Boolean; + locale: Attribute.String; + release: Attribute.Relation< + 'plugin::content-releases.release-action', + 'manyToOne', + 'plugin::content-releases.release' + >; + type: Attribute.Enumeration<['publish', 'unpublish']> & Attribute.Required; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::content-releases.release-action', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + }; +} + +export interface PluginI18NLocale extends Schema.CollectionType { + collectionName: 'i18n_locale'; + info: { + collectionName: 'locales'; + description: ''; + displayName: 'Locale'; + pluralName: 'locales'; + singularName: 'locale'; + }; + options: { + draftAndPublish: false; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + code: Attribute.String & Attribute.Unique; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::i18n.locale', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + name: Attribute.String & + Attribute.SetMinMax< + { + max: 50; + min: 1; + }, + number + >; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::i18n.locale', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + }; +} + +export interface PluginUploadFile extends Schema.CollectionType { + collectionName: 'files'; + info: { + description: ''; + displayName: 'File'; + pluralName: 'files'; + singularName: 'file'; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + alternativeText: Attribute.String; + caption: Attribute.String; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::upload.file', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + ext: Attribute.String; + folder: Attribute.Relation< + 'plugin::upload.file', + 'manyToOne', + 'plugin::upload.folder' + > & + Attribute.Private; + folderPath: Attribute.String & + Attribute.Required & + Attribute.Private & + Attribute.SetMinMax< + { + min: 1; + }, + number + >; + formats: Attribute.JSON; + hash: Attribute.String & Attribute.Required; + height: Attribute.Integer; + mime: Attribute.String & Attribute.Required; + name: Attribute.String & Attribute.Required; + previewUrl: Attribute.String; + provider: Attribute.String & Attribute.Required; + provider_metadata: Attribute.JSON; + related: Attribute.Relation<'plugin::upload.file', 'morphToMany'>; + size: Attribute.Decimal & Attribute.Required; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::upload.file', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + url: Attribute.String & Attribute.Required; + width: Attribute.Integer; + }; +} + +export interface PluginUploadFolder extends Schema.CollectionType { + collectionName: 'upload_folders'; + info: { + displayName: 'Folder'; + pluralName: 'folders'; + singularName: 'folder'; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + children: Attribute.Relation< + 'plugin::upload.folder', + 'oneToMany', + 'plugin::upload.folder' + >; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::upload.folder', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + files: Attribute.Relation< + 'plugin::upload.folder', + 'oneToMany', + 'plugin::upload.file' + >; + name: Attribute.String & + Attribute.Required & + Attribute.SetMinMax< + { + min: 1; + }, + number + >; + parent: Attribute.Relation< + 'plugin::upload.folder', + 'manyToOne', + 'plugin::upload.folder' + >; + path: Attribute.String & + Attribute.Required & + Attribute.SetMinMax< + { + min: 1; + }, + number + >; + pathId: Attribute.Integer & Attribute.Required & Attribute.Unique; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::upload.folder', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + }; +} + +export interface PluginUsersPermissionsPermission + extends Schema.CollectionType { + collectionName: 'up_permissions'; + info: { + description: ''; + displayName: 'Permission'; + name: 'permission'; + pluralName: 'permissions'; + singularName: 'permission'; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + action: Attribute.String & Attribute.Required; createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::users-permissions.permission', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + role: Attribute.Relation< + 'plugin::users-permissions.permission', + 'manyToOne', + 'plugin::users-permissions.role' + >; updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::users-permissions.permission', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + }; +} + +export interface PluginUsersPermissionsRole extends Schema.CollectionType { + collectionName: 'up_roles'; + info: { + description: ''; + displayName: 'Role'; + name: 'role'; + pluralName: 'roles'; + singularName: 'role'; + }; + pluginOptions: { + 'content-manager': { + visible: false; + }; + 'content-type-builder': { + visible: false; + }; + }; + attributes: { + createdAt: Attribute.DateTime; createdBy: Attribute.Relation< - 'api::vehicle.vehicle', + 'plugin::users-permissions.role', 'oneToOne', 'admin::user' > & Attribute.Private; + description: Attribute.String; + name: Attribute.String & + Attribute.Required & + Attribute.SetMinMaxLength<{ + minLength: 3; + }>; + permissions: Attribute.Relation< + 'plugin::users-permissions.role', + 'oneToMany', + 'plugin::users-permissions.permission' + >; + type: Attribute.String & Attribute.Unique; + updatedAt: Attribute.DateTime; updatedBy: Attribute.Relation< - 'api::vehicle.vehicle', + 'plugin::users-permissions.role', 'oneToOne', 'admin::user' > & Attribute.Private; + users: Attribute.Relation< + 'plugin::users-permissions.role', + 'oneToMany', + 'plugin::users-permissions.user' + >; + }; +} + +export interface PluginUsersPermissionsUser extends Schema.CollectionType { + collectionName: 'up_users'; + info: { + description: ''; + displayName: 'User'; + name: 'user'; + pluralName: 'users'; + singularName: 'user'; + }; + options: { + draftAndPublish: false; + }; + attributes: { + blocked: Attribute.Boolean & Attribute.Private & Attribute.DefaultTo<false>; + confirmationToken: Attribute.String & Attribute.Private; + confirmed: Attribute.Boolean & Attribute.DefaultTo<false>; + createdAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'plugin::users-permissions.user', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + email: Attribute.Email & + Attribute.Required & + Attribute.SetMinMaxLength<{ + minLength: 6; + }>; + events: Attribute.Relation< + 'plugin::users-permissions.user', + 'manyToMany', + 'api::event.event' + >; + firstName: Attribute.String; + lang: Attribute.Enumeration<['fr', 'en', 'de', 'nl', 'it']> & + Attribute.DefaultTo<'fr'>; + lastName: Attribute.String; + newsletterConsent: Attribute.Boolean & Attribute.DefaultTo<false>; + notificationEnabled: Attribute.Boolean & Attribute.DefaultTo<true>; + notifications: Attribute.Relation< + 'plugin::users-permissions.user', + 'oneToMany', + 'api::notification.notification' + >; + onboardingCreator: Attribute.Boolean & Attribute.DefaultTo<false>; + onboardingUser: Attribute.Boolean & Attribute.DefaultTo<false>; + passengers: Attribute.Relation< + 'plugin::users-permissions.user', + 'oneToMany', + 'api::passenger.passenger' + > & + Attribute.Private; + password: Attribute.Password & + Attribute.Private & + Attribute.SetMinMaxLength<{ + minLength: 6; + }>; + provider: Attribute.String; + resetPasswordToken: Attribute.String & Attribute.Private; + role: Attribute.Relation< + 'plugin::users-permissions.user', + 'manyToOne', + 'plugin::users-permissions.role' + >; + tosAcceptationDate: Attribute.DateTime; + updatedAt: Attribute.DateTime; + updatedBy: Attribute.Relation< + 'plugin::users-permissions.user', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + username: Attribute.String & + Attribute.Required & + Attribute.Unique & + Attribute.SetMinMaxLength<{ + minLength: 3; + }>; + vehicles: Attribute.Relation< + 'plugin::users-permissions.user', + 'oneToMany', + 'api::vehicle.vehicle' + >; }; } declare module '@strapi/types' { export module Shared { export interface ContentTypes { - 'admin::permission': AdminPermission; - 'admin::user': AdminUser; - 'admin::role': AdminRole; 'admin::api-token': AdminApiToken; 'admin::api-token-permission': AdminApiTokenPermission; + 'admin::permission': AdminPermission; + 'admin::role': AdminRole; 'admin::transfer-token': AdminTransferToken; 'admin::transfer-token-permission': AdminTransferTokenPermission; - 'plugin::upload.file': PluginUploadFile; - 'plugin::upload.folder': PluginUploadFolder; - 'plugin::content-releases.release': PluginContentReleasesRelease; - 'plugin::content-releases.release-action': PluginContentReleasesReleaseAction; - 'plugin::i18n.locale': PluginI18NLocale; - 'plugin::users-permissions.permission': PluginUsersPermissionsPermission; - 'plugin::users-permissions.role': PluginUsersPermissionsRole; - 'plugin::users-permissions.user': PluginUsersPermissionsUser; + 'admin::user': AdminUser; 'api::event.event': ApiEventEvent; 'api::module.module': ApiModuleModule; 'api::notification.notification': ApiNotificationNotification;@@ -1382,6 +1374,14 @@ 'api::setting.setting': ApiSettingSetting;
'api::travel.travel': ApiTravelTravel; 'api::trip-alert.trip-alert': ApiTripAlertTripAlert; 'api::vehicle.vehicle': ApiVehicleVehicle; + 'plugin::content-releases.release': PluginContentReleasesRelease; + 'plugin::content-releases.release-action': PluginContentReleasesReleaseAction; + 'plugin::i18n.locale': PluginI18NLocale; + 'plugin::upload.file': PluginUploadFile; + 'plugin::upload.folder': PluginUploadFolder; + 'plugin::users-permissions.permission': PluginUsersPermissionsPermission; + 'plugin::users-permissions.role': PluginUsersPermissionsRole; + 'plugin::users-permissions.user': PluginUsersPermissionsUser; } } }
@@ -1,673 +0,0 @@
-{ - "default": { - "Body-1": { - "value": { - "fontFamily": "Inter", - "fontWeight": "Regular", - "fontSize": "15", - "letterSpacing": "3%", - "lineHeight": "{lineHeight-default}", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Body-1-neg": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "{default.Body-1.fontWeight}", - "fontSize": "{default.Body-1.fontSize}", - "letterSpacing": "{default.Body-1.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Body-1.textDecoration}", - "textCase": "{default.Body-1.textCase}" - }, - "type": "typography" - }, - "Body-1-underline": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "{default.Body-1.fontWeight}", - "fontSize": "{default.Body-1.fontSize}", - "lineHeight": "{default.Body-1.lineHeight}", - "letterSpacing": "{default.Body-1.letterSpacing}", - "textDecoration": "underline", - "textCase": "{default.Body-1.textCase}" - }, - "type": "typography" - }, - "Body-2": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "{default.Body-1.fontWeight}", - "fontSize": "13px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "2%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Body-2-neg": { - "value": { - "fontFamily": "{default.Body-2.fontFamily}", - "fontWeight": "{default.Body-2.fontWeight}", - "fontSize": "{default.Body-2.fontSize}", - "letterSpacing": "{default.Body-2.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Body-2.textDecoration}", - "textCase": "{default.Body-2.textCase}" - }, - "type": "typography" - }, - "Body-2-semibold": { - "value": { - "fontFamily": "{default.Body-2.fontFamily}", - "fontWeight": "Semi Bold", - "fontSize": "{default.Body-2.fontSize}", - "lineHeight": "{default.Body-2.lineHeight}", - "letterSpacing": "{default.Body-2.letterSpacing}", - "textDecoration": "{default.Body-2.textDecoration}", - "textCase": "{default.Body-2.textCase}" - }, - "type": "typography" - }, - "Button": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Medium", - "fontSize": "13px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "10%", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "Button-neg": { - "value": { - "fontFamily": "{default.Button.fontFamily}", - "fontWeight": "{default.Button.fontWeight}", - "fontSize": "{default.Button.fontSize}", - "letterSpacing": "{default.Button.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Button.textDecoration}", - "textCase": "{default.Button.textCase}" - }, - "type": "typography" - }, - "Caption": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Regular", - "fontSize": "12px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "3%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Caption-neg": { - "value": { - "fontFamily": "{default.Caption.fontFamily}", - "fontWeight": "{default.Caption.fontWeight}", - "fontSize": "{default.Caption.fontSize}", - "letterSpacing": "{default.Caption.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Caption.textDecoration}", - "textCase": "{default.Caption.textCase}" - }, - "type": "typography" - }, - "Overline": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Regular", - "fontSize": "10px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "15%", - "textDecoration": "none", - "textCase": "uppercase" - }, - "type": "typography" - }, - "Overline-neg": { - "value": { - "fontFamily": "{default.Overline.fontFamily}", - "fontWeight": "{default.Overline.fontWeight}", - "fontSize": "{default.Overline.fontSize}", - "letterSpacing": "{default.Overline.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Overline.textDecoration}", - "textCase": "{default.Overline.textCase}" - }, - "type": "typography" - }, - "Subtitle-2": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Medium", - "fontSize": "13px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "0.7%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Subtitle-2-neg": { - "value": { - "fontFamily": "{default.Subtitle-2.fontFamily}", - "fontWeight": "{default.Subtitle-2.fontWeight}", - "fontSize": "{default.Subtitle-2.fontSize}", - "letterSpacing": "{default.Subtitle-2.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Subtitle-2.textDecoration}", - "textCase": "{default.Subtitle-2.textCase}" - }, - "type": "typography" - }, - "Subtitle-1": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Regular", - "fontSize": "15px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "1%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Subtitle-1-neg": { - "value": { - "fontFamily": "{default.Subtitle-1.fontFamily}", - "fontWeight": "{default.Subtitle-1.fontWeight}", - "fontSize": "{default.Subtitle-1.fontSize}", - "letterSpacing": "{default.Subtitle-1.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Subtitle-1.textDecoration}", - "textCase": "{default.Subtitle-1.textCase}" - }, - "type": "typography" - }, - "Headline-6": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Medium", - "fontSize": "19px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "0.8%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Headline-6-neg": { - "value": { - "fontFamily": "{default.Headline-6.fontFamily}", - "fontWeight": "Regular", - "fontSize": "{default.Headline-6.fontSize}", - "letterSpacing": "{default.Headline-6.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Headline-6.textDecoration}", - "textCase": "{default.Headline-6.textCase}" - }, - "type": "typography" - }, - "Headline-5": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Regular", - "fontSize": "23px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "0", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Headline-5-neg": { - "value": { - "fontFamily": "{default.Headline-5.fontFamily}", - "fontWeight": "Light", - "fontSize": "{default.Headline-5.fontSize}", - "letterSpacing": "{default.Headline-5.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Headline-5.textDecoration}", - "textCase": "{default.Headline-5.textCase}" - }, - "type": "typography" - }, - "Headline-4": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Regular", - "fontSize": "33px", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "0.75%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Headline-4-neg": { - "value": { - "fontFamily": "{default.Headline-4.fontFamily}", - "fontWeight": "Light", - "fontSize": "{default.Headline-4.fontSize}", - "letterSpacing": "{default.Headline-4.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Headline-4.textDecoration}", - "textCase": "{default.Headline-4.textCase}" - }, - "type": "typography" - }, - "Headline-3": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Regular", - "fontSize": "46", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "0", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Headline-3-neg": { - "value": { - "fontFamily": "{default.Headline-3.fontFamily}", - "fontWeight": "Light", - "fontSize": "{default.Headline-3.fontSize}", - "letterSpacing": "{default.Headline-3.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Headline-3.textDecoration}", - "textCase": "{default.Headline-3.textCase}" - }, - "type": "typography" - }, - "Headline-2": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Light", - "fontSize": "58", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "-0.8%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Headline-2-neg": { - "value": { - "fontFamily": "{default.Headline-2.fontFamily}", - "fontWeight": "Extra Light", - "fontSize": "{default.Headline-2.fontSize}", - "letterSpacing": "{default.Headline-2.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Headline-2.textDecoration}", - "textCase": "{default.Headline-2.textCase}" - }, - "type": "typography" - }, - "Headline-1": { - "value": { - "fontFamily": "{default.Body-1.fontFamily}", - "fontWeight": "Light", - "fontSize": "93", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "-1.6%", - "textDecoration": "none", - "textCase": "undercase" - }, - "type": "typography" - }, - "Headline-1-neg": { - "value": { - "fontFamily": "{default.Headline-1.fontFamily}", - "fontWeight": "Extra Light", - "fontSize": "{default.Headline-1.fontSize}", - "letterSpacing": "{default.Headline-1.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Headline-1.textDecoration}", - "textCase": "{default.Headline-1.textCase}" - }, - "type": "typography" - }, - "Caption-underline": { - "value": { - "fontFamily": "{default.Caption.fontFamily}", - "fontWeight": "{default.Caption.fontWeight}", - "fontSize": "{default.Caption.fontSize}", - "lineHeight": "{default.Caption.lineHeight}", - "letterSpacing": "{default.Caption.letterSpacing}", - "textDecoration": "underline", - "textCase": "{default.Caption.textCase}" - }, - "type": "typography" - } - }, - "mono": { - "Body-1-mono": { - "value": { - "fontFamily": "IBM Plex mono", - "fontWeight": "{default.Body-1.fontWeight}", - "fontSize": "{default.Body-1.fontSize}", - "letterSpacing": "0", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Body-1.textDecoration}", - "textCase": "{default.Body-1.textCase}" - }, - "type": "typography" - }, - "Body-1-mono-neg": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{mono.Body-1-mono.fontWeight}", - "fontSize": "{mono.Body-1-mono.fontSize}", - "letterSpacing": "{mono.Body-1-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Body-1-mono.textDecoration}", - "textCase": "{mono.Body-1-mono.textCase}" - }, - "type": "typography" - }, - "Body-2-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Body-2.fontWeight}", - "fontSize": "{default.Body-2.fontSize}", - "letterSpacing": "0", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{default.Body-2.textDecoration}", - "textCase": "{default.Body-2.textCase}" - }, - "type": "typography" - }, - "Body-2-mono-neg": { - "value": { - "fontFamily": "{mono.Body-2-mono.fontFamily}", - "fontWeight": "{mono.Body-2-mono.fontWeight}", - "fontSize": "{mono.Body-2-mono.fontSize}", - "letterSpacing": "{mono.Body-2-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Body-2-mono.textDecoration}", - "textCase": "{mono.Body-2-mono.textCase}" - }, - "type": "typography" - }, - "Button-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Button.fontWeight}", - "fontSize": "{default.Button.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Button.letterSpacing}", - "textDecoration": "{default.Button.textDecoration}", - "textCase": "{default.Button.textCase}" - }, - "type": "typography" - }, - "Button-mono-neg": { - "value": { - "fontFamily": "{mono.Button-mono.fontFamily}", - "fontWeight": "{mono.Button-mono.fontWeight}", - "fontSize": "{mono.Button-mono.fontSize}", - "letterSpacing": "{mono.Button-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Button-mono.textDecoration}", - "textCase": "{mono.Button-mono.textCase}" - }, - "type": "typography" - }, - "Caption-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Caption.fontWeight}", - "fontSize": "{default.Caption.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Caption.letterSpacing}", - "textDecoration": "{default.Caption.textDecoration}", - "textCase": "{default.Caption.textCase}" - }, - "type": "typography" - }, - "Caption-mono-neg": { - "value": { - "fontFamily": "{mono.Caption-mono.fontFamily}", - "fontWeight": "{mono.Caption-mono.fontWeight}", - "fontSize": "{mono.Caption-mono.fontSize}", - "letterSpacing": "{mono.Caption-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Caption-mono.textDecoration}", - "textCase": "{mono.Caption-mono.textCase}" - }, - "type": "typography" - }, - "Overline-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Overline.fontWeight}", - "fontSize": "{default.Overline.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Overline.letterSpacing}", - "textDecoration": "{default.Overline.textDecoration}", - "textCase": "{default.Overline.textCase}" - }, - "type": "typography" - }, - "Overline-mono-neg": { - "value": { - "fontFamily": "{mono.Overline-mono.fontFamily}", - "fontWeight": "{mono.Overline-mono.fontWeight}", - "fontSize": "{mono.Overline-mono.fontSize}", - "letterSpacing": "{mono.Overline-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Overline-mono.textDecoration}", - "textCase": "{mono.Overline-mono.textCase}" - }, - "type": "typography" - }, - "Subtitle-2-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Subtitle-2.fontWeight}", - "fontSize": "{default.Subtitle-2.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Subtitle-2.letterSpacing}", - "textDecoration": "{default.Subtitle-2.textDecoration}", - "textCase": "{default.Subtitle-2.textCase}" - }, - "type": "typography" - }, - "Subtitle-2-mono-neg": { - "value": { - "fontFamily": "{mono.Subtitle-2-mono.fontFamily}", - "fontWeight": "{mono.Subtitle-2-mono.fontWeight}", - "fontSize": "{mono.Subtitle-2-mono.fontSize}", - "letterSpacing": "{mono.Subtitle-2-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Subtitle-2-mono.textDecoration}", - "textCase": "{mono.Subtitle-2-mono.textCase}" - }, - "type": "typography" - }, - "Subtitle-1-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Subtitle-1.fontWeight}", - "fontSize": "{default.Subtitle-1.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Subtitle-1.letterSpacing}", - "textDecoration": "{default.Subtitle-1.textDecoration}", - "textCase": "{default.Subtitle-1.textCase}" - }, - "type": "typography" - }, - "Subtitle-1-mono-neg": { - "value": { - "fontFamily": "{mono.Subtitle-1-mono.fontFamily}", - "fontWeight": "{mono.Subtitle-1-mono.fontWeight}", - "fontSize": "{mono.Subtitle-1-mono.fontSize}", - "letterSpacing": "{mono.Subtitle-1-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Subtitle-1-mono.textDecoration}", - "textCase": "{mono.Subtitle-1-mono.textCase}" - }, - "type": "typography" - }, - "Headline-6-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Headline-6.fontWeight}", - "fontSize": "{default.Headline-6.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Headline-6.letterSpacing}", - "textDecoration": "{default.Headline-6.textDecoration}", - "textCase": "{default.Headline-6.textCase}" - }, - "type": "typography" - }, - "Headline-6-mono-neg": { - "value": { - "fontFamily": "{mono.Headline-6-mono.fontFamily}", - "fontWeight": "Regular", - "fontSize": "{mono.Headline-6-mono.fontSize}", - "letterSpacing": "{mono.Headline-6-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Headline-6-mono.textDecoration}", - "textCase": "{mono.Headline-6-mono.textCase}" - }, - "type": "typography" - }, - "Headline-5-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Headline-5.fontWeight}", - "fontSize": "{default.Headline-5.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Headline-5.letterSpacing}", - "textDecoration": "{default.Headline-5.textDecoration}", - "textCase": "{default.Headline-5.textCase}" - }, - "type": "typography" - }, - "Headline-5-mono-neg": { - "value": { - "fontFamily": "{mono.Headline-5-mono.fontFamily}", - "fontWeight": "Light", - "fontSize": "{mono.Headline-5-mono.fontSize}", - "letterSpacing": "{mono.Headline-5-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Headline-5-mono.textDecoration}", - "textCase": "{mono.Headline-5-mono.textCase}" - }, - "type": "typography" - }, - "Headline-4-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Headline-4.fontWeight}", - "fontSize": "{default.Headline-4.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Headline-4.letterSpacing}", - "textDecoration": "{default.Headline-4.textDecoration}", - "textCase": "{default.Headline-4.textCase}" - }, - "type": "typography" - }, - "Headline-4-mono-neg": { - "value": { - "fontFamily": "{mono.Headline-4-mono.fontFamily}", - "fontWeight": "Light", - "fontSize": "{mono.Headline-4-mono.fontSize}", - "letterSpacing": "{mono.Headline-4-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Headline-4-mono.textDecoration}", - "textCase": "{mono.Headline-4-mono.textCase}" - }, - "type": "typography" - }, - "Headline-3-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Headline-3.fontWeight}", - "fontSize": "{default.Headline-3.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Headline-3.letterSpacing}", - "textDecoration": "{default.Headline-3.textDecoration}", - "textCase": "{default.Headline-3.textCase}", - "paragraphSpacing": "" - }, - "type": "typography" - }, - "Headline-3-mono-neg": { - "value": { - "fontFamily": "{mono.Headline-3-mono.fontFamily}", - "fontWeight": "Light", - "fontSize": "{mono.Headline-3-mono.fontSize}", - "letterSpacing": "{mono.Headline-3-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Headline-3-mono.textDecoration}", - "textCase": "{mono.Headline-3-mono.textCase}" - }, - "type": "typography" - }, - "Headline-2-mono-neg": { - "value": { - "fontFamily": "{mono.Headline-2-mono.fontFamily}", - "fontWeight": "ExtraLight", - "fontSize": "{mono.Headline-2-mono.fontSize}", - "letterSpacing": "{mono.Headline-2-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Headline-2-mono.textDecoration}", - "textCase": "{mono.Headline-2-mono.textCase}" - }, - "type": "typography" - }, - "Headline-1-mono-neg": { - "value": { - "fontFamily": "{mono.Headline-1-mono.fontFamily}", - "fontWeight": "ExtraLight", - "fontSize": "{mono.Headline-1-mono.fontSize}", - "letterSpacing": "{mono.Headline-1-mono.letterSpacing}", - "lineHeight": "{lineHeight-default}", - "textDecoration": "{mono.Headline-1-mono.textDecoration}", - "textCase": "{mono.Headline-1-mono.textCase}" - }, - "type": "typography" - }, - "Headline-2-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Headline-2.fontWeight}", - "fontSize": "{default.Headline-2.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Headline-2.letterSpacing}", - "textDecoration": "{default.Headline-2.textDecoration}", - "textCase": "{default.Headline-2.textCase}", - "paragraphSpacing": "" - }, - "type": "typography" - }, - "Headline-1-mono": { - "value": { - "fontFamily": "{mono.Body-1-mono.fontFamily}", - "fontWeight": "{default.Headline-1.fontWeight}", - "fontSize": "{default.Headline-1.fontSize}", - "lineHeight": "{lineHeight-default}", - "letterSpacing": "{default.Headline-1.letterSpacing}", - "textDecoration": "{default.Headline-1.textDecoration}", - "textCase": "{default.Headline-1.textCase}", - "paragraphSpacing": "" - }, - "type": "typography" - } - }, - "lineHeight-default": { - "value": "135%", - "type": "lineHeights" - } - }
@@ -2,4 +2,4 @@ /// <reference types="next" />
/// <reference types="next/image-types/global" /> // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
@@ -3,59 +3,59 @@ "name": "@caroster/frontend",
"version": "0.1.0", "private": true, "scripts": { - "dev": "next dev", "build": "next build", - "start": "next start", + "dev": "next dev", + "gql": "graphql-codegen --config codegen.yml", "lint": "next lint", - "gql": "graphql-codegen --config codegen.yml" + "start": "next start" }, "dependencies": { - "@apollo/client": "^3.11.4", + "@apollo/client": "^3.11.10", "@date-io/dayjs": "3.0.0", "@date-io/moment": "3.0.0", - "@emotion/react": "^11.13.0", + "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", "@mapbox/search-js-core": "^1.0.0-beta.22", - "@mui/icons-material": "^5.16.7", - "@mui/lab": "^5.0.0-alpha.173", - "@mui/material": "^5.16.7", - "@mui/styles": "^5.16.7", - "@mui/x-date-pickers": "^6.20.2", - "@tolgee/i18next": "^5.28.6", + "@mui/icons-material": "^6.1.7", + "@mui/lab": "6.0.0-dev.240424162023-9968b4889d", + "@mui/material": "^6.1.7", + "@mui/styles": "^6.1.7", + "@mui/x-date-pickers": "^7.22.2", + "@tolgee/i18next": "^5.31.5", "cookies": "^0.9.1", "crypto-js": "^4.2.0", "deepmerge": "^4.3.1", "google-libphonenumber": "^3.2.38", "graphql": "^16.9.0", - "i18next": "^23.14.0", + "i18next": "^23.16.5", "leaflet": "^1.9.4", - "linkify-react": "^4.1.3", - "linkifyjs": "^4.1.3", + "linkify-react": "^4.1.4", + "linkifyjs": "^4.1.4", "marked": "^7.0.5", "moment": "^2.30.1", - "next": "^14.2.5", - "next-auth": "4.24.7", + "next": "^14.2.18", + "next-auth": "4.24.10", "next-i18next": "^15.3.1", "next-pwa": "^5.6.0", "react": "^18.3.1", "react-dom": "^18.3.1", "react-helmet": "^6.1.0", - "react-i18next": "^15.0.1", + "react-i18next": "^15.1.1", "react-international-phone": "^4.3.0", "react-leaflet": "^4.2.1", - "typescript": "^5.5.4", + "typescript": "^5.6.3", "zustand": "^4.5.5" }, "devDependencies": { - "@graphql-codegen/cli": "^5.0.2", - "@graphql-codegen/typescript": "^4.0.9", - "@graphql-codegen/typescript-operations": "^4.2.3", - "@graphql-codegen/typescript-react-apollo": "^4.3.0", + "@graphql-codegen/cli": "^5.0.3", + "@graphql-codegen/typescript": "^4.1.1", + "@graphql-codegen/typescript-operations": "^4.3.1", + "@graphql-codegen/typescript-react-apollo": "^4.3.2", "@types/google-libphonenumber": "^7.4.30", - "@types/node": "^22.4.2", - "@types/react": "^18.3.4", - "eslint": "^9.9.0", - "eslint-config-next": "^14.2.5", + "@types/node": "^22.9.0", + "@types/react": "^18.3.12", + "eslint": "^8.57.0", + "eslint-config-next": "^14.2.18", "eslint-config-prettier": "^9.1.0", "fs": "^0.0.1-security", "glob": "^11.0.0",
@@ -1,1 +1,1 @@
-if(!self.define){let e,s={};const a=(a,c)=>(a=new URL(a+".js",c).href,s[a]||new Promise((s=>{if("document"in self){const e=document.createElement("script");e.src=a,e.onload=s,document.head.appendChild(e)}else e=a,importScripts(a),s()})).then((()=>{let e=s[a];if(!e)throw new Error(`Module ${a} didn’t register its module`);return e})));self.define=(c,n)=>{const i=e||("document"in self?document.currentScript.src:"")||location.href;if(s[i])return;let t={};const r=e=>a(e,i),d={module:{uri:i},exports:t,require:r};s[i]=Promise.all(c.map((e=>d[e]||r(e)))).then((e=>(n(...e),t)))}}define(["./workbox-9b4d2a02"],(function(e){"use strict";importScripts(),self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"/_next/static/chunks/0b7b90cd.5bfb8e73dff615d1.js",revision:"5bfb8e73dff615d1"},{url:"/_next/static/chunks/220-98bd797d800b78ec.js",revision:"98bd797d800b78ec"},{url:"/_next/static/chunks/284.cfb48be275a76061.js",revision:"cfb48be275a76061"},{url:"/_next/static/chunks/303-aa5a7b1bb24439df.js",revision:"aa5a7b1bb24439df"},{url:"/_next/static/chunks/321-f0b2bc9c13535088.js",revision:"f0b2bc9c13535088"},{url:"/_next/static/chunks/362-33a3fbd4a12d8a3a.js",revision:"33a3fbd4a12d8a3a"},{url:"/_next/static/chunks/399-804e9682133a0d2c.js",revision:"804e9682133a0d2c"},{url:"/_next/static/chunks/459-5d9e8ec50d7c0e70.js",revision:"5d9e8ec50d7c0e70"},{url:"/_next/static/chunks/5-c2417380a3c9a3d2.js",revision:"c2417380a3c9a3d2"},{url:"/_next/static/chunks/572.3c61a9657f272d04.js",revision:"3c61a9657f272d04"},{url:"/_next/static/chunks/585-6d36547ff4fe7cba.js",revision:"6d36547ff4fe7cba"},{url:"/_next/static/chunks/619-efab244c4e675a2e.js",revision:"efab244c4e675a2e"},{url:"/_next/static/chunks/644-e75fcdedaa708750.js",revision:"e75fcdedaa708750"},{url:"/_next/static/chunks/664-5af51080742797e4.js",revision:"5af51080742797e4"},{url:"/_next/static/chunks/746-5e2bd1af4ab4a1a0.js",revision:"5e2bd1af4ab4a1a0"},{url:"/_next/static/chunks/770-17b00fd601cec323.js",revision:"17b00fd601cec323"},{url:"/_next/static/chunks/775-6537eb4fe2c94cbe.js",revision:"6537eb4fe2c94cbe"},{url:"/_next/static/chunks/787-dd283253874d7d68.js",revision:"dd283253874d7d68"},{url:"/_next/static/chunks/88-e376ac10fdfa2cb6.js",revision:"e376ac10fdfa2cb6"},{url:"/_next/static/chunks/889.762fdac4f4b7a970.js",revision:"762fdac4f4b7a970"},{url:"/_next/static/chunks/899-922ef5fcc9a60943.js",revision:"922ef5fcc9a60943"},{url:"/_next/static/chunks/913-1a05aa0cb47123bf.js",revision:"1a05aa0cb47123bf"},{url:"/_next/static/chunks/975-5dcc9cc3b9e3d631.js",revision:"5dcc9cc3b9e3d631"},{url:"/_next/static/chunks/framework-18c7e6fcf99e5daa.js",revision:"18c7e6fcf99e5daa"},{url:"/_next/static/chunks/main-d3b520dc426e7b2d.js",revision:"d3b520dc426e7b2d"},{url:"/_next/static/chunks/pages/_app-e4b21e5e48f9e63b.js",revision:"e4b21e5e48f9e63b"},{url:"/_next/static/chunks/pages/_error-ed99fdd605d0db40.js",revision:"ed99fdd605d0db40"},{url:"/_next/static/chunks/pages/auth/confirm-4710116c18c08314.js",revision:"4710116c18c08314"},{url:"/_next/static/chunks/pages/auth/confirm/google-096b131994926240.js",revision:"096b131994926240"},{url:"/_next/static/chunks/pages/auth/login-ba9b755e295e41cc.js",revision:"ba9b755e295e41cc"},{url:"/_next/static/chunks/pages/auth/lost-password-859d7f9a8d4f9934.js",revision:"859d7f9a8d4f9934"},{url:"/_next/static/chunks/pages/auth/register-269a48088b34ac6b.js",revision:"269a48088b34ac6b"},{url:"/_next/static/chunks/pages/auth/register/mail-b1b97894f1732fef.js",revision:"b1b97894f1732fef"},{url:"/_next/static/chunks/pages/auth/reset-d4d9dc3d787c4f1a.js",revision:"d4d9dc3d787c4f1a"},{url:"/_next/static/chunks/pages/dashboard-d14c826d5cba4363.js",revision:"d14c826d5cba4363"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D-4b54ffaac7224921.js",revision:"4b54ffaac7224921"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/alerts-9a3bcdfbfa6d0dec.js",revision:"9a3bcdfbfa6d0dec"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/assign/%5BpassengerId%5D-18bb84eaf1f3cb8c.js",revision:"18bb84eaf1f3cb8c"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/details-4dda0cbc49df8a07.js",revision:"4dda0cbc49df8a07"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/options-8f998ed35f2acee1.js",revision:"8f998ed35f2acee1"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/waitingList-e9770263b7e06f45.js",revision:"e9770263b7e06f45"},{url:"/_next/static/chunks/pages/index-566a20eefb2c48bf.js",revision:"566a20eefb2c48bf"},{url:"/_next/static/chunks/pages/new-0f80f6ac909e4715.js",revision:"0f80f6ac909e4715"},{url:"/_next/static/chunks/pages/profile-9af8e2720b7c5835.js",revision:"9af8e2720b7c5835"},{url:"/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js",revision:"79330112775102f91e1010318bae2bd3"},{url:"/_next/static/chunks/webpack-ba060bf0e186b376.js",revision:"ba060bf0e186b376"},{url:"/_next/static/css/0742d73c3229e134.css",revision:"0742d73c3229e134"},{url:"/_next/static/css/209b782d1a2e630e.css",revision:"209b782d1a2e630e"},{url:"/_next/static/media/layers-2x.9859cd12.png",revision:"9859cd12"},{url:"/_next/static/media/layers.ef6db872.png",revision:"ef6db872"},{url:"/_next/static/media/marker-icon.d577052a.png",revision:"d577052a"},{url:"/_next/static/xfKayYGSRXx8uLfNxQ7Qa/_buildManifest.js",revision:"0f8bcdbc8cba72ea9f69e155eb2f56a8"},{url:"/_next/static/xfKayYGSRXx8uLfNxQ7Qa/_ssgManifest.js",revision:"b6652df95db52feb4daf4eca35380933"},{url:"/assets/Caroster_Octree_Social.jpg",revision:"563fc10a4ec83e735943c5f67d417a6e"},{url:"/assets/Caroster_beta.png",revision:"86c6259620aee306a019b2a611eaf21d"},{url:"/assets/Logo_in_beta.svg",revision:"cdde8d69adbfdbaf7c903e155419b12c"},{url:"/assets/android-chrome-192x192.png",revision:"b288769d936ad5f9a87944e027d0096c"},{url:"/assets/android-chrome-512x512.png",revision:"c789c009674fc4a2087a8b71c24a12b7"},{url:"/assets/apple-touch-icon.png",revision:"573a4bc22886d3ef3f6c3aa0eab64d44"},{url:"/assets/car.png",revision:"0c95a91895d437b7ea06db071aa8f68f"},{url:"/assets/favicon-16x16.png",revision:"9f98c22a36ec0001995797d29a7583b1"},{url:"/assets/favicon-32x32.png",revision:"562ff70a6694a29302644d4f85b2e920"},{url:"/assets/favicon.ico",revision:"45004f0a61722a526ca688bddc4955c4"},{url:"/assets/google-icon.svg",revision:"81ad048ed858673aaca6cc2227076b8a"},{url:"/assets/icon.png",revision:"ac122f40fd4c9fd7f1831b0dd406c950"},{url:"/assets/logo.png",revision:"d685d6b49c3aedcf4819d5cbbc873d60"},{url:"/assets/logo.svg",revision:"bf83592cc1865c5c492b7ab09bb18f59"},{url:"/assets/site.webmanifest",revision:"053100cb84a50d2ae7f5492f7dd7f25e"},{url:"/favicon.ico",revision:"8eb6dd187ac1c4e26f8df8062bb42e09"},{url:"/leaflet_reset.css",revision:"0936d7c0f04ef89fe3c337decb621909"},{url:"/manifest.json",revision:"e76480838d8eb8908456941dcb59275e"}],{ignoreURLParametersMatching:[]}),e.cleanupOutdatedCaches(),e.registerRoute("/",new e.NetworkFirst({cacheName:"start-url",plugins:[{cacheWillUpdate:async({request:e,response:s,event:a,state:c})=>s&&"opaqueredirect"===s.type?new Response(s.body,{status:200,statusText:"OK",headers:s.headers}):s}]}),"GET"),e.registerRoute(/^https:\/\/fonts\.(?:gstatic)\.com\/.*/i,new e.CacheFirst({cacheName:"google-fonts-webfonts",plugins:[new e.ExpirationPlugin({maxEntries:4,maxAgeSeconds:31536e3})]}),"GET"),e.registerRoute(/^https:\/\/fonts\.(?:googleapis)\.com\/.*/i,new e.StaleWhileRevalidate({cacheName:"google-fonts-stylesheets",plugins:[new e.ExpirationPlugin({maxEntries:4,maxAgeSeconds:604800})]}),"GET"),e.registerRoute(/\.(?:eot|otf|ttc|ttf|woff|woff2|font.css)$/i,new e.StaleWhileRevalidate({cacheName:"static-font-assets",plugins:[new e.ExpirationPlugin({maxEntries:4,maxAgeSeconds:604800})]}),"GET"),e.registerRoute(/\.(?:jpg|jpeg|gif|png|svg|ico|webp)$/i,new e.StaleWhileRevalidate({cacheName:"static-image-assets",plugins:[new e.ExpirationPlugin({maxEntries:64,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\/_next\/image\?url=.+$/i,new e.StaleWhileRevalidate({cacheName:"next-image",plugins:[new e.ExpirationPlugin({maxEntries:64,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:mp3|wav|ogg)$/i,new e.CacheFirst({cacheName:"static-audio-assets",plugins:[new e.RangeRequestsPlugin,new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:mp4)$/i,new e.CacheFirst({cacheName:"static-video-assets",plugins:[new e.RangeRequestsPlugin,new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:js)$/i,new e.StaleWhileRevalidate({cacheName:"static-js-assets",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:css|less)$/i,new e.StaleWhileRevalidate({cacheName:"static-style-assets",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\/_next\/data\/.+\/.+\.json$/i,new e.StaleWhileRevalidate({cacheName:"next-data",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:json|xml|csv)$/i,new e.NetworkFirst({cacheName:"static-data-assets",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute((({url:e})=>{if(!(self.origin===e.origin))return!1;const s=e.pathname;return!s.startsWith("/api/auth/")&&!!s.startsWith("/api/")}),new e.NetworkFirst({cacheName:"apis",networkTimeoutSeconds:10,plugins:[new e.ExpirationPlugin({maxEntries:16,maxAgeSeconds:86400})]}),"GET"),e.registerRoute((({url:e})=>{if(!(self.origin===e.origin))return!1;return!e.pathname.startsWith("/api/")}),new e.NetworkFirst({cacheName:"others",networkTimeoutSeconds:10,plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute((({url:e})=>!(self.origin===e.origin)),new e.NetworkFirst({cacheName:"cross-origin",networkTimeoutSeconds:10,plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:3600})]}),"GET")})); +if(!self.define){let e,s={};const a=(a,c)=>(a=new URL(a+".js",c).href,s[a]||new Promise((s=>{if("document"in self){const e=document.createElement("script");e.src=a,e.onload=s,document.head.appendChild(e)}else e=a,importScripts(a),s()})).then((()=>{let e=s[a];if(!e)throw new Error(`Module ${a} didn’t register its module`);return e})));self.define=(c,i)=>{const n=e||("document"in self?document.currentScript.src:"")||location.href;if(s[n])return;let t={};const r=e=>a(e,n),d={module:{uri:n},exports:t,require:r};s[n]=Promise.all(c.map((e=>d[e]||r(e)))).then((e=>(i(...e),t)))}}define(["./workbox-860c9203"],(function(e){"use strict";importScripts(),self.skipWaiting(),e.clientsClaim(),e.precacheAndRoute([{url:"/_next/static/chunks/116-b6ba819ce00cf1b2.js",revision:"b6ba819ce00cf1b2"},{url:"/_next/static/chunks/139-765d797f38161601.js",revision:"765d797f38161601"},{url:"/_next/static/chunks/148-4c7f4f314e51d8e7.js",revision:"4c7f4f314e51d8e7"},{url:"/_next/static/chunks/153-96966bed280628f6.js",revision:"96966bed280628f6"},{url:"/_next/static/chunks/170-fd9cef35a8538241.js",revision:"fd9cef35a8538241"},{url:"/_next/static/chunks/208-d06d675823d71864.js",revision:"d06d675823d71864"},{url:"/_next/static/chunks/249-57c739594fd1eb17.js",revision:"57c739594fd1eb17"},{url:"/_next/static/chunks/270.4738fe01f5312ece.js",revision:"4738fe01f5312ece"},{url:"/_next/static/chunks/289-bfed5ea8e1335875.js",revision:"bfed5ea8e1335875"},{url:"/_next/static/chunks/305-44087c167bdc11e4.js",revision:"44087c167bdc11e4"},{url:"/_next/static/chunks/306-47b8a84177fa7ff6.js",revision:"47b8a84177fa7ff6"},{url:"/_next/static/chunks/415-6d36656adf9285d7.js",revision:"6d36656adf9285d7"},{url:"/_next/static/chunks/426-b37a0b6753087c78.js",revision:"b37a0b6753087c78"},{url:"/_next/static/chunks/478-e3c8c68335eb5e04.js",revision:"e3c8c68335eb5e04"},{url:"/_next/static/chunks/60.54ba37612834371b.js",revision:"54ba37612834371b"},{url:"/_next/static/chunks/618-d64860f3b0c44549.js",revision:"d64860f3b0c44549"},{url:"/_next/static/chunks/637-44219b64bf227850.js",revision:"44219b64bf227850"},{url:"/_next/static/chunks/674-d88bd34ba1784616.js",revision:"d88bd34ba1784616"},{url:"/_next/static/chunks/685-471597121e7349d3.js",revision:"471597121e7349d3"},{url:"/_next/static/chunks/837-ff88120b474141d2.js",revision:"ff88120b474141d2"},{url:"/_next/static/chunks/894-9572bdb6ae497251.js",revision:"9572bdb6ae497251"},{url:"/_next/static/chunks/985.c42c10aa951eecae.js",revision:"c42c10aa951eecae"},{url:"/_next/static/chunks/c158f0e1.1535fa31e78d7750.js",revision:"1535fa31e78d7750"},{url:"/_next/static/chunks/cabb2d90-99818b45e801a968.js",revision:"99818b45e801a968"},{url:"/_next/static/chunks/framework-97a3c2b9bdeaabd8.js",revision:"97a3c2b9bdeaabd8"},{url:"/_next/static/chunks/main-34edacdd4b2346ab.js",revision:"34edacdd4b2346ab"},{url:"/_next/static/chunks/pages/_app-f175f25ec74f5cb4.js",revision:"f175f25ec74f5cb4"},{url:"/_next/static/chunks/pages/_error-fc948942ffc17083.js",revision:"fc948942ffc17083"},{url:"/_next/static/chunks/pages/auth/confirm-e7616c4d2f5b9c3b.js",revision:"e7616c4d2f5b9c3b"},{url:"/_next/static/chunks/pages/auth/confirm/google-7277eddd8f727d35.js",revision:"7277eddd8f727d35"},{url:"/_next/static/chunks/pages/auth/email-confirmation-7e90df76555bb4db.js",revision:"7e90df76555bb4db"},{url:"/_next/static/chunks/pages/auth/login-22d35f873e56d75f.js",revision:"22d35f873e56d75f"},{url:"/_next/static/chunks/pages/auth/lost-password-7db0d9b24d5f82af.js",revision:"7db0d9b24d5f82af"},{url:"/_next/static/chunks/pages/auth/register-cd7eec9711b3ba4c.js",revision:"cd7eec9711b3ba4c"},{url:"/_next/static/chunks/pages/auth/register/mail-627436df37a0d738.js",revision:"627436df37a0d738"},{url:"/_next/static/chunks/pages/auth/reset-ef02424ccde62877.js",revision:"ef02424ccde62877"},{url:"/_next/static/chunks/pages/dashboard-bbcdbeb7b5595e54.js",revision:"bbcdbeb7b5595e54"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D-23ef79ee4dc7ba27.js",revision:"23ef79ee4dc7ba27"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/alerts-15682a3cfa17c467.js",revision:"15682a3cfa17c467"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/assign/%5BpassengerId%5D-6875dd94bfd84589.js",revision:"6875dd94bfd84589"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/details-8b6f3f6cc2a371b7.js",revision:"8b6f3f6cc2a371b7"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/options-2cd55de85e1f1c1d.js",revision:"2cd55de85e1f1c1d"},{url:"/_next/static/chunks/pages/e/%5Buuid%5D/waitingList-445aa90799500c8f.js",revision:"445aa90799500c8f"},{url:"/_next/static/chunks/pages/index-21d5681e7ce08b51.js",revision:"21d5681e7ce08b51"},{url:"/_next/static/chunks/pages/new-7a5431640ef7388f.js",revision:"7a5431640ef7388f"},{url:"/_next/static/chunks/pages/profile-0d245bda7cdc3260.js",revision:"0d245bda7cdc3260"},{url:"/_next/static/chunks/polyfills-42372ed130431b0a.js",revision:"846118c33b2c0e922d7b3a7676f81f6f"},{url:"/_next/static/chunks/webpack-05174729dbf55dd4.js",revision:"05174729dbf55dd4"},{url:"/_next/static/css/0742d73c3229e134.css",revision:"0742d73c3229e134"},{url:"/_next/static/css/209b782d1a2e630e.css",revision:"209b782d1a2e630e"},{url:"/_next/static/media/layers-2x.9859cd12.png",revision:"9859cd12"},{url:"/_next/static/media/layers.ef6db872.png",revision:"ef6db872"},{url:"/_next/static/media/marker-icon.d577052a.png",revision:"d577052a"},{url:"/_next/static/wpJD8mq6V4ToV7HWvJ6Bi/_buildManifest.js",revision:"00e8fd3ed9499742de5eac168a78a5bc"},{url:"/_next/static/wpJD8mq6V4ToV7HWvJ6Bi/_ssgManifest.js",revision:"b6652df95db52feb4daf4eca35380933"},{url:"/assets/Caroster_Octree_Social.jpg",revision:"563fc10a4ec83e735943c5f67d417a6e"},{url:"/assets/Caroster_beta.png",revision:"86c6259620aee306a019b2a611eaf21d"},{url:"/assets/Logo_in_beta.svg",revision:"cdde8d69adbfdbaf7c903e155419b12c"},{url:"/assets/android-chrome-192x192.png",revision:"b288769d936ad5f9a87944e027d0096c"},{url:"/assets/android-chrome-512x512.png",revision:"c789c009674fc4a2087a8b71c24a12b7"},{url:"/assets/apple-touch-icon.png",revision:"573a4bc22886d3ef3f6c3aa0eab64d44"},{url:"/assets/car.png",revision:"0c95a91895d437b7ea06db071aa8f68f"},{url:"/assets/favicon-16x16.png",revision:"9f98c22a36ec0001995797d29a7583b1"},{url:"/assets/favicon-32x32.png",revision:"562ff70a6694a29302644d4f85b2e920"},{url:"/assets/favicon.ico",revision:"45004f0a61722a526ca688bddc4955c4"},{url:"/assets/google-icon.svg",revision:"81ad048ed858673aaca6cc2227076b8a"},{url:"/assets/icon.png",revision:"ac122f40fd4c9fd7f1831b0dd406c950"},{url:"/assets/logo.png",revision:"d685d6b49c3aedcf4819d5cbbc873d60"},{url:"/assets/logo.svg",revision:"bf83592cc1865c5c492b7ab09bb18f59"},{url:"/assets/site.webmanifest",revision:"053100cb84a50d2ae7f5492f7dd7f25e"},{url:"/favicon.ico",revision:"8eb6dd187ac1c4e26f8df8062bb42e09"},{url:"/leaflet_reset.css",revision:"0936d7c0f04ef89fe3c337decb621909"},{url:"/manifest.json",revision:"e76480838d8eb8908456941dcb59275e"}],{ignoreURLParametersMatching:[]}),e.cleanupOutdatedCaches(),e.registerRoute("/",new e.NetworkFirst({cacheName:"start-url",plugins:[{cacheWillUpdate:async({request:e,response:s,event:a,state:c})=>s&&"opaqueredirect"===s.type?new Response(s.body,{status:200,statusText:"OK",headers:s.headers}):s}]}),"GET"),e.registerRoute(/^https:\/\/fonts\.(?:gstatic)\.com\/.*/i,new e.CacheFirst({cacheName:"google-fonts-webfonts",plugins:[new e.ExpirationPlugin({maxEntries:4,maxAgeSeconds:31536e3})]}),"GET"),e.registerRoute(/^https:\/\/fonts\.(?:googleapis)\.com\/.*/i,new e.StaleWhileRevalidate({cacheName:"google-fonts-stylesheets",plugins:[new e.ExpirationPlugin({maxEntries:4,maxAgeSeconds:604800})]}),"GET"),e.registerRoute(/\.(?:eot|otf|ttc|ttf|woff|woff2|font.css)$/i,new e.StaleWhileRevalidate({cacheName:"static-font-assets",plugins:[new e.ExpirationPlugin({maxEntries:4,maxAgeSeconds:604800})]}),"GET"),e.registerRoute(/\.(?:jpg|jpeg|gif|png|svg|ico|webp)$/i,new e.StaleWhileRevalidate({cacheName:"static-image-assets",plugins:[new e.ExpirationPlugin({maxEntries:64,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\/_next\/image\?url=.+$/i,new e.StaleWhileRevalidate({cacheName:"next-image",plugins:[new e.ExpirationPlugin({maxEntries:64,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:mp3|wav|ogg)$/i,new e.CacheFirst({cacheName:"static-audio-assets",plugins:[new e.RangeRequestsPlugin,new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:mp4)$/i,new e.CacheFirst({cacheName:"static-video-assets",plugins:[new e.RangeRequestsPlugin,new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:js)$/i,new e.StaleWhileRevalidate({cacheName:"static-js-assets",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:css|less)$/i,new e.StaleWhileRevalidate({cacheName:"static-style-assets",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\/_next\/data\/.+\/.+\.json$/i,new e.StaleWhileRevalidate({cacheName:"next-data",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute(/\.(?:json|xml|csv)$/i,new e.NetworkFirst({cacheName:"static-data-assets",plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute((({url:e})=>{if(!(self.origin===e.origin))return!1;const s=e.pathname;return!s.startsWith("/api/auth/")&&!!s.startsWith("/api/")}),new e.NetworkFirst({cacheName:"apis",networkTimeoutSeconds:10,plugins:[new e.ExpirationPlugin({maxEntries:16,maxAgeSeconds:86400})]}),"GET"),e.registerRoute((({url:e})=>{if(!(self.origin===e.origin))return!1;return!e.pathname.startsWith("/api/")}),new e.NetworkFirst({cacheName:"others",networkTimeoutSeconds:10,plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:86400})]}),"GET"),e.registerRoute((({url:e})=>!(self.origin===e.origin)),new e.NetworkFirst({cacheName:"cross-origin",networkTimeoutSeconds:10,plugins:[new e.ExpirationPlugin({maxEntries:32,maxAgeSeconds:3600})]}),"GET")}));
@@ -0,0 +1,1 @@
+define(["exports"],(function(t){"use strict";try{self["workbox:core:6.5.4"]&&_()}catch(t){}const e=(t,...e)=>{let s=t;return e.length>0&&(s+=` :: ${JSON.stringify(e)}`),s};class s extends Error{constructor(t,s){super(e(t,s)),this.name=t,this.details=s}}try{self["workbox:routing:6.5.4"]&&_()}catch(t){}const n=t=>t&&"object"==typeof t?t:{handle:t};class r{constructor(t,e,s="GET"){this.handler=n(e),this.match=t,this.method=s}setCatchHandler(t){this.catchHandler=n(t)}}class i extends r{constructor(t,e,s){super((({url:e})=>{const s=t.exec(e.href);if(s&&(e.origin===location.origin||0===s.index))return s.slice(1)}),e,s)}}class a{constructor(){this.t=new Map,this.i=new Map}get routes(){return this.t}addFetchListener(){self.addEventListener("fetch",(t=>{const{request:e}=t,s=this.handleRequest({request:e,event:t});s&&t.respondWith(s)}))}addCacheListener(){self.addEventListener("message",(t=>{if(t.data&&"CACHE_URLS"===t.data.type){const{payload:e}=t.data,s=Promise.all(e.urlsToCache.map((e=>{"string"==typeof e&&(e=[e]);const s=new Request(...e);return this.handleRequest({request:s,event:t})})));t.waitUntil(s),t.ports&&t.ports[0]&&s.then((()=>t.ports[0].postMessage(!0)))}}))}handleRequest({request:t,event:e}){const s=new URL(t.url,location.href);if(!s.protocol.startsWith("http"))return;const n=s.origin===location.origin,{params:r,route:i}=this.findMatchingRoute({event:e,request:t,sameOrigin:n,url:s});let a=i&&i.handler;const o=t.method;if(!a&&this.i.has(o)&&(a=this.i.get(o)),!a)return;let c;try{c=a.handle({url:s,request:t,event:e,params:r})}catch(t){c=Promise.reject(t)}const h=i&&i.catchHandler;return c instanceof Promise&&(this.o||h)&&(c=c.catch((async n=>{if(h)try{return await h.handle({url:s,request:t,event:e,params:r})}catch(t){t instanceof Error&&(n=t)}if(this.o)return this.o.handle({url:s,request:t,event:e});throw n}))),c}findMatchingRoute({url:t,sameOrigin:e,request:s,event:n}){const r=this.t.get(s.method)||[];for(const i of r){let r;const a=i.match({url:t,sameOrigin:e,request:s,event:n});if(a)return r=a,(Array.isArray(r)&&0===r.length||a.constructor===Object&&0===Object.keys(a).length||"boolean"==typeof a)&&(r=void 0),{route:i,params:r}}return{}}setDefaultHandler(t,e="GET"){this.i.set(e,n(t))}setCatchHandler(t){this.o=n(t)}registerRoute(t){this.t.has(t.method)||this.t.set(t.method,[]),this.t.get(t.method).push(t)}unregisterRoute(t){if(!this.t.has(t.method))throw new s("unregister-route-but-not-found-with-method",{method:t.method});const e=this.t.get(t.method).indexOf(t);if(!(e>-1))throw new s("unregister-route-route-not-registered");this.t.get(t.method).splice(e,1)}}let o;const c=()=>(o||(o=new a,o.addFetchListener(),o.addCacheListener()),o);function h(t,e,n){let a;if("string"==typeof t){const s=new URL(t,location.href);a=new r((({url:t})=>t.href===s.href),e,n)}else if(t instanceof RegExp)a=new i(t,e,n);else if("function"==typeof t)a=new r(t,e,n);else{if(!(t instanceof r))throw new s("unsupported-route-type",{moduleName:"workbox-routing",funcName:"registerRoute",paramName:"capture"});a=t}return c().registerRoute(a),a}try{self["workbox:strategies:6.5.4"]&&_()}catch(t){}const u={cacheWillUpdate:async({response:t})=>200===t.status||0===t.status?t:null},l={googleAnalytics:"googleAnalytics",precache:"precache-v2",prefix:"workbox",runtime:"runtime",suffix:"undefined"!=typeof registration?registration.scope:""},f=t=>[l.prefix,t,l.suffix].filter((t=>t&&t.length>0)).join("-"),w=t=>t||f(l.precache),d=t=>t||f(l.runtime);function p(t,e){const s=new URL(t);for(const t of e)s.searchParams.delete(t);return s.href}class y{constructor(){this.promise=new Promise(((t,e)=>{this.resolve=t,this.reject=e}))}}const g=new Set;function m(t){return"string"==typeof t?new Request(t):t}class R{constructor(t,e){this.h={},Object.assign(this,e),this.event=e.event,this.u=t,this.l=new y,this.p=[],this.m=[...t.plugins],this.R=new Map;for(const t of this.m)this.R.set(t,{});this.event.waitUntil(this.l.promise)}async fetch(t){const{event:e}=this;let n=m(t);if("navigate"===n.mode&&e instanceof FetchEvent&&e.preloadResponse){const t=await e.preloadResponse;if(t)return t}const r=this.hasCallback("fetchDidFail")?n.clone():null;try{for(const t of this.iterateCallbacks("requestWillFetch"))n=await t({request:n.clone(),event:e})}catch(t){if(t instanceof Error)throw new s("plugin-error-request-will-fetch",{thrownErrorMessage:t.message})}const i=n.clone();try{let t;t=await fetch(n,"navigate"===n.mode?void 0:this.u.fetchOptions);for(const s of this.iterateCallbacks("fetchDidSucceed"))t=await s({event:e,request:i,response:t});return t}catch(t){throw r&&await this.runCallbacks("fetchDidFail",{error:t,event:e,originalRequest:r.clone(),request:i.clone()}),t}}async fetchAndCachePut(t){const e=await this.fetch(t),s=e.clone();return this.waitUntil(this.cachePut(t,s)),e}async cacheMatch(t){const e=m(t);let s;const{cacheName:n,matchOptions:r}=this.u,i=await this.getCacheKey(e,"read"),a=Object.assign(Object.assign({},r),{cacheName:n});s=await caches.match(i,a);for(const t of this.iterateCallbacks("cachedResponseWillBeUsed"))s=await t({cacheName:n,matchOptions:r,cachedResponse:s,request:i,event:this.event})||void 0;return s}async cachePut(t,e){const n=m(t);var r;await(r=0,new Promise((t=>setTimeout(t,r))));const i=await this.getCacheKey(n,"write");if(!e)throw new s("cache-put-with-no-response",{url:(a=i.url,new URL(String(a),location.href).href.replace(new RegExp(`^${location.origin}`),""))});var a;const o=await this.v(e);if(!o)return!1;const{cacheName:c,matchOptions:h}=this.u,u=await self.caches.open(c),l=this.hasCallback("cacheDidUpdate"),f=l?await async function(t,e,s,n){const r=p(e.url,s);if(e.url===r)return t.match(e,n);const i=Object.assign(Object.assign({},n),{ignoreSearch:!0}),a=await t.keys(e,i);for(const e of a)if(r===p(e.url,s))return t.match(e,n)}(u,i.clone(),["__WB_REVISION__"],h):null;try{await u.put(i,l?o.clone():o)}catch(t){if(t instanceof Error)throw"QuotaExceededError"===t.name&&await async function(){for(const t of g)await t()}(),t}for(const t of this.iterateCallbacks("cacheDidUpdate"))await t({cacheName:c,oldResponse:f,newResponse:o.clone(),request:i,event:this.event});return!0}async getCacheKey(t,e){const s=`${t.url} | ${e}`;if(!this.h[s]){let n=t;for(const t of this.iterateCallbacks("cacheKeyWillBeUsed"))n=m(await t({mode:e,request:n,event:this.event,params:this.params}));this.h[s]=n}return this.h[s]}hasCallback(t){for(const e of this.u.plugins)if(t in e)return!0;return!1}async runCallbacks(t,e){for(const s of this.iterateCallbacks(t))await s(e)}*iterateCallbacks(t){for(const e of this.u.plugins)if("function"==typeof e[t]){const s=this.R.get(e),n=n=>{const r=Object.assign(Object.assign({},n),{state:s});return e[t](r)};yield n}}waitUntil(t){return this.p.push(t),t}async doneWaiting(){let t;for(;t=this.p.shift();)await t}destroy(){this.l.resolve(null)}async v(t){let e=t,s=!1;for(const t of this.iterateCallbacks("cacheWillUpdate"))if(e=await t({request:this.request,response:e,event:this.event})||void 0,s=!0,!e)break;return s||e&&200!==e.status&&(e=void 0),e}}class v{constructor(t={}){this.cacheName=d(t.cacheName),this.plugins=t.plugins||[],this.fetchOptions=t.fetchOptions,this.matchOptions=t.matchOptions}handle(t){const[e]=this.handleAll(t);return e}handleAll(t){t instanceof FetchEvent&&(t={event:t,request:t.request});const e=t.event,s="string"==typeof t.request?new Request(t.request):t.request,n="params"in t?t.params:void 0,r=new R(this,{event:e,request:s,params:n}),i=this.q(r,s,e);return[i,this.D(i,r,s,e)]}async q(t,e,n){let r;await t.runCallbacks("handlerWillStart",{event:n,request:e});try{if(r=await this.U(e,t),!r||"error"===r.type)throw new s("no-response",{url:e.url})}catch(s){if(s instanceof Error)for(const i of t.iterateCallbacks("handlerDidError"))if(r=await i({error:s,event:n,request:e}),r)break;if(!r)throw s}for(const s of t.iterateCallbacks("handlerWillRespond"))r=await s({event:n,request:e,response:r});return r}async D(t,e,s,n){let r,i;try{r=await t}catch(i){}try{await e.runCallbacks("handlerDidRespond",{event:n,request:s,response:r}),await e.doneWaiting()}catch(t){t instanceof Error&&(i=t)}if(await e.runCallbacks("handlerDidComplete",{event:n,request:s,response:r,error:i}),e.destroy(),i)throw i}}function b(t){t.then((()=>{}))}function q(){return q=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var s=arguments[e];for(var n in s)({}).hasOwnProperty.call(s,n)&&(t[n]=s[n])}return t},q.apply(null,arguments)}const D=(t,e)=>e.some((e=>t instanceof e));let U,x;const L=new WeakMap,I=new WeakMap,C=new WeakMap,E=new WeakMap,N=new WeakMap;let O={get(t,e,s){if(t instanceof IDBTransaction){if("done"===e)return I.get(t);if("objectStoreNames"===e)return t.objectStoreNames||C.get(t);if("store"===e)return s.objectStoreNames[1]?void 0:s.objectStore(s.objectStoreNames[0])}return B(t[e])},set:(t,e,s)=>(t[e]=s,!0),has:(t,e)=>t instanceof IDBTransaction&&("done"===e||"store"===e)||e in t};function T(t){return t!==IDBDatabase.prototype.transaction||"objectStoreNames"in IDBTransaction.prototype?(x||(x=[IDBCursor.prototype.advance,IDBCursor.prototype.continue,IDBCursor.prototype.continuePrimaryKey])).includes(t)?function(...e){return t.apply(P(this),e),B(L.get(this))}:function(...e){return B(t.apply(P(this),e))}:function(e,...s){const n=t.call(P(this),e,...s);return C.set(n,e.sort?e.sort():[e]),B(n)}}function k(t){return"function"==typeof t?T(t):(t instanceof IDBTransaction&&function(t){if(I.has(t))return;const e=new Promise(((e,s)=>{const n=()=>{t.removeEventListener("complete",r),t.removeEventListener("error",i),t.removeEventListener("abort",i)},r=()=>{e(),n()},i=()=>{s(t.error||new DOMException("AbortError","AbortError")),n()};t.addEventListener("complete",r),t.addEventListener("error",i),t.addEventListener("abort",i)}));I.set(t,e)}(t),D(t,U||(U=[IDBDatabase,IDBObjectStore,IDBIndex,IDBCursor,IDBTransaction]))?new Proxy(t,O):t)}function B(t){if(t instanceof IDBRequest)return function(t){const e=new Promise(((e,s)=>{const n=()=>{t.removeEventListener("success",r),t.removeEventListener("error",i)},r=()=>{e(B(t.result)),n()},i=()=>{s(t.error),n()};t.addEventListener("success",r),t.addEventListener("error",i)}));return e.then((e=>{e instanceof IDBCursor&&L.set(e,t)})).catch((()=>{})),N.set(e,t),e}(t);if(E.has(t))return E.get(t);const e=k(t);return e!==t&&(E.set(t,e),N.set(e,t)),e}const P=t=>N.get(t);const M=["get","getKey","getAll","getAllKeys","count"],W=["put","add","delete","clear"],j=new Map;function S(t,e){if(!(t instanceof IDBDatabase)||e in t||"string"!=typeof e)return;if(j.get(e))return j.get(e);const s=e.replace(/FromIndex$/,""),n=e!==s,r=W.includes(s);if(!(s in(n?IDBIndex:IDBObjectStore).prototype)||!r&&!M.includes(s))return;const i=async function(t,...e){const i=this.transaction(t,r?"readwrite":"readonly");let a=i.store;return n&&(a=a.index(e.shift())),(await Promise.all([a[s](...e),r&&i.done]))[0]};return j.set(e,i),i}O=(t=>q({},t,{get:(e,s,n)=>S(e,s)||t.get(e,s,n),has:(e,s)=>!!S(e,s)||t.has(e,s)}))(O);try{self["workbox:expiration:6.5.4"]&&_()}catch(t){}const K="cache-entries",A=t=>{const e=new URL(t,location.href);return e.hash="",e.href};class F{constructor(t){this._=null,this.L=t}I(t){const e=t.createObjectStore(K,{keyPath:"id"});e.createIndex("cacheName","cacheName",{unique:!1}),e.createIndex("timestamp","timestamp",{unique:!1})}C(t){this.I(t),this.L&&function(t,{blocked:e}={}){const s=indexedDB.deleteDatabase(t);e&&s.addEventListener("blocked",(t=>e(t.oldVersion,t))),B(s).then((()=>{}))}(this.L)}async setTimestamp(t,e){const s={url:t=A(t),timestamp:e,cacheName:this.L,id:this.N(t)},n=(await this.getDb()).transaction(K,"readwrite",{durability:"relaxed"});await n.store.put(s),await n.done}async getTimestamp(t){const e=await this.getDb(),s=await e.get(K,this.N(t));return null==s?void 0:s.timestamp}async expireEntries(t,e){const s=await this.getDb();let n=await s.transaction(K).store.index("timestamp").openCursor(null,"prev");const r=[];let i=0;for(;n;){const s=n.value;s.cacheName===this.L&&(t&&s.timestamp<t||e&&i>=e?r.push(n.value):i++),n=await n.continue()}const a=[];for(const t of r)await s.delete(K,t.id),a.push(t.url);return a}N(t){return this.L+"|"+A(t)}async getDb(){return this._||(this._=await function(t,e,{blocked:s,upgrade:n,blocking:r,terminated:i}={}){const a=indexedDB.open(t,e),o=B(a);return n&&a.addEventListener("upgradeneeded",(t=>{n(B(a.result),t.oldVersion,t.newVersion,B(a.transaction),t)})),s&&a.addEventListener("blocked",(t=>s(t.oldVersion,t.newVersion,t))),o.then((t=>{i&&t.addEventListener("close",(()=>i())),r&&t.addEventListener("versionchange",(t=>r(t.oldVersion,t.newVersion,t)))})).catch((()=>{})),o}("workbox-expiration",1,{upgrade:this.C.bind(this)})),this._}}class H{constructor(t,e={}){this.O=!1,this.T=!1,this.k=e.maxEntries,this.B=e.maxAgeSeconds,this.P=e.matchOptions,this.L=t,this.M=new F(t)}async expireEntries(){if(this.O)return void(this.T=!0);this.O=!0;const t=this.B?Date.now()-1e3*this.B:0,e=await this.M.expireEntries(t,this.k),s=await self.caches.open(this.L);for(const t of e)await s.delete(t,this.P);this.O=!1,this.T&&(this.T=!1,b(this.expireEntries()))}async updateTimestamp(t){await this.M.setTimestamp(t,Date.now())}async isURLExpired(t){if(this.B){const e=await this.M.getTimestamp(t),s=Date.now()-1e3*this.B;return void 0===e||e<s}return!1}async delete(){this.T=!1,await this.M.expireEntries(1/0)}}try{self["workbox:range-requests:6.5.4"]&&_()}catch(t){}async function $(t,e){try{if(206===e.status)return e;const n=t.headers.get("range");if(!n)throw new s("no-range-header");const r=function(t){const e=t.trim().toLowerCase();if(!e.startsWith("bytes="))throw new s("unit-must-be-bytes",{normalizedRangeHeader:e});if(e.includes(","))throw new s("single-range-only",{normalizedRangeHeader:e});const n=/(\d*)-(\d*)/.exec(e);if(!n||!n[1]&&!n[2])throw new s("invalid-range-values",{normalizedRangeHeader:e});return{start:""===n[1]?void 0:Number(n[1]),end:""===n[2]?void 0:Number(n[2])}}(n),i=await e.blob(),a=function(t,e,n){const r=t.size;if(n&&n>r||e&&e<0)throw new s("range-not-satisfiable",{size:r,end:n,start:e});let i,a;return void 0!==e&&void 0!==n?(i=e,a=n+1):void 0!==e&&void 0===n?(i=e,a=r):void 0!==n&&void 0===e&&(i=r-n,a=r),{start:i,end:a}}(i,r.start,r.end),o=i.slice(a.start,a.end),c=o.size,h=new Response(o,{status:206,statusText:"Partial Content",headers:e.headers});return h.headers.set("Content-Length",String(c)),h.headers.set("Content-Range",`bytes ${a.start}-${a.end-1}/${i.size}`),h}catch(t){return new Response("",{status:416,statusText:"Range Not Satisfiable"})}}function z(t,e){const s=e();return t.waitUntil(s),s}try{self["workbox:precaching:6.5.4"]&&_()}catch(t){}function G(t){if(!t)throw new s("add-to-cache-list-unexpected-type",{entry:t});if("string"==typeof t){const e=new URL(t,location.href);return{cacheKey:e.href,url:e.href}}const{revision:e,url:n}=t;if(!n)throw new s("add-to-cache-list-unexpected-type",{entry:t});if(!e){const t=new URL(n,location.href);return{cacheKey:t.href,url:t.href}}const r=new URL(n,location.href),i=new URL(n,location.href);return r.searchParams.set("__WB_REVISION__",e),{cacheKey:r.href,url:i.href}}class V{constructor(){this.updatedURLs=[],this.notUpdatedURLs=[],this.handlerWillStart=async({request:t,state:e})=>{e&&(e.originalRequest=t)},this.cachedResponseWillBeUsed=async({event:t,state:e,cachedResponse:s})=>{if("install"===t.type&&e&&e.originalRequest&&e.originalRequest instanceof Request){const t=e.originalRequest.url;s?this.notUpdatedURLs.push(t):this.updatedURLs.push(t)}return s}}}class J{constructor({precacheController:t}){this.cacheKeyWillBeUsed=async({request:t,params:e})=>{const s=(null==e?void 0:e.cacheKey)||this.W.getCacheKeyForURL(t.url);return s?new Request(s,{headers:t.headers}):t},this.W=t}}let Q,X;async function Y(t,e){let n=null;if(t.url){n=new URL(t.url).origin}if(n!==self.location.origin)throw new s("cross-origin-copy-response",{origin:n});const r=t.clone(),i={headers:new Headers(r.headers),status:r.status,statusText:r.statusText},a=e?e(i):i,o=function(){if(void 0===Q){const t=new Response("");if("body"in t)try{new Response(t.body),Q=!0}catch(t){Q=!1}Q=!1}return Q}()?r.body:await r.blob();return new Response(o,a)}class Z extends v{constructor(t={}){t.cacheName=w(t.cacheName),super(t),this.j=!1!==t.fallbackToNetwork,this.plugins.push(Z.copyRedirectedCacheableResponsesPlugin)}async U(t,e){const s=await e.cacheMatch(t);return s||(e.event&&"install"===e.event.type?await this.S(t,e):await this.K(t,e))}async K(t,e){let n;const r=e.params||{};if(!this.j)throw new s("missing-precache-entry",{cacheName:this.cacheName,url:t.url});{const s=r.integrity,i=t.integrity,a=!i||i===s;n=await e.fetch(new Request(t,{integrity:"no-cors"!==t.mode?i||s:void 0})),s&&a&&"no-cors"!==t.mode&&(this.A(),await e.cachePut(t,n.clone()))}return n}async S(t,e){this.A();const n=await e.fetch(t);if(!await e.cachePut(t,n.clone()))throw new s("bad-precaching-response",{url:t.url,status:n.status});return n}A(){let t=null,e=0;for(const[s,n]of this.plugins.entries())n!==Z.copyRedirectedCacheableResponsesPlugin&&(n===Z.defaultPrecacheCacheabilityPlugin&&(t=s),n.cacheWillUpdate&&e++);0===e?this.plugins.push(Z.defaultPrecacheCacheabilityPlugin):e>1&&null!==t&&this.plugins.splice(t,1)}}Z.defaultPrecacheCacheabilityPlugin={cacheWillUpdate:async({response:t})=>!t||t.status>=400?null:t},Z.copyRedirectedCacheableResponsesPlugin={cacheWillUpdate:async({response:t})=>t.redirected?await Y(t):t};class tt{constructor({cacheName:t,plugins:e=[],fallbackToNetwork:s=!0}={}){this.F=new Map,this.H=new Map,this.$=new Map,this.u=new Z({cacheName:w(t),plugins:[...e,new J({precacheController:this})],fallbackToNetwork:s}),this.install=this.install.bind(this),this.activate=this.activate.bind(this)}get strategy(){return this.u}precache(t){this.addToCacheList(t),this.G||(self.addEventListener("install",this.install),self.addEventListener("activate",this.activate),this.G=!0)}addToCacheList(t){const e=[];for(const n of t){"string"==typeof n?e.push(n):n&&void 0===n.revision&&e.push(n.url);const{cacheKey:t,url:r}=G(n),i="string"!=typeof n&&n.revision?"reload":"default";if(this.F.has(r)&&this.F.get(r)!==t)throw new s("add-to-cache-list-conflicting-entries",{firstEntry:this.F.get(r),secondEntry:t});if("string"!=typeof n&&n.integrity){if(this.$.has(t)&&this.$.get(t)!==n.integrity)throw new s("add-to-cache-list-conflicting-integrities",{url:r});this.$.set(t,n.integrity)}if(this.F.set(r,t),this.H.set(r,i),e.length>0){const t=`Workbox is precaching URLs without revision info: ${e.join(", ")}\nThis is generally NOT safe. Learn more at https://bit.ly/wb-precache`;console.warn(t)}}}install(t){return z(t,(async()=>{const e=new V;this.strategy.plugins.push(e);for(const[e,s]of this.F){const n=this.$.get(s),r=this.H.get(e),i=new Request(e,{integrity:n,cache:r,credentials:"same-origin"});await Promise.all(this.strategy.handleAll({params:{cacheKey:s},request:i,event:t}))}const{updatedURLs:s,notUpdatedURLs:n}=e;return{updatedURLs:s,notUpdatedURLs:n}}))}activate(t){return z(t,(async()=>{const t=await self.caches.open(this.strategy.cacheName),e=await t.keys(),s=new Set(this.F.values()),n=[];for(const r of e)s.has(r.url)||(await t.delete(r),n.push(r.url));return{deletedURLs:n}}))}getURLsToCacheKeys(){return this.F}getCachedURLs(){return[...this.F.keys()]}getCacheKeyForURL(t){const e=new URL(t,location.href);return this.F.get(e.href)}getIntegrityForCacheKey(t){return this.$.get(t)}async matchPrecache(t){const e=t instanceof Request?t.url:t,s=this.getCacheKeyForURL(e);if(s){return(await self.caches.open(this.strategy.cacheName)).match(s)}}createHandlerBoundToURL(t){const e=this.getCacheKeyForURL(t);if(!e)throw new s("non-precached-url",{url:t});return s=>(s.request=new Request(t),s.params=Object.assign({cacheKey:e},s.params),this.strategy.handle(s))}}const et=()=>(X||(X=new tt),X);class st extends r{constructor(t,e){super((({request:s})=>{const n=t.getURLsToCacheKeys();for(const r of function*(t,{ignoreURLParametersMatching:e=[/^utm_/,/^fbclid$/],directoryIndex:s="index.html",cleanURLs:n=!0,urlManipulation:r}={}){const i=new URL(t,location.href);i.hash="",yield i.href;const a=function(t,e=[]){for(const s of[...t.searchParams.keys()])e.some((t=>t.test(s)))&&t.searchParams.delete(s);return t}(i,e);if(yield a.href,s&&a.pathname.endsWith("/")){const t=new URL(a.href);t.pathname+=s,yield t.href}if(n){const t=new URL(a.href);t.pathname+=".html",yield t.href}if(r){const t=r({url:i});for(const e of t)yield e.href}}(s.url,e)){const e=n.get(r);if(e){return{cacheKey:e,integrity:t.getIntegrityForCacheKey(e)}}}}),t.strategy)}}t.CacheFirst=class extends v{async U(t,e){let n,r=await e.cacheMatch(t);if(!r)try{r=await e.fetchAndCachePut(t)}catch(t){t instanceof Error&&(n=t)}if(!r)throw new s("no-response",{url:t.url,error:n});return r}},t.ExpirationPlugin=class{constructor(t={}){this.cachedResponseWillBeUsed=async({event:t,request:e,cacheName:s,cachedResponse:n})=>{if(!n)return null;const r=this.V(n),i=this.J(s);b(i.expireEntries());const a=i.updateTimestamp(e.url);if(t)try{t.waitUntil(a)}catch(t){}return r?n:null},this.cacheDidUpdate=async({cacheName:t,request:e})=>{const s=this.J(t);await s.updateTimestamp(e.url),await s.expireEntries()},this.X=t,this.B=t.maxAgeSeconds,this.Y=new Map,t.purgeOnQuotaError&&function(t){g.add(t)}((()=>this.deleteCacheAndMetadata()))}J(t){if(t===d())throw new s("expire-custom-caches-only");let e=this.Y.get(t);return e||(e=new H(t,this.X),this.Y.set(t,e)),e}V(t){if(!this.B)return!0;const e=this.Z(t);if(null===e)return!0;return e>=Date.now()-1e3*this.B}Z(t){if(!t.headers.has("date"))return null;const e=t.headers.get("date"),s=new Date(e).getTime();return isNaN(s)?null:s}async deleteCacheAndMetadata(){for(const[t,e]of this.Y)await self.caches.delete(t),await e.delete();this.Y=new Map}},t.NetworkFirst=class extends v{constructor(t={}){super(t),this.plugins.some((t=>"cacheWillUpdate"in t))||this.plugins.unshift(u),this.tt=t.networkTimeoutSeconds||0}async U(t,e){const n=[],r=[];let i;if(this.tt){const{id:s,promise:a}=this.et({request:t,logs:n,handler:e});i=s,r.push(a)}const a=this.st({timeoutId:i,request:t,logs:n,handler:e});r.push(a);const o=await e.waitUntil((async()=>await e.waitUntil(Promise.race(r))||await a)());if(!o)throw new s("no-response",{url:t.url});return o}et({request:t,logs:e,handler:s}){let n;return{promise:new Promise((e=>{n=setTimeout((async()=>{e(await s.cacheMatch(t))}),1e3*this.tt)})),id:n}}async st({timeoutId:t,request:e,logs:s,handler:n}){let r,i;try{i=await n.fetchAndCachePut(e)}catch(t){t instanceof Error&&(r=t)}return t&&clearTimeout(t),!r&&i||(i=await n.cacheMatch(e)),i}},t.RangeRequestsPlugin=class{constructor(){this.cachedResponseWillBeUsed=async({request:t,cachedResponse:e})=>e&&t.headers.has("range")?await $(t,e):e}},t.StaleWhileRevalidate=class extends v{constructor(t={}){super(t),this.plugins.some((t=>"cacheWillUpdate"in t))||this.plugins.unshift(u)}async U(t,e){const n=e.fetchAndCachePut(t).catch((()=>{}));e.waitUntil(n);let r,i=await e.cacheMatch(t);if(i);else try{i=await n}catch(t){t instanceof Error&&(r=t)}if(!i)throw new s("no-response",{url:t.url,error:r});return i}},t.cleanupOutdatedCaches=function(){self.addEventListener("activate",(t=>{const e=w();t.waitUntil((async(t,e="-precache-")=>{const s=(await self.caches.keys()).filter((s=>s.includes(e)&&s.includes(self.registration.scope)&&s!==t));return await Promise.all(s.map((t=>self.caches.delete(t)))),s})(e).then((t=>{})))}))},t.clientsClaim=function(){self.addEventListener("activate",(()=>self.clients.claim()))},t.precacheAndRoute=function(t,e){!function(t){et().precache(t)}(t),function(t){const e=et();h(new st(e,t))}(e)},t.registerRoute=h}));
@@ -1,1 +0,0 @@
-define(["exports"],(function(t){"use strict";try{self["workbox:core:6.6.0"]&&_()}catch(t){}const e=(t,...e)=>{let s=t;return e.length>0&&(s+=` :: ${JSON.stringify(e)}`),s};class s extends Error{constructor(t,s){super(e(t,s)),this.name=t,this.details=s}}try{self["workbox:routing:6.6.0"]&&_()}catch(t){}const n=t=>t&&"object"==typeof t?t:{handle:t};class r{constructor(t,e,s="GET"){this.handler=n(e),this.match=t,this.method=s}setCatchHandler(t){this.catchHandler=n(t)}}class i extends r{constructor(t,e,s){super((({url:e})=>{const s=t.exec(e.href);if(s&&(e.origin===location.origin||0===s.index))return s.slice(1)}),e,s)}}class a{constructor(){this.t=new Map,this.i=new Map}get routes(){return this.t}addFetchListener(){self.addEventListener("fetch",(t=>{const{request:e}=t,s=this.handleRequest({request:e,event:t});s&&t.respondWith(s)}))}addCacheListener(){self.addEventListener("message",(t=>{if(t.data&&"CACHE_URLS"===t.data.type){const{payload:e}=t.data,s=Promise.all(e.urlsToCache.map((e=>{"string"==typeof e&&(e=[e]);const s=new Request(...e);return this.handleRequest({request:s,event:t})})));t.waitUntil(s),t.ports&&t.ports[0]&&s.then((()=>t.ports[0].postMessage(!0)))}}))}handleRequest({request:t,event:e}){const s=new URL(t.url,location.href);if(!s.protocol.startsWith("http"))return;const n=s.origin===location.origin,{params:r,route:i}=this.findMatchingRoute({event:e,request:t,sameOrigin:n,url:s});let a=i&&i.handler;const o=t.method;if(!a&&this.i.has(o)&&(a=this.i.get(o)),!a)return;let c;try{c=a.handle({url:s,request:t,event:e,params:r})}catch(t){c=Promise.reject(t)}const h=i&&i.catchHandler;return c instanceof Promise&&(this.o||h)&&(c=c.catch((async n=>{if(h)try{return await h.handle({url:s,request:t,event:e,params:r})}catch(t){t instanceof Error&&(n=t)}if(this.o)return this.o.handle({url:s,request:t,event:e});throw n}))),c}findMatchingRoute({url:t,sameOrigin:e,request:s,event:n}){const r=this.t.get(s.method)||[];for(const i of r){let r;const a=i.match({url:t,sameOrigin:e,request:s,event:n});if(a)return r=a,(Array.isArray(r)&&0===r.length||a.constructor===Object&&0===Object.keys(a).length||"boolean"==typeof a)&&(r=void 0),{route:i,params:r}}return{}}setDefaultHandler(t,e="GET"){this.i.set(e,n(t))}setCatchHandler(t){this.o=n(t)}registerRoute(t){this.t.has(t.method)||this.t.set(t.method,[]),this.t.get(t.method).push(t)}unregisterRoute(t){if(!this.t.has(t.method))throw new s("unregister-route-but-not-found-with-method",{method:t.method});const e=this.t.get(t.method).indexOf(t);if(!(e>-1))throw new s("unregister-route-route-not-registered");this.t.get(t.method).splice(e,1)}}let o;const c=()=>(o||(o=new a,o.addFetchListener(),o.addCacheListener()),o);function h(t,e,n){let a;if("string"==typeof t){const s=new URL(t,location.href);a=new r((({url:t})=>t.href===s.href),e,n)}else if(t instanceof RegExp)a=new i(t,e,n);else if("function"==typeof t)a=new r(t,e,n);else{if(!(t instanceof r))throw new s("unsupported-route-type",{moduleName:"workbox-routing",funcName:"registerRoute",paramName:"capture"});a=t}return c().registerRoute(a),a}try{self["workbox:strategies:6.6.0"]&&_()}catch(t){}const u={cacheWillUpdate:async({response:t})=>200===t.status||0===t.status?t:null},l={googleAnalytics:"googleAnalytics",precache:"precache-v2",prefix:"workbox",runtime:"runtime",suffix:"undefined"!=typeof registration?registration.scope:""},f=t=>[l.prefix,t,l.suffix].filter((t=>t&&t.length>0)).join("-"),w=t=>t||f(l.precache),d=t=>t||f(l.runtime);function p(t,e){const s=new URL(t);for(const t of e)s.searchParams.delete(t);return s.href}class y{constructor(){this.promise=new Promise(((t,e)=>{this.resolve=t,this.reject=e}))}}const g=new Set;function m(t){return"string"==typeof t?new Request(t):t}class R{constructor(t,e){this.h={},Object.assign(this,e),this.event=e.event,this.u=t,this.l=new y,this.p=[],this.m=[...t.plugins],this.R=new Map;for(const t of this.m)this.R.set(t,{});this.event.waitUntil(this.l.promise)}async fetch(t){const{event:e}=this;let n=m(t);if("navigate"===n.mode&&e instanceof FetchEvent&&e.preloadResponse){const t=await e.preloadResponse;if(t)return t}const r=this.hasCallback("fetchDidFail")?n.clone():null;try{for(const t of this.iterateCallbacks("requestWillFetch"))n=await t({request:n.clone(),event:e})}catch(t){if(t instanceof Error)throw new s("plugin-error-request-will-fetch",{thrownErrorMessage:t.message})}const i=n.clone();try{let t;t=await fetch(n,"navigate"===n.mode?void 0:this.u.fetchOptions);for(const s of this.iterateCallbacks("fetchDidSucceed"))t=await s({event:e,request:i,response:t});return t}catch(t){throw r&&await this.runCallbacks("fetchDidFail",{error:t,event:e,originalRequest:r.clone(),request:i.clone()}),t}}async fetchAndCachePut(t){const e=await this.fetch(t),s=e.clone();return this.waitUntil(this.cachePut(t,s)),e}async cacheMatch(t){const e=m(t);let s;const{cacheName:n,matchOptions:r}=this.u,i=await this.getCacheKey(e,"read"),a=Object.assign(Object.assign({},r),{cacheName:n});s=await caches.match(i,a);for(const t of this.iterateCallbacks("cachedResponseWillBeUsed"))s=await t({cacheName:n,matchOptions:r,cachedResponse:s,request:i,event:this.event})||void 0;return s}async cachePut(t,e){const n=m(t);var r;await(r=0,new Promise((t=>setTimeout(t,r))));const i=await this.getCacheKey(n,"write");if(!e)throw new s("cache-put-with-no-response",{url:(a=i.url,new URL(String(a),location.href).href.replace(new RegExp(`^${location.origin}`),""))});var a;const o=await this.v(e);if(!o)return!1;const{cacheName:c,matchOptions:h}=this.u,u=await self.caches.open(c),l=this.hasCallback("cacheDidUpdate"),f=l?await async function(t,e,s,n){const r=p(e.url,s);if(e.url===r)return t.match(e,n);const i=Object.assign(Object.assign({},n),{ignoreSearch:!0}),a=await t.keys(e,i);for(const e of a)if(r===p(e.url,s))return t.match(e,n)}(u,i.clone(),["__WB_REVISION__"],h):null;try{await u.put(i,l?o.clone():o)}catch(t){if(t instanceof Error)throw"QuotaExceededError"===t.name&&await async function(){for(const t of g)await t()}(),t}for(const t of this.iterateCallbacks("cacheDidUpdate"))await t({cacheName:c,oldResponse:f,newResponse:o.clone(),request:i,event:this.event});return!0}async getCacheKey(t,e){const s=`${t.url} | ${e}`;if(!this.h[s]){let n=t;for(const t of this.iterateCallbacks("cacheKeyWillBeUsed"))n=m(await t({mode:e,request:n,event:this.event,params:this.params}));this.h[s]=n}return this.h[s]}hasCallback(t){for(const e of this.u.plugins)if(t in e)return!0;return!1}async runCallbacks(t,e){for(const s of this.iterateCallbacks(t))await s(e)}*iterateCallbacks(t){for(const e of this.u.plugins)if("function"==typeof e[t]){const s=this.R.get(e),n=n=>{const r=Object.assign(Object.assign({},n),{state:s});return e[t](r)};yield n}}waitUntil(t){return this.p.push(t),t}async doneWaiting(){let t;for(;t=this.p.shift();)await t}destroy(){this.l.resolve(null)}async v(t){let e=t,s=!1;for(const t of this.iterateCallbacks("cacheWillUpdate"))if(e=await t({request:this.request,response:e,event:this.event})||void 0,s=!0,!e)break;return s||e&&200!==e.status&&(e=void 0),e}}class v{constructor(t={}){this.cacheName=d(t.cacheName),this.plugins=t.plugins||[],this.fetchOptions=t.fetchOptions,this.matchOptions=t.matchOptions}handle(t){const[e]=this.handleAll(t);return e}handleAll(t){t instanceof FetchEvent&&(t={event:t,request:t.request});const e=t.event,s="string"==typeof t.request?new Request(t.request):t.request,n="params"in t?t.params:void 0,r=new R(this,{event:e,request:s,params:n}),i=this.q(r,s,e);return[i,this.D(i,r,s,e)]}async q(t,e,n){let r;await t.runCallbacks("handlerWillStart",{event:n,request:e});try{if(r=await this.U(e,t),!r||"error"===r.type)throw new s("no-response",{url:e.url})}catch(s){if(s instanceof Error)for(const i of t.iterateCallbacks("handlerDidError"))if(r=await i({error:s,event:n,request:e}),r)break;if(!r)throw s}for(const s of t.iterateCallbacks("handlerWillRespond"))r=await s({event:n,request:e,response:r});return r}async D(t,e,s,n){let r,i;try{r=await t}catch(i){}try{await e.runCallbacks("handlerDidRespond",{event:n,request:s,response:r}),await e.doneWaiting()}catch(t){t instanceof Error&&(i=t)}if(await e.runCallbacks("handlerDidComplete",{event:n,request:s,response:r,error:i}),e.destroy(),i)throw i}}function b(t){t.then((()=>{}))}function q(){return q=Object.assign?Object.assign.bind():function(t){for(var e=1;e<arguments.length;e++){var s=arguments[e];for(var n in s)Object.prototype.hasOwnProperty.call(s,n)&&(t[n]=s[n])}return t},q.apply(this,arguments)}const D=(t,e)=>e.some((e=>t instanceof e));let U,x;const L=new WeakMap,I=new WeakMap,C=new WeakMap,E=new WeakMap,N=new WeakMap;let O={get(t,e,s){if(t instanceof IDBTransaction){if("done"===e)return I.get(t);if("objectStoreNames"===e)return t.objectStoreNames||C.get(t);if("store"===e)return s.objectStoreNames[1]?void 0:s.objectStore(s.objectStoreNames[0])}return B(t[e])},set:(t,e,s)=>(t[e]=s,!0),has:(t,e)=>t instanceof IDBTransaction&&("done"===e||"store"===e)||e in t};function T(t){return t!==IDBDatabase.prototype.transaction||"objectStoreNames"in IDBTransaction.prototype?(x||(x=[IDBCursor.prototype.advance,IDBCursor.prototype.continue,IDBCursor.prototype.continuePrimaryKey])).includes(t)?function(...e){return t.apply(P(this),e),B(L.get(this))}:function(...e){return B(t.apply(P(this),e))}:function(e,...s){const n=t.call(P(this),e,...s);return C.set(n,e.sort?e.sort():[e]),B(n)}}function k(t){return"function"==typeof t?T(t):(t instanceof IDBTransaction&&function(t){if(I.has(t))return;const e=new Promise(((e,s)=>{const n=()=>{t.removeEventListener("complete",r),t.removeEventListener("error",i),t.removeEventListener("abort",i)},r=()=>{e(),n()},i=()=>{s(t.error||new DOMException("AbortError","AbortError")),n()};t.addEventListener("complete",r),t.addEventListener("error",i),t.addEventListener("abort",i)}));I.set(t,e)}(t),D(t,U||(U=[IDBDatabase,IDBObjectStore,IDBIndex,IDBCursor,IDBTransaction]))?new Proxy(t,O):t)}function B(t){if(t instanceof IDBRequest)return function(t){const e=new Promise(((e,s)=>{const n=()=>{t.removeEventListener("success",r),t.removeEventListener("error",i)},r=()=>{e(B(t.result)),n()},i=()=>{s(t.error),n()};t.addEventListener("success",r),t.addEventListener("error",i)}));return e.then((e=>{e instanceof IDBCursor&&L.set(e,t)})).catch((()=>{})),N.set(e,t),e}(t);if(E.has(t))return E.get(t);const e=k(t);return e!==t&&(E.set(t,e),N.set(e,t)),e}const P=t=>N.get(t);const M=["get","getKey","getAll","getAllKeys","count"],W=["put","add","delete","clear"],j=new Map;function S(t,e){if(!(t instanceof IDBDatabase)||e in t||"string"!=typeof e)return;if(j.get(e))return j.get(e);const s=e.replace(/FromIndex$/,""),n=e!==s,r=W.includes(s);if(!(s in(n?IDBIndex:IDBObjectStore).prototype)||!r&&!M.includes(s))return;const i=async function(t,...e){const i=this.transaction(t,r?"readwrite":"readonly");let a=i.store;return n&&(a=a.index(e.shift())),(await Promise.all([a[s](...e),r&&i.done]))[0]};return j.set(e,i),i}O=(t=>q({},t,{get:(e,s,n)=>S(e,s)||t.get(e,s,n),has:(e,s)=>!!S(e,s)||t.has(e,s)}))(O);try{self["workbox:expiration:6.6.0"]&&_()}catch(t){}const K="cache-entries",A=t=>{const e=new URL(t,location.href);return e.hash="",e.href};class F{constructor(t){this._=null,this.L=t}I(t){const e=t.createObjectStore(K,{keyPath:"id"});e.createIndex("cacheName","cacheName",{unique:!1}),e.createIndex("timestamp","timestamp",{unique:!1})}C(t){this.I(t),this.L&&function(t,{blocked:e}={}){const s=indexedDB.deleteDatabase(t);e&&s.addEventListener("blocked",(t=>e(t.oldVersion,t))),B(s).then((()=>{}))}(this.L)}async setTimestamp(t,e){const s={url:t=A(t),timestamp:e,cacheName:this.L,id:this.N(t)},n=(await this.getDb()).transaction(K,"readwrite",{durability:"relaxed"});await n.store.put(s),await n.done}async getTimestamp(t){const e=await this.getDb(),s=await e.get(K,this.N(t));return null==s?void 0:s.timestamp}async expireEntries(t,e){const s=await this.getDb();let n=await s.transaction(K).store.index("timestamp").openCursor(null,"prev");const r=[];let i=0;for(;n;){const s=n.value;s.cacheName===this.L&&(t&&s.timestamp<t||e&&i>=e?r.push(n.value):i++),n=await n.continue()}const a=[];for(const t of r)await s.delete(K,t.id),a.push(t.url);return a}N(t){return this.L+"|"+A(t)}async getDb(){return this._||(this._=await function(t,e,{blocked:s,upgrade:n,blocking:r,terminated:i}={}){const a=indexedDB.open(t,e),o=B(a);return n&&a.addEventListener("upgradeneeded",(t=>{n(B(a.result),t.oldVersion,t.newVersion,B(a.transaction),t)})),s&&a.addEventListener("blocked",(t=>s(t.oldVersion,t.newVersion,t))),o.then((t=>{i&&t.addEventListener("close",(()=>i())),r&&t.addEventListener("versionchange",(t=>r(t.oldVersion,t.newVersion,t)))})).catch((()=>{})),o}("workbox-expiration",1,{upgrade:this.C.bind(this)})),this._}}class H{constructor(t,e={}){this.O=!1,this.T=!1,this.k=e.maxEntries,this.B=e.maxAgeSeconds,this.P=e.matchOptions,this.L=t,this.M=new F(t)}async expireEntries(){if(this.O)return void(this.T=!0);this.O=!0;const t=this.B?Date.now()-1e3*this.B:0,e=await this.M.expireEntries(t,this.k),s=await self.caches.open(this.L);for(const t of e)await s.delete(t,this.P);this.O=!1,this.T&&(this.T=!1,b(this.expireEntries()))}async updateTimestamp(t){await this.M.setTimestamp(t,Date.now())}async isURLExpired(t){if(this.B){const e=await this.M.getTimestamp(t),s=Date.now()-1e3*this.B;return void 0===e||e<s}return!1}async delete(){this.T=!1,await this.M.expireEntries(1/0)}}try{self["workbox:range-requests:6.6.0"]&&_()}catch(t){}async function $(t,e){try{if(206===e.status)return e;const n=t.headers.get("range");if(!n)throw new s("no-range-header");const r=function(t){const e=t.trim().toLowerCase();if(!e.startsWith("bytes="))throw new s("unit-must-be-bytes",{normalizedRangeHeader:e});if(e.includes(","))throw new s("single-range-only",{normalizedRangeHeader:e});const n=/(\d*)-(\d*)/.exec(e);if(!n||!n[1]&&!n[2])throw new s("invalid-range-values",{normalizedRangeHeader:e});return{start:""===n[1]?void 0:Number(n[1]),end:""===n[2]?void 0:Number(n[2])}}(n),i=await e.blob(),a=function(t,e,n){const r=t.size;if(n&&n>r||e&&e<0)throw new s("range-not-satisfiable",{size:r,end:n,start:e});let i,a;return void 0!==e&&void 0!==n?(i=e,a=n+1):void 0!==e&&void 0===n?(i=e,a=r):void 0!==n&&void 0===e&&(i=r-n,a=r),{start:i,end:a}}(i,r.start,r.end),o=i.slice(a.start,a.end),c=o.size,h=new Response(o,{status:206,statusText:"Partial Content",headers:e.headers});return h.headers.set("Content-Length",String(c)),h.headers.set("Content-Range",`bytes ${a.start}-${a.end-1}/${i.size}`),h}catch(t){return new Response("",{status:416,statusText:"Range Not Satisfiable"})}}function z(t,e){const s=e();return t.waitUntil(s),s}try{self["workbox:precaching:6.6.0"]&&_()}catch(t){}function G(t){if(!t)throw new s("add-to-cache-list-unexpected-type",{entry:t});if("string"==typeof t){const e=new URL(t,location.href);return{cacheKey:e.href,url:e.href}}const{revision:e,url:n}=t;if(!n)throw new s("add-to-cache-list-unexpected-type",{entry:t});if(!e){const t=new URL(n,location.href);return{cacheKey:t.href,url:t.href}}const r=new URL(n,location.href),i=new URL(n,location.href);return r.searchParams.set("__WB_REVISION__",e),{cacheKey:r.href,url:i.href}}class V{constructor(){this.updatedURLs=[],this.notUpdatedURLs=[],this.handlerWillStart=async({request:t,state:e})=>{e&&(e.originalRequest=t)},this.cachedResponseWillBeUsed=async({event:t,state:e,cachedResponse:s})=>{if("install"===t.type&&e&&e.originalRequest&&e.originalRequest instanceof Request){const t=e.originalRequest.url;s?this.notUpdatedURLs.push(t):this.updatedURLs.push(t)}return s}}}class J{constructor({precacheController:t}){this.cacheKeyWillBeUsed=async({request:t,params:e})=>{const s=(null==e?void 0:e.cacheKey)||this.W.getCacheKeyForURL(t.url);return s?new Request(s,{headers:t.headers}):t},this.W=t}}let Q,X;async function Y(t,e){let n=null;if(t.url){n=new URL(t.url).origin}if(n!==self.location.origin)throw new s("cross-origin-copy-response",{origin:n});const r=t.clone(),i={headers:new Headers(r.headers),status:r.status,statusText:r.statusText},a=e?e(i):i,o=function(){if(void 0===Q){const t=new Response("");if("body"in t)try{new Response(t.body),Q=!0}catch(t){Q=!1}Q=!1}return Q}()?r.body:await r.blob();return new Response(o,a)}class Z extends v{constructor(t={}){t.cacheName=w(t.cacheName),super(t),this.j=!1!==t.fallbackToNetwork,this.plugins.push(Z.copyRedirectedCacheableResponsesPlugin)}async U(t,e){const s=await e.cacheMatch(t);return s||(e.event&&"install"===e.event.type?await this.S(t,e):await this.K(t,e))}async K(t,e){let n;const r=e.params||{};if(!this.j)throw new s("missing-precache-entry",{cacheName:this.cacheName,url:t.url});{const s=r.integrity,i=t.integrity,a=!i||i===s;n=await e.fetch(new Request(t,{integrity:"no-cors"!==t.mode?i||s:void 0})),s&&a&&"no-cors"!==t.mode&&(this.A(),await e.cachePut(t,n.clone()))}return n}async S(t,e){this.A();const n=await e.fetch(t);if(!await e.cachePut(t,n.clone()))throw new s("bad-precaching-response",{url:t.url,status:n.status});return n}A(){let t=null,e=0;for(const[s,n]of this.plugins.entries())n!==Z.copyRedirectedCacheableResponsesPlugin&&(n===Z.defaultPrecacheCacheabilityPlugin&&(t=s),n.cacheWillUpdate&&e++);0===e?this.plugins.push(Z.defaultPrecacheCacheabilityPlugin):e>1&&null!==t&&this.plugins.splice(t,1)}}Z.defaultPrecacheCacheabilityPlugin={cacheWillUpdate:async({response:t})=>!t||t.status>=400?null:t},Z.copyRedirectedCacheableResponsesPlugin={cacheWillUpdate:async({response:t})=>t.redirected?await Y(t):t};class tt{constructor({cacheName:t,plugins:e=[],fallbackToNetwork:s=!0}={}){this.F=new Map,this.H=new Map,this.$=new Map,this.u=new Z({cacheName:w(t),plugins:[...e,new J({precacheController:this})],fallbackToNetwork:s}),this.install=this.install.bind(this),this.activate=this.activate.bind(this)}get strategy(){return this.u}precache(t){this.addToCacheList(t),this.G||(self.addEventListener("install",this.install),self.addEventListener("activate",this.activate),this.G=!0)}addToCacheList(t){const e=[];for(const n of t){"string"==typeof n?e.push(n):n&&void 0===n.revision&&e.push(n.url);const{cacheKey:t,url:r}=G(n),i="string"!=typeof n&&n.revision?"reload":"default";if(this.F.has(r)&&this.F.get(r)!==t)throw new s("add-to-cache-list-conflicting-entries",{firstEntry:this.F.get(r),secondEntry:t});if("string"!=typeof n&&n.integrity){if(this.$.has(t)&&this.$.get(t)!==n.integrity)throw new s("add-to-cache-list-conflicting-integrities",{url:r});this.$.set(t,n.integrity)}if(this.F.set(r,t),this.H.set(r,i),e.length>0){const t=`Workbox is precaching URLs without revision info: ${e.join(", ")}\nThis is generally NOT safe. Learn more at https://bit.ly/wb-precache`;console.warn(t)}}}install(t){return z(t,(async()=>{const e=new V;this.strategy.plugins.push(e);for(const[e,s]of this.F){const n=this.$.get(s),r=this.H.get(e),i=new Request(e,{integrity:n,cache:r,credentials:"same-origin"});await Promise.all(this.strategy.handleAll({params:{cacheKey:s},request:i,event:t}))}const{updatedURLs:s,notUpdatedURLs:n}=e;return{updatedURLs:s,notUpdatedURLs:n}}))}activate(t){return z(t,(async()=>{const t=await self.caches.open(this.strategy.cacheName),e=await t.keys(),s=new Set(this.F.values()),n=[];for(const r of e)s.has(r.url)||(await t.delete(r),n.push(r.url));return{deletedURLs:n}}))}getURLsToCacheKeys(){return this.F}getCachedURLs(){return[...this.F.keys()]}getCacheKeyForURL(t){const e=new URL(t,location.href);return this.F.get(e.href)}getIntegrityForCacheKey(t){return this.$.get(t)}async matchPrecache(t){const e=t instanceof Request?t.url:t,s=this.getCacheKeyForURL(e);if(s){return(await self.caches.open(this.strategy.cacheName)).match(s)}}createHandlerBoundToURL(t){const e=this.getCacheKeyForURL(t);if(!e)throw new s("non-precached-url",{url:t});return s=>(s.request=new Request(t),s.params=Object.assign({cacheKey:e},s.params),this.strategy.handle(s))}}const et=()=>(X||(X=new tt),X);class st extends r{constructor(t,e){super((({request:s})=>{const n=t.getURLsToCacheKeys();for(const r of function*(t,{ignoreURLParametersMatching:e=[/^utm_/,/^fbclid$/],directoryIndex:s="index.html",cleanURLs:n=!0,urlManipulation:r}={}){const i=new URL(t,location.href);i.hash="",yield i.href;const a=function(t,e=[]){for(const s of[...t.searchParams.keys()])e.some((t=>t.test(s)))&&t.searchParams.delete(s);return t}(i,e);if(yield a.href,s&&a.pathname.endsWith("/")){const t=new URL(a.href);t.pathname+=s,yield t.href}if(n){const t=new URL(a.href);t.pathname+=".html",yield t.href}if(r){const t=r({url:i});for(const e of t)yield e.href}}(s.url,e)){const e=n.get(r);if(e){return{cacheKey:e,integrity:t.getIntegrityForCacheKey(e)}}}}),t.strategy)}}t.CacheFirst=class extends v{async U(t,e){let n,r=await e.cacheMatch(t);if(!r)try{r=await e.fetchAndCachePut(t)}catch(t){t instanceof Error&&(n=t)}if(!r)throw new s("no-response",{url:t.url,error:n});return r}},t.ExpirationPlugin=class{constructor(t={}){this.cachedResponseWillBeUsed=async({event:t,request:e,cacheName:s,cachedResponse:n})=>{if(!n)return null;const r=this.V(n),i=this.J(s);b(i.expireEntries());const a=i.updateTimestamp(e.url);if(t)try{t.waitUntil(a)}catch(t){}return r?n:null},this.cacheDidUpdate=async({cacheName:t,request:e})=>{const s=this.J(t);await s.updateTimestamp(e.url),await s.expireEntries()},this.X=t,this.B=t.maxAgeSeconds,this.Y=new Map,t.purgeOnQuotaError&&function(t){g.add(t)}((()=>this.deleteCacheAndMetadata()))}J(t){if(t===d())throw new s("expire-custom-caches-only");let e=this.Y.get(t);return e||(e=new H(t,this.X),this.Y.set(t,e)),e}V(t){if(!this.B)return!0;const e=this.Z(t);if(null===e)return!0;return e>=Date.now()-1e3*this.B}Z(t){if(!t.headers.has("date"))return null;const e=t.headers.get("date"),s=new Date(e).getTime();return isNaN(s)?null:s}async deleteCacheAndMetadata(){for(const[t,e]of this.Y)await self.caches.delete(t),await e.delete();this.Y=new Map}},t.NetworkFirst=class extends v{constructor(t={}){super(t),this.plugins.some((t=>"cacheWillUpdate"in t))||this.plugins.unshift(u),this.tt=t.networkTimeoutSeconds||0}async U(t,e){const n=[],r=[];let i;if(this.tt){const{id:s,promise:a}=this.et({request:t,logs:n,handler:e});i=s,r.push(a)}const a=this.st({timeoutId:i,request:t,logs:n,handler:e});r.push(a);const o=await e.waitUntil((async()=>await e.waitUntil(Promise.race(r))||await a)());if(!o)throw new s("no-response",{url:t.url});return o}et({request:t,logs:e,handler:s}){let n;return{promise:new Promise((e=>{n=setTimeout((async()=>{e(await s.cacheMatch(t))}),1e3*this.tt)})),id:n}}async st({timeoutId:t,request:e,logs:s,handler:n}){let r,i;try{i=await n.fetchAndCachePut(e)}catch(t){t instanceof Error&&(r=t)}return t&&clearTimeout(t),!r&&i||(i=await n.cacheMatch(e)),i}},t.RangeRequestsPlugin=class{constructor(){this.cachedResponseWillBeUsed=async({request:t,cachedResponse:e})=>e&&t.headers.has("range")?await $(t,e):e}},t.StaleWhileRevalidate=class extends v{constructor(t={}){super(t),this.plugins.some((t=>"cacheWillUpdate"in t))||this.plugins.unshift(u)}async U(t,e){const n=e.fetchAndCachePut(t).catch((()=>{}));e.waitUntil(n);let r,i=await e.cacheMatch(t);if(i);else try{i=await n}catch(t){t instanceof Error&&(r=t)}if(!i)throw new s("no-response",{url:t.url,error:r});return i}},t.cleanupOutdatedCaches=function(){self.addEventListener("activate",(t=>{const e=w();t.waitUntil((async(t,e="-precache-")=>{const s=(await self.caches.keys()).filter((s=>s.includes(e)&&s.includes(self.registration.scope)&&s!==t));return await Promise.all(s.map((t=>self.caches.delete(t)))),s})(e).then((t=>{})))}))},t.clientsClaim=function(){self.addEventListener("activate",(()=>self.clients.claim()))},t.precacheAndRoute=function(t,e){!function(t){et().precache(t)}(t),function(t){const e=et();h(new st(e,t))}(e)},t.registerRoute=h}));
@@ -6,6 +6,6 @@ "backend",
"frontend" ], "dependencies": { - "pm2": "^5.4.2" + "pm2": "^5.4.3" } }
@@ -28,9 +28,9 @@ checksum: 10c0/f89a1e16ecbc2ada91c56d4391c8345471e385f0b9c38d62c3bccac40ec94482cdfa496d4c2fe0af411e9851a9931c0d5042a8040f52213f603ba6b6fd7f949b
languageName: node linkType: hard -"@apollo/client@npm:^3.11.4": - version: 3.11.4 - resolution: "@apollo/client@npm:3.11.4" +"@apollo/client@npm:^3.11.10": + version: 3.11.10 + resolution: "@apollo/client@npm:3.11.10" dependencies: "@graphql-typed-document-node/core": "npm:^3.1.1" "@wry/caches": "npm:^1.0.0"@@ -61,7 +61,7 @@ react-dom:
optional: true subscriptions-transport-ws: optional: true - checksum: 10c0/1d0f848a68803e4987f7bceb6c4d76a1c9c584a66cefbcacfe8aebb342b68e4cca96ecb76e7a5a423f5047da8c35e52d971cad3d532248976976c32336eac7d9 + checksum: 10c0/27bb910d347e7bb88ae48a39c6e328d8389bfe679cd4529889878bffcc73d00b1122b9fc3501f079d35835622bd33d9848a4e7bad579aa2a2d1f5dee824c5586 languageName: node linkType: hard@@ -267,6 +267,17 @@ checksum: 10c0/ab0af539473a9f5aeaac7047e377cb4f4edd255a81d84a76058595f8540784cc3fbe8acf73f1e073981104562490aabfb23008cd66dc677a456a4ed5390fdde6
languageName: node linkType: hard +"@babel/code-frame@npm:^7.25.9": + version: 7.26.2 + resolution: "@babel/code-frame@npm:7.26.2" + dependencies: + "@babel/helper-validator-identifier": "npm:^7.25.9" + js-tokens: "npm:^4.0.0" + picocolors: "npm:^1.0.0" + checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8 + languageName: node + linkType: hard + "@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.25.2, @babel/compat-data@npm:^7.25.4": version: 7.25.4 resolution: "@babel/compat-data@npm:7.25.4"@@ -309,7 +320,29 @@ checksum: 10c0/eb8af30c39476e4f4d6b953f355fcf092258291f78d65fb759b7d5e5e6fd521b5bfee64a4e2e4290279f0dcd25ccf8c49a61807828b99b5830d2b734506da1fd
languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.22.5, @babel/helper-annotate-as-pure@npm:^7.24.7": +"@babel/generator@npm:^7.25.9": + version: 7.26.2 + resolution: "@babel/generator@npm:7.26.2" + dependencies: + "@babel/parser": "npm:^7.26.2" + "@babel/types": "npm:^7.26.0" + "@jridgewell/gen-mapping": "npm:^0.3.5" + "@jridgewell/trace-mapping": "npm:^0.3.25" + jsesc: "npm:^3.0.2" + checksum: 10c0/167ebce8977142f5012fad6bd91da51ac52bcd752f2261a54b7ab605d928aebe57e21636cdd2a9c7757e552652c68d9fcb5d40b06fcb66e02d9ee7526e118a5c + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.22.5": + version: 7.25.9 + resolution: "@babel/helper-annotate-as-pure@npm:7.25.9" + dependencies: + "@babel/types": "npm:^7.25.9" + checksum: 10c0/095b6ba50489d797733abebc4596a81918316a99e3632755c9f02508882912b00c2ae5e468532a25a5c2108d109ddbe9b7da78333ee7cc13817fc50c00cf06fe + languageName: node + linkType: hard + +"@babel/helper-annotate-as-pure@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" dependencies:@@ -396,7 +429,17 @@ checksum: 10c0/7e14a5acc91f6cd26305a4441b82eb6f616bd70b096a4d2099a968f16b26d50207eec0b9ebfc466fefd62bd91587ac3be878117cdfec819b7151911183cb0e5a
languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.22.5, @babel/helper-module-imports@npm:^7.24.7": +"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.22.5": + version: 7.25.9 + resolution: "@babel/helper-module-imports@npm:7.25.9" + dependencies: + "@babel/traverse": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/078d3c2b45d1f97ffe6bb47f61961be4785d2342a4156d8b42c92ee4e1b7b9e365655dd6cb25329e8fe1a675c91eeac7e3d04f0c518b67e417e29d6e27b6aa70 + languageName: node + linkType: hard + +"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-module-imports@npm:7.24.7" dependencies:@@ -433,6 +476,13 @@ "@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.24.7, @babel/helper-plugin-utils@npm:^7.24.8, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.24.8 resolution: "@babel/helper-plugin-utils@npm:7.24.8" checksum: 10c0/0376037f94a3bfe6b820a39f81220ac04f243eaee7193774b983e956c1750883ff236b30785795abbcda43fac3ece74750566830c2daa4d6e3870bb0dff34c2d + languageName: node + linkType: hard + +"@babel/helper-plugin-utils@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-plugin-utils@npm:7.25.9" + checksum: 10c0/483066a1ba36ff16c0116cd24f93de05de746a603a777cd695ac7a1b034928a65a4ecb35f255761ca56626435d7abdb73219eba196f9aa83b6c3c3169325599d languageName: node linkType: hard@@ -489,10 +539,24 @@ checksum: 10c0/6361f72076c17fabf305e252bf6d580106429014b3ab3c1f5c4eb3e6d465536ea6b670cc0e9a637a77a9ad40454d3e41361a2909e70e305116a23d68ce094c08
languageName: node linkType: hard +"@babel/helper-string-parser@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-string-parser@npm:7.25.9" + checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6 + languageName: node + linkType: hard + "@babel/helper-validator-identifier@npm:^7.24.7": version: 7.24.7 resolution: "@babel/helper-validator-identifier@npm:7.24.7" checksum: 10c0/87ad608694c9477814093ed5b5c080c2e06d44cb1924ae8320474a74415241223cc2a725eea2640dd783ff1e3390e5f95eede978bc540e870053152e58f1d651 + languageName: node + linkType: hard + +"@babel/helper-validator-identifier@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/helper-validator-identifier@npm:7.25.9" + checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d languageName: node linkType: hard@@ -544,6 +608,17 @@ "@babel/types": "npm:^7.25.4"
bin: parser: ./bin/babel-parser.js checksum: 10c0/bdada5662f15d1df11a7266ec3bc9bb769bf3637ecf3d051eafcfc8f576dcf5a3ac1007c5e059db4a1e1387db9ae9caad239fc4f79e4c2200930ed610e779993 + languageName: node + linkType: hard + +"@babel/parser@npm:^7.25.9, @babel/parser@npm:^7.26.2": + version: 7.26.2 + resolution: "@babel/parser@npm:7.26.2" + dependencies: + "@babel/types": "npm:^7.26.0" + bin: + parser: ./bin/babel-parser.js + checksum: 10c0/751a743087b3a9172a7599f1421830d44c38f065ef781588d2bfb1c98f9b461719a226feb13c868d7a284783eee120c88ea522593118f2668f46ebfb1105c4d7 languageName: node linkType: hard@@ -763,7 +838,7 @@ checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.22.5, @babel/plugin-syntax-jsx@npm:^7.24.7, @babel/plugin-syntax-jsx@npm:^7.7.2": +"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.24.7, @babel/plugin-syntax-jsx@npm:^7.7.2": version: 7.24.7 resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" dependencies:@@ -771,6 +846,17 @@ "@babel/helper-plugin-utils": "npm:^7.24.7"
peerDependencies: "@babel/core": ^7.0.0-0 checksum: 10c0/f44d927a9ae8d5ef016ff5b450e1671e56629ddc12e56b938e41fd46e141170d9dfc9a53d6cb2b9a20a7dd266a938885e6a3981c60c052a2e1daed602ac80e51 + languageName: node + linkType: hard + +"@babel/plugin-syntax-jsx@npm:^7.22.5": + version: 7.25.9 + resolution: "@babel/plugin-syntax-jsx@npm:7.25.9" + dependencies: + "@babel/helper-plugin-utils": "npm:^7.25.9" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 10c0/d56597aff4df39d3decda50193b6dfbe596ca53f437ff2934622ce19a743bf7f43492d3fb3308b0289f5cee2b825d99ceb56526a2b9e7b68bf04901546c5618c languageName: node linkType: hard@@ -1635,7 +1721,7 @@ checksum: 10c0/7c9e7896749b5968bc6a7638cf1735e5d2dc791780f4f46daf15a45777780cd0485d1357e92f54b03f815269064dc84d771e83486d49e18b847ffa8cfb6a6afa
languageName: node linkType: hard -"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.5, @babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.24.6, @babel/runtime@npm:^7.24.8, @babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.6.2, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.8.3, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7, @babel/runtime@npm:^7.9.2": +"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.5, @babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.25.0, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.6.2, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.8.3, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7, @babel/runtime@npm:^7.9.2": version: 7.25.4 resolution: "@babel/runtime@npm:7.25.4" dependencies:@@ -1644,6 +1730,15 @@ checksum: 10c0/33e937e685f0bfc2d40c219261e2e50d0df7381a6e7cbf56b770e0c5d77cb0c21bf4d97da566cf0164317ed7508e992082c7b6cce7aaa3b17da5794f93fbfb46
languageName: node linkType: hard +"@babel/runtime@npm:^7.24.4, @babel/runtime@npm:^7.25.7, @babel/runtime@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/runtime@npm:7.26.0" + dependencies: + regenerator-runtime: "npm:^0.14.0" + checksum: 10c0/12c01357e0345f89f4f7e8c0e81921f2a3e3e101f06e8eaa18a382b517376520cd2fa8c237726eb094dab25532855df28a7baaf1c26342b52782f6936b07c287 + languageName: node + linkType: hard + "@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.24.7, @babel/template@npm:^7.25.0, @babel/template@npm:^7.3.3": version: 7.25.0 resolution: "@babel/template@npm:7.25.0"@@ -1655,7 +1750,18 @@ checksum: 10c0/4e31afd873215744c016e02b04f43b9fa23205d6d0766fb2e93eb4091c60c1b88897936adb895fb04e3c23de98dfdcbe31bc98daaa1a4e0133f78bb948e1209b
languageName: node linkType: hard -"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8, @babel/traverse@npm:^7.25.0, @babel/traverse@npm:^7.25.1, @babel/traverse@npm:^7.25.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.4, @babel/traverse@npm:^7.4.5, @babel/traverse@npm:^7.7.0": +"@babel/template@npm:^7.25.9": + version: 7.25.9 + resolution: "@babel/template@npm:7.25.9" + dependencies: + "@babel/code-frame": "npm:^7.25.9" + "@babel/parser": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + checksum: 10c0/ebe677273f96a36c92cc15b7aa7b11cc8bc8a3bb7a01d55b2125baca8f19cae94ff3ce15f1b1880fb8437f3a690d9f89d4e91f16fc1dc4d3eb66226d128983ab + languageName: node + linkType: hard + +"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.16.8, @babel/traverse@npm:^7.24.7, @babel/traverse@npm:^7.24.8, @babel/traverse@npm:^7.25.0, @babel/traverse@npm:^7.25.1, @babel/traverse@npm:^7.25.2, @babel/traverse@npm:^7.25.3, @babel/traverse@npm:^7.25.4, @babel/traverse@npm:^7.7.0": version: 7.25.4 resolution: "@babel/traverse@npm:7.25.4" dependencies:@@ -1670,6 +1776,21 @@ checksum: 10c0/37c9b49b277e051fe499ef5f6f217370c4f648d6370564d70b5e6beb2da75bfda6d7dab1d39504d89e9245448f8959bc1a5880d2238840cdc3979b35338ed0f5
languageName: node linkType: hard +"@babel/traverse@npm:^7.25.9, @babel/traverse@npm:^7.4.5": + version: 7.25.9 + resolution: "@babel/traverse@npm:7.25.9" + dependencies: + "@babel/code-frame": "npm:^7.25.9" + "@babel/generator": "npm:^7.25.9" + "@babel/parser": "npm:^7.25.9" + "@babel/template": "npm:^7.25.9" + "@babel/types": "npm:^7.25.9" + debug: "npm:^4.3.1" + globals: "npm:^11.1.0" + checksum: 10c0/e90be586a714da4adb80e6cb6a3c5cfcaa9b28148abdafb065e34cc109676fc3db22cf98cd2b2fff66ffb9b50c0ef882cab0f466b6844be0f6c637b82719bba1 + languageName: node + linkType: hard + "@babel/types@npm:^7.0.0, @babel/types@npm:^7.16.8, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.7, @babel/types@npm:^7.24.7, @babel/types@npm:^7.24.8, @babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.4, @babel/types@npm:^7.3.3, @babel/types@npm:^7.4.4, @babel/types@npm:^7.7.0": version: 7.25.4 resolution: "@babel/types@npm:7.25.4"@@ -1678,6 +1799,16 @@ "@babel/helper-string-parser": "npm:^7.24.8"
"@babel/helper-validator-identifier": "npm:^7.24.7" to-fast-properties: "npm:^2.0.0" checksum: 10c0/9aa25dfcd89cc4e4dde3188091c34398a005a49e2c2b069d0367b41e1122c91e80fd92998c52a90f2fb500f7e897b6090ec8be263d9cb53d0d75c756f44419f2 + languageName: node + linkType: hard + +"@babel/types@npm:^7.25.9, @babel/types@npm:^7.26.0": + version: 7.26.0 + resolution: "@babel/types@npm:7.26.0" + dependencies: + "@babel/helper-string-parser": "npm:^7.25.9" + "@babel/helper-validator-identifier": "npm:^7.25.9" + checksum: 10c0/b694f41ad1597127e16024d766c33a641508aad037abd08d0d1f73af753e1119fa03b4a107d04b5f92cc19c095a594660547ae9bead1db2299212d644b0a5cb8 languageName: node linkType: hard@@ -1692,22 +1823,22 @@ "@caroster/backend@workspace:backend":
version: 0.0.0-use.local resolution: "@caroster/backend@workspace:backend" dependencies: - "@strapi/plugin-graphql": "npm:4.25.8" - "@strapi/plugin-i18n": "npm:4.25.8" - "@strapi/plugin-sentry": "npm:^4.25.8" - "@strapi/plugin-users-permissions": "npm:4.25.8" - "@strapi/provider-email-nodemailer": "npm:^4.25.8" - "@strapi/strapi": "npm:4.25.8" - "@types/react": "npm:^18.3.4" - "@types/react-dom": "npm:^18.3.0" - "@types/uuid": "npm:^9.0.8" + "@strapi/plugin-graphql": "npm:4.25.16" + "@strapi/plugin-i18n": "npm:4.25.16" + "@strapi/plugin-sentry": "npm:^4.25.16" + "@strapi/plugin-users-permissions": "npm:4.25.16" + "@strapi/provider-email-nodemailer": "npm:^4.25.16" + "@strapi/strapi": "npm:4.25.16" + "@types/react": "npm:^18.3.12" + "@types/react-dom": "npm:^18.3.1" + "@types/uuid": "npm:^10.0.0" babel-eslint: "npm:^10.1.0" - eslint: "npm:^9.9.0" + eslint: "npm:^9.15.0" faker: "npm:^6.6.6" jest: "npm:^29.7.0" marked: "npm:^12.0.2" moment: "npm:^2.30.1" - pg: "npm:8.12.0" + pg: "npm:8.13.1" react: "npm:^18.3.1" react-dom: "npm:^18.3.1" react-router-dom: "npm:^5.3.4"@@ -1715,7 +1846,7 @@ sqlite3: "npm:^5.1.7"
strapi-plugin-init-admin-user: "npm:^0.2.3" strapi-plugin-multi-select: "npm:^1.2.3" stripe: "npm:^14.25.0" - styled-components: "npm:^5.3.11" + styled-components: "npm:^5.2.1" languageName: unknown linkType: soft@@ -1723,53 +1854,53 @@ "@caroster/frontend@workspace:frontend":
version: 0.0.0-use.local resolution: "@caroster/frontend@workspace:frontend" dependencies: - "@apollo/client": "npm:^3.11.4" + "@apollo/client": "npm:^3.11.10" "@date-io/dayjs": "npm:3.0.0" "@date-io/moment": "npm:3.0.0" - "@emotion/react": "npm:^11.13.0" + "@emotion/react": "npm:^11.13.3" "@emotion/styled": "npm:^11.13.0" - "@graphql-codegen/cli": "npm:^5.0.2" - "@graphql-codegen/typescript": "npm:^4.0.9" - "@graphql-codegen/typescript-operations": "npm:^4.2.3" - "@graphql-codegen/typescript-react-apollo": "npm:^4.3.0" + "@graphql-codegen/cli": "npm:^5.0.3" + "@graphql-codegen/typescript": "npm:^4.1.1" + "@graphql-codegen/typescript-operations": "npm:^4.3.1" + "@graphql-codegen/typescript-react-apollo": "npm:^4.3.2" "@mapbox/search-js-core": "npm:^1.0.0-beta.22" - "@mui/icons-material": "npm:^5.16.7" - "@mui/lab": "npm:^5.0.0-alpha.173" - "@mui/material": "npm:^5.16.7" - "@mui/styles": "npm:^5.16.7" - "@mui/x-date-pickers": "npm:^6.20.2" - "@tolgee/i18next": "npm:^5.28.6" + "@mui/icons-material": "npm:^6.1.7" + "@mui/lab": "npm:6.0.0-dev.240424162023-9968b4889d" + "@mui/material": "npm:^6.1.7" + "@mui/styles": "npm:^6.1.7" + "@mui/x-date-pickers": "npm:^7.22.2" + "@tolgee/i18next": "npm:^5.31.5" "@types/google-libphonenumber": "npm:^7.4.30" - "@types/node": "npm:^22.4.2" - "@types/react": "npm:^18.3.4" + "@types/node": "npm:^22.9.0" + "@types/react": "npm:^18.3.12" cookies: "npm:^0.9.1" crypto-js: "npm:^4.2.0" deepmerge: "npm:^4.3.1" - eslint: "npm:^9.9.0" - eslint-config-next: "npm:^14.2.5" + eslint: "npm:^8.57.0" + eslint-config-next: "npm:^14.2.18" eslint-config-prettier: "npm:^9.1.0" fs: "npm:^0.0.1-security" glob: "npm:^11.0.0" google-libphonenumber: "npm:^3.2.38" graphql: "npm:^16.9.0" - i18next: "npm:^23.14.0" + i18next: "npm:^23.16.5" leaflet: "npm:^1.9.4" - linkify-react: "npm:^4.1.3" - linkifyjs: "npm:^4.1.3" + linkify-react: "npm:^4.1.4" + linkifyjs: "npm:^4.1.4" marked: "npm:^7.0.5" moment: "npm:^2.30.1" - next: "npm:^14.2.5" - next-auth: "npm:4.24.7" + next: "npm:^14.2.18" + next-auth: "npm:4.24.10" next-i18next: "npm:^15.3.1" next-pwa: "npm:^5.6.0" react: "npm:^18.3.1" react-dom: "npm:^18.3.1" react-helmet: "npm:^6.1.0" - react-i18next: "npm:^15.0.1" + react-i18next: "npm:^15.1.1" react-international-phone: "npm:^4.3.0" react-leaflet: "npm:^4.2.1" ts-node: "npm:^10.9.2" - typescript: "npm:^5.5.4" + typescript: "npm:^5.6.3" zustand: "npm:^4.5.5" languageName: unknown linkType: soft@@ -1983,7 +2114,7 @@ checksum: 10c0/930ff6f8768b0c24d05896ad696be20e1c65f32ed61fb5c1488f571120a947ef0a2cf69187b17114cc76e7886f771fac150876ed7b5341324fec2377185d6573
languageName: node linkType: hard -"@emotion/cache@npm:^11.11.0, @emotion/cache@npm:^11.13.0, @emotion/cache@npm:^11.4.0": +"@emotion/cache@npm:^11.13.0, @emotion/cache@npm:^11.13.1, @emotion/cache@npm:^11.4.0": version: 11.13.1 resolution: "@emotion/cache@npm:11.13.1" dependencies:@@ -1996,14 +2127,23 @@ checksum: 10c0/321e97d8980885737de13b47e41fd4febfbd83086f10c620f865fcbddb29b8fe198adec7e1c69cc7b137638ea9242d7c475c57f954f7ca229157fa92e368f473
languageName: node linkType: hard -"@emotion/hash@npm:^0.9.1, @emotion/hash@npm:^0.9.2": +"@emotion/hash@npm:^0.9.2": version: 0.9.2 resolution: "@emotion/hash@npm:0.9.2" checksum: 10c0/0dc254561a3cc0a06a10bbce7f6a997883fd240c8c1928b93713f803a2e9153a257a488537012efe89dbe1246f2abfe2add62cdb3471a13d67137fcb808e81c2 languageName: node linkType: hard -"@emotion/is-prop-valid@npm:^1.1.0, @emotion/is-prop-valid@npm:^1.3.0": +"@emotion/is-prop-valid@npm:^1.1.0": + version: 1.3.1 + resolution: "@emotion/is-prop-valid@npm:1.3.1" + dependencies: + "@emotion/memoize": "npm:^0.9.0" + checksum: 10c0/123215540c816ff510737ec68dcc499c53ea4deb0bb6c2c27c03ed21046e2e69f6ad07a7a174d271c6cfcbcc9ea44e1763e0cf3875c92192f7689216174803cd + languageName: node + linkType: hard + +"@emotion/is-prop-valid@npm:^1.3.0": version: 1.3.0 resolution: "@emotion/is-prop-valid@npm:1.3.0" dependencies:@@ -2019,7 +2159,7 @@ checksum: 10c0/13f474a9201c7f88b543e6ea42f55c04fb2fdc05e6c5a3108aced2f7e7aa7eda7794c56bba02985a46d8aaa914fcdde238727a98341a96e2aec750d372dadd15
languageName: node linkType: hard -"@emotion/react@npm:^11.13.0, @emotion/react@npm:^11.8.1": +"@emotion/react@npm:^11.13.3, @emotion/react@npm:^11.8.1": version: 11.13.3 resolution: "@emotion/react@npm:11.13.3" dependencies:@@ -2053,6 +2193,19 @@ checksum: 10c0/ac7158e2881b5f3f9ca1e4d865186d38623f997de888675297e0928b202d16273e43b0a19aa021c0b706edefae31118bc97c5fab095820109d09d502dbcf2092
languageName: node linkType: hard +"@emotion/serialize@npm:^1.3.2": + version: 1.3.2 + resolution: "@emotion/serialize@npm:1.3.2" + dependencies: + "@emotion/hash": "npm:^0.9.2" + "@emotion/memoize": "npm:^0.9.0" + "@emotion/unitless": "npm:^0.10.0" + "@emotion/utils": "npm:^1.4.1" + csstype: "npm:^3.0.2" + checksum: 10c0/b4873b643721d28b4450f9d77b71e6c8d0109e6825c54fc79e649d2fa438fe4080d2fa696ec8fda421b8e713fcd42306d6197b6121ddd2486ffab8e4b6311ce0 + languageName: node + linkType: hard + "@emotion/sheet@npm:^1.4.0": version: 1.4.0 resolution: "@emotion/sheet@npm:1.4.0"@@ -2114,6 +2267,13 @@ "@emotion/utils@npm:^1.4.0":
version: 1.4.0 resolution: "@emotion/utils@npm:1.4.0" checksum: 10c0/b2ae698d6e935f4961a8349286b5b0a6117a16e179459cbf9c8d97d5daa7d96c99876b950f09b1a793d6b295713b2c8f89544bd8c3f26b8e4db60a218a0d4c42 + languageName: node + linkType: hard + +"@emotion/utils@npm:^1.4.1": + version: 1.4.1 + resolution: "@emotion/utils@npm:1.4.1" + checksum: 10c0/f4704e0bdf48062fd6eb9c64771c88f521aab1e108a48cb23d65b6438597c63a6945301cef4c43611e79e0e76a304ec5481c31025ea8f573d7ad5423d747602c languageName: node linkType: hard@@ -2611,27 +2771,62 @@ checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.11.0": - version: 4.11.0 - resolution: "@eslint-community/regexpp@npm:4.11.0" - checksum: 10c0/0f6328869b2741e2794da4ad80beac55cba7de2d3b44f796a60955b0586212ec75e6b0253291fd4aad2100ad471d1480d8895f2b54f1605439ba4c875e05e523 +"@eslint-community/eslint-utils@npm:^4.4.0": + version: 4.4.1 + resolution: "@eslint-community/eslint-utils@npm:4.4.1" + dependencies: + eslint-visitor-keys: "npm:^3.4.3" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252 languageName: node linkType: hard -"@eslint/config-array@npm:^0.18.0": - version: 0.18.0 - resolution: "@eslint/config-array@npm:0.18.0" +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.6.1": + version: 4.12.1 + resolution: "@eslint-community/regexpp@npm:4.12.1" + checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6 + languageName: node + linkType: hard + +"@eslint/config-array@npm:^0.19.0": + version: 0.19.0 + resolution: "@eslint/config-array@npm:0.19.0" dependencies: "@eslint/object-schema": "npm:^2.1.4" debug: "npm:^4.3.1" minimatch: "npm:^3.1.2" - checksum: 10c0/0234aeb3e6b052ad2402a647d0b4f8a6aa71524bafe1adad0b8db1dfe94d7f5f26d67c80f79bb37ac61361a1d4b14bb8fb475efe501de37263cf55eabb79868f + checksum: 10c0/def23c6c67a8f98dc88f1b87e17a5668e5028f5ab9459661aabfe08e08f2acd557474bbaf9ba227be0921ae4db232c62773dbb7739815f8415678eb8f592dbf5 + languageName: node + linkType: hard + +"@eslint/core@npm:^0.9.0": + version: 0.9.0 + resolution: "@eslint/core@npm:0.9.0" + checksum: 10c0/6d8e8e0991cef12314c49425d8d2d9394f5fb1a36753ff82df7c03185a4646cb7c8736cf26638a4a714782cedf4b23cfc17667d282d3e5965b3920a0e7ce20d4 + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/eslintrc@npm:2.1.4" + dependencies: + ajv: "npm:^6.12.4" + debug: "npm:^4.3.2" + espree: "npm:^9.6.0" + globals: "npm:^13.19.0" + ignore: "npm:^5.2.0" + import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" + minimatch: "npm:^3.1.2" + strip-json-comments: "npm:^3.1.1" + checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 languageName: node linkType: hard -"@eslint/eslintrc@npm:^3.1.0": - version: 3.1.0 - resolution: "@eslint/eslintrc@npm:3.1.0" +"@eslint/eslintrc@npm:^3.2.0": + version: 3.2.0 + resolution: "@eslint/eslintrc@npm:3.2.0" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2"@@ -2642,14 +2837,21 @@ import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 10c0/5b7332ed781edcfc98caa8dedbbb843abfb9bda2e86538529c843473f580e40c69eb894410eddc6702f487e9ee8f8cfa8df83213d43a8fdb549f23ce06699167 + checksum: 10c0/43867a07ff9884d895d9855edba41acf325ef7664a8df41d957135a81a477ff4df4196f5f74dc3382627e5cc8b7ad6b815c2cea1b58f04a75aced7c43414ab8b + languageName: node + linkType: hard + +"@eslint/js@npm:8.57.1": + version: 8.57.1 + resolution: "@eslint/js@npm:8.57.1" + checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223 languageName: node linkType: hard -"@eslint/js@npm:9.9.1": - version: 9.9.1 - resolution: "@eslint/js@npm:9.9.1" - checksum: 10c0/a3a91de2ce78469f7c4eee78c1eba77360706e1d0fa0ace2e19102079bcf237b851217c85ea501dc92c4c3719d60d9df966977abc8554d4c38e3638c1f53dcb2 +"@eslint/js@npm:9.15.0": + version: 9.15.0 + resolution: "@eslint/js@npm:9.15.0" + checksum: 10c0/56552966ab1aa95332f70d0e006db5746b511c5f8b5e0c6a9b2d6764ff6d964e0b2622731877cbc4e3f0e74c5b39191290d5f48147be19175292575130d499ab languageName: node linkType: hard@@ -2660,6 +2862,15 @@ checksum: 10c0/e9885532ea70e483fb007bf1275968b05bb15ebaa506d98560c41a41220d33d342e19023d5f2939fed6eb59676c1bda5c847c284b4b55fce521d282004da4dda
languageName: node linkType: hard +"@eslint/plugin-kit@npm:^0.2.3": + version: 0.2.3 + resolution: "@eslint/plugin-kit@npm:0.2.3" + dependencies: + levn: "npm:^0.4.1" + checksum: 10c0/89a8035976bb1780e3fa8ffe682df013bd25f7d102d991cecd3b7c297f4ce8c1a1b6805e76dd16465b5353455b670b545eff2b4ec3133e0eab81a5f9e99bd90f + languageName: node + linkType: hard + "@floating-ui/core@npm:^1.6.0": version: 1.6.7 resolution: "@floating-ui/core@npm:1.6.7"@@ -2808,14 +3019,14 @@ checksum: 10c0/2ddb8b57a0b445f109b1d8e5611e838ff590dc3c6c210ba1c31e3967e6a58097bceaef79b501eace700cd6210dca0d1ef3d28519ed7b5a4f3ce6cfc8f1508c90
languageName: node linkType: hard -"@graphql-codegen/cli@npm:^5.0.2": - version: 5.0.2 - resolution: "@graphql-codegen/cli@npm:5.0.2" +"@graphql-codegen/cli@npm:^5.0.3": + version: 5.0.3 + resolution: "@graphql-codegen/cli@npm:5.0.3" dependencies: "@babel/generator": "npm:^7.18.13" "@babel/template": "npm:^7.18.10" "@babel/types": "npm:^7.18.13" - "@graphql-codegen/client-preset": "npm:^4.2.2" + "@graphql-codegen/client-preset": "npm:^4.4.0" "@graphql-codegen/core": "npm:^4.0.2" "@graphql-codegen/plugin-helpers": "npm:^5.0.3" "@graphql-tools/apollo-engine-loader": "npm:^8.0.0"@@ -2828,12 +3039,12 @@ "@graphql-tools/load": "npm:^8.0.0"
"@graphql-tools/prisma-loader": "npm:^8.0.0" "@graphql-tools/url-loader": "npm:^8.0.0" "@graphql-tools/utils": "npm:^10.0.0" - "@whatwg-node/fetch": "npm:^0.8.0" + "@whatwg-node/fetch": "npm:^0.9.20" chalk: "npm:^4.1.0" cosmiconfig: "npm:^8.1.3" debounce: "npm:^1.2.0" detect-indent: "npm:^6.0.0" - graphql-config: "npm:^5.0.2" + graphql-config: "npm:^5.1.1" inquirer: "npm:^8.0.0" is-glob: "npm:^4.0.1" jiti: "npm:^1.17.1"@@ -2858,30 +3069,30 @@ gql-gen: cjs/bin.js
graphql-code-generator: cjs/bin.js graphql-codegen: cjs/bin.js graphql-codegen-esm: esm/bin.js - checksum: 10c0/6a54981bc0c40f2c95ab38563af1bb9b1ce5b01ba81ebef830f33b9e46623e86fef9ab41059e1187524029b430c8cd58e4e9f4e255f588dec1eaed6b329d6b9d + checksum: 10c0/fb08da11c9fc276bfb90a949438defede799e456d07e09b4bf44adfb140694902116c046da5935750730cb9f4a3d1cca67c98a1eaa1919e1b3a9dafb6590304a languageName: node linkType: hard -"@graphql-codegen/client-preset@npm:^4.2.2": - version: 4.3.3 - resolution: "@graphql-codegen/client-preset@npm:4.3.3" +"@graphql-codegen/client-preset@npm:^4.4.0": + version: 4.5.0 + resolution: "@graphql-codegen/client-preset@npm:4.5.0" dependencies: "@babel/helper-plugin-utils": "npm:^7.20.2" "@babel/template": "npm:^7.20.7" "@graphql-codegen/add": "npm:^5.0.3" - "@graphql-codegen/gql-tag-operations": "npm:4.0.9" - "@graphql-codegen/plugin-helpers": "npm:^5.0.4" - "@graphql-codegen/typed-document-node": "npm:^5.0.9" - "@graphql-codegen/typescript": "npm:^4.0.9" - "@graphql-codegen/typescript-operations": "npm:^4.2.3" - "@graphql-codegen/visitor-plugin-common": "npm:^5.3.1" + "@graphql-codegen/gql-tag-operations": "npm:4.0.11" + "@graphql-codegen/plugin-helpers": "npm:^5.1.0" + "@graphql-codegen/typed-document-node": "npm:^5.0.11" + "@graphql-codegen/typescript": "npm:^4.1.1" + "@graphql-codegen/typescript-operations": "npm:^4.3.1" + "@graphql-codegen/visitor-plugin-common": "npm:^5.5.0" "@graphql-tools/documents": "npm:^1.0.0" "@graphql-tools/utils": "npm:^10.0.0" "@graphql-typed-document-node/core": "npm:3.2.0" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 10c0/3d840336b2f88c2f4bc42bf6ae8cae86e04232a9ee3b9a3fdcb090768a519a7628283042f673133025b44c295b789b2c91df3f376e38260d3bf76d038c135df6 + checksum: 10c0/4fce2af23b4c3f36e334d96406ed490d6f87b92942bd9b782c8da3d8b8f67dbaed288cc2a19aba03a6e2f4b9a6595321d0428b70a7013261380472bc3f4e6a43 languageName: node linkType: hard@@ -2899,18 +3110,18 @@ checksum: 10c0/8387a91dd852e8c45e76843453fc50dba4e63079f1ecfe2242f3c49561d229d55d1083905f46049ddd7f9f94b8e55a96e6deeac8a0c1db34a7312f5f216ca229
languageName: node linkType: hard -"@graphql-codegen/gql-tag-operations@npm:4.0.9": - version: 4.0.9 - resolution: "@graphql-codegen/gql-tag-operations@npm:4.0.9" +"@graphql-codegen/gql-tag-operations@npm:4.0.11": + version: 4.0.11 + resolution: "@graphql-codegen/gql-tag-operations@npm:4.0.11" dependencies: - "@graphql-codegen/plugin-helpers": "npm:^5.0.4" - "@graphql-codegen/visitor-plugin-common": "npm:5.3.1" + "@graphql-codegen/plugin-helpers": "npm:^5.1.0" + "@graphql-codegen/visitor-plugin-common": "npm:5.5.0" "@graphql-tools/utils": "npm:^10.0.0" auto-bind: "npm:~4.0.0" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 10c0/fede17379783480809f236b2ea5fd7a16f1bea1390703c3086de3c12b68f98db9a3870216daa6052dd50ff886d29390b8c48ec72a7b44f1254d04fe192e54079 + checksum: 10c0/f13e78c1641f085645c88058df23ece3994fe6492eed1217d64b36090f90bf50e797dab1ba7b91a25f2040a50346adcbbf6b33d9f514259b53506bb1efdc1eef languageName: node linkType: hard@@ -2946,7 +3157,7 @@ checksum: 10c0/fbe326270aef17792b326ad8d8ae3e82acf1b60f3137a4d99eb605c0c8d709830537fec112705484b5fd2c9ee1d0588fbf4269f31c9a5852567c5d4c0c7057b7
languageName: node linkType: hard -"@graphql-codegen/plugin-helpers@npm:^5.0.3, @graphql-codegen/plugin-helpers@npm:^5.0.4": +"@graphql-codegen/plugin-helpers@npm:^5.0.3": version: 5.0.4 resolution: "@graphql-codegen/plugin-helpers@npm:5.0.4" dependencies:@@ -2962,6 +3173,22 @@ checksum: 10c0/e1d7af8af8cfd5d8baa4fbf099fbe14ee45d43a2e66af38eb901348163e073a392e53cdd58aad27acf32d14da5b6a7bf06fe1daa793d99e462457f80025dec97
languageName: node linkType: hard +"@graphql-codegen/plugin-helpers@npm:^5.1.0": + version: 5.1.0 + resolution: "@graphql-codegen/plugin-helpers@npm:5.1.0" + dependencies: + "@graphql-tools/utils": "npm:^10.0.0" + change-case-all: "npm:1.0.15" + common-tags: "npm:1.8.2" + import-from: "npm:4.0.0" + lodash: "npm:~4.17.0" + tslib: "npm:~2.6.0" + peerDependencies: + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 + checksum: 10c0/9fe308f1db889bc2783cf2c2d95446c56f8c38332da1c126e3320d02d33c79c6f249e14770590bacaadc908daa75bf60afbd464fcd256bf8e1809e7d25b77ac1 + languageName: node + linkType: hard + "@graphql-codegen/schema-ast@npm:^4.0.2": version: 4.1.0 resolution: "@graphql-codegen/schema-ast@npm:4.1.0"@@ -2975,39 +3202,39 @@ checksum: 10c0/ff7ab73f46f1ae4882eda0af8c3f78d37e904108aba37d52288028ee34e9bc56236b6a032a1e2fe1283030ba5f6a5f75224285af12b3f56a76e90843e1eff0e0
languageName: node linkType: hard -"@graphql-codegen/typed-document-node@npm:^5.0.9": - version: 5.0.9 - resolution: "@graphql-codegen/typed-document-node@npm:5.0.9" +"@graphql-codegen/typed-document-node@npm:^5.0.11": + version: 5.0.11 + resolution: "@graphql-codegen/typed-document-node@npm:5.0.11" dependencies: - "@graphql-codegen/plugin-helpers": "npm:^5.0.4" - "@graphql-codegen/visitor-plugin-common": "npm:5.3.1" + "@graphql-codegen/plugin-helpers": "npm:^5.1.0" + "@graphql-codegen/visitor-plugin-common": "npm:5.5.0" auto-bind: "npm:~4.0.0" change-case-all: "npm:1.0.15" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 10c0/fb9ffdd781af7005c8825cef0c47da5762263dcb2480b81e12b549010262bf35ffb231b08bf52e676467d695758fe9e20d598f7894074d5002a7759df56a84fd + checksum: 10c0/fa3f47fd7f04f6273121b0befa3577475bddde41532c067417342b85c7c86e073729bdff9b5b29603a6fc35165e61daa42361067c4e50d0b1d6ef6311ebbc91d languageName: node linkType: hard -"@graphql-codegen/typescript-operations@npm:^4.2.3": - version: 4.2.3 - resolution: "@graphql-codegen/typescript-operations@npm:4.2.3" +"@graphql-codegen/typescript-operations@npm:^4.3.1": + version: 4.3.1 + resolution: "@graphql-codegen/typescript-operations@npm:4.3.1" dependencies: - "@graphql-codegen/plugin-helpers": "npm:^5.0.4" - "@graphql-codegen/typescript": "npm:^4.0.9" - "@graphql-codegen/visitor-plugin-common": "npm:5.3.1" + "@graphql-codegen/plugin-helpers": "npm:^5.1.0" + "@graphql-codegen/typescript": "npm:^4.1.1" + "@graphql-codegen/visitor-plugin-common": "npm:5.5.0" auto-bind: "npm:~4.0.0" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 10c0/eae0d20d7a6087a47b3ad44d322c5a9bd61e2cb35e44f20652740876a2024593ac02964885ebab155cc958992c8d963561fe3d91f748e067f525f9804937f3c3 + checksum: 10c0/74ed1dfaae19bbb6611981352f81bca2244cbfeed71b0c1627e0321bcb8467e71d61b7f54a17606e8d696a223d556226ad27ecb23937da2b1c4b98bee329f2d3 languageName: node linkType: hard -"@graphql-codegen/typescript-react-apollo@npm:^4.3.0": - version: 4.3.0 - resolution: "@graphql-codegen/typescript-react-apollo@npm:4.3.0" +"@graphql-codegen/typescript-react-apollo@npm:^4.3.2": + version: 4.3.2 + resolution: "@graphql-codegen/typescript-react-apollo@npm:4.3.2" dependencies: "@graphql-codegen/plugin-helpers": "npm:^3.0.0" "@graphql-codegen/visitor-plugin-common": "npm:2.13.1"@@ -3016,23 +3243,22 @@ change-case-all: "npm:1.0.15"
tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - graphql-tag: ^2.0.0 - checksum: 10c0/c5e58729367571867a8e2e17a640a6ff42070b8c7f498a2bfea35b0b4ae74b62245981feb5d26a03601db58967c54e74b341b681247bd9241b63327510c151e7 + checksum: 10c0/d01e518854ad33b4f7dc25467e2ef63ce43a46d0264849b62f3c6976c007f798ddb3566b8d2596f8c9c3ebb6b3a812df34358e849b5b844c96c9f1439bf9ee97 languageName: node linkType: hard -"@graphql-codegen/typescript@npm:^4.0.9": - version: 4.0.9 - resolution: "@graphql-codegen/typescript@npm:4.0.9" +"@graphql-codegen/typescript@npm:^4.1.1": + version: 4.1.1 + resolution: "@graphql-codegen/typescript@npm:4.1.1" dependencies: - "@graphql-codegen/plugin-helpers": "npm:^5.0.4" + "@graphql-codegen/plugin-helpers": "npm:^5.1.0" "@graphql-codegen/schema-ast": "npm:^4.0.2" - "@graphql-codegen/visitor-plugin-common": "npm:5.3.1" + "@graphql-codegen/visitor-plugin-common": "npm:5.5.0" auto-bind: "npm:~4.0.0" tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 10c0/37a209ac6f1e84551805028dddb7be42e9b5ec5d7d411678b845f2c5b6b4bc242330666f993962f4d59dc207b9d1585c568f7c908364c0410531fd6860e4dfbd + checksum: 10c0/728a76058737ec321951df536ddbd1891745c700117392b95b563cba9c9608c9c8002348b6279391fa533d176669ac2898a5cd2ec683c21e9a0461957fd00efd languageName: node linkType: hard@@ -3056,11 +3282,11 @@ checksum: 10c0/9dfc4893599721eba988103d4456345f915cab75c9a754e78a21bd7d05c49b00a01f38ffb70355d758626da0396ae3bb6d44fc98d5c8f9f36a1b122aea0063c4
languageName: node linkType: hard -"@graphql-codegen/visitor-plugin-common@npm:5.3.1, @graphql-codegen/visitor-plugin-common@npm:^5.3.1": - version: 5.3.1 - resolution: "@graphql-codegen/visitor-plugin-common@npm:5.3.1" +"@graphql-codegen/visitor-plugin-common@npm:5.5.0, @graphql-codegen/visitor-plugin-common@npm:^5.5.0": + version: 5.5.0 + resolution: "@graphql-codegen/visitor-plugin-common@npm:5.5.0" dependencies: - "@graphql-codegen/plugin-helpers": "npm:^5.0.4" + "@graphql-codegen/plugin-helpers": "npm:^5.1.0" "@graphql-tools/optimize": "npm:^2.0.0" "@graphql-tools/relay-operation-optimizer": "npm:^7.0.0" "@graphql-tools/utils": "npm:^10.0.0"@@ -3072,7 +3298,7 @@ parse-filepath: "npm:^1.0.2"
tslib: "npm:~2.6.0" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 10c0/c6d642445149ef9adb473e0a47019a2008e4e1b69a700d7ff6b2e4d2ba3f3118a4296f6d370fd1c45c84f91dd3580cea63db896a47bd102a0dd7b28bb409a0e6 + checksum: 10c0/b272bd5d70337d0d309954c24286117ee3437d57487cbb305a98396608eae39da0d1dd33e125e7471bc3cd69b8ca5c59d574003fa66540aebdf77011de943b86 languageName: node linkType: hard@@ -3585,6 +3811,34 @@ checksum: 10c0/2e2df62f6bc6f32b980ba5bbdc09200c93c55c8306399ec0f2781da088a82aab699498c89fe94fec4acf770210f9aee28c75bfc2f04044849ac01b034134e717
languageName: node linkType: hard +"@humanfs/core@npm:^0.19.1": + version: 0.19.1 + resolution: "@humanfs/core@npm:0.19.1" + checksum: 10c0/aa4e0152171c07879b458d0e8a704b8c3a89a8c0541726c6b65b81e84fd8b7564b5d6c633feadc6598307d34564bd53294b533491424e8e313d7ab6c7bc5dc67 + languageName: node + linkType: hard + +"@humanfs/node@npm:^0.16.6": + version: 0.16.6 + resolution: "@humanfs/node@npm:0.16.6" + dependencies: + "@humanfs/core": "npm:^0.19.1" + "@humanwhocodes/retry": "npm:^0.3.0" + checksum: 10c0/8356359c9f60108ec204cbd249ecd0356667359b2524886b357617c4a7c3b6aace0fd5a369f63747b926a762a88f8a25bc066fa1778508d110195ce7686243e1 + languageName: node + linkType: hard + +"@humanwhocodes/config-array@npm:^0.13.0": + version: 0.13.0 + resolution: "@humanwhocodes/config-array@npm:0.13.0" + dependencies: + "@humanwhocodes/object-schema": "npm:^2.0.3" + debug: "npm:^4.3.1" + minimatch: "npm:^3.0.5" + checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e + languageName: node + linkType: hard + "@humanwhocodes/module-importer@npm:^1.0.1": version: 1.0.1 resolution: "@humanwhocodes/module-importer@npm:1.0.1"@@ -3592,10 +3846,24 @@ checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node linkType: hard +"@humanwhocodes/object-schema@npm:^2.0.3": + version: 2.0.3 + resolution: "@humanwhocodes/object-schema@npm:2.0.3" + checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c + languageName: node + linkType: hard + "@humanwhocodes/retry@npm:^0.3.0": version: 0.3.0 resolution: "@humanwhocodes/retry@npm:0.3.0" checksum: 10c0/7111ec4e098b1a428459b4e3be5a5d2a13b02905f805a2468f4fa628d072f0de2da26a27d04f65ea2846f73ba51f4204661709f05bfccff645e3cedef8781bb6 + languageName: node + linkType: hard + +"@humanwhocodes/retry@npm:^0.4.1": + version: 0.4.1 + resolution: "@humanwhocodes/retry@npm:0.4.1" + checksum: 10c0/be7bb6841c4c01d0b767d9bb1ec1c9359ee61421ce8ba66c249d035c5acdfd080f32d55a5c9e859cdd7868788b8935774f65b2caf24ec0b7bd7bf333791f063b languageName: node linkType: hard@@ -4040,14 +4308,14 @@ checksum: 10c0/4e09d78f48c95b3a5f893e3ca99d44d82ccb63ca4c077622aa9f08fb0fdbdc1c5a35e010081cc201bdc30c7aa3474f7f0cbb6602862e19dd4e46cdee5d4d4640
languageName: node linkType: hard -"@mui/base@npm:5.0.0-beta.40": - version: 5.0.0-beta.40 - resolution: "@mui/base@npm:5.0.0-beta.40" +"@mui/base@npm:5.0.0-beta.42": + version: 5.0.0-beta.42 + resolution: "@mui/base@npm:5.0.0-beta.42" dependencies: - "@babel/runtime": "npm:^7.23.9" + "@babel/runtime": "npm:^7.24.4" "@floating-ui/react-dom": "npm:^2.0.8" "@mui/types": "npm:^7.2.14" - "@mui/utils": "npm:^5.15.14" + "@mui/utils": "npm:^6.0.0-alpha.1" "@popperjs/core": "npm:^2.11.8" clsx: "npm:^2.1.0" prop-types: "npm:^15.8.1"@@ -4058,70 +4326,48 @@ react-dom: ^17.0.0 || ^18.0.0
peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/631b4ee389e23d82c16c5845c2849af43000f52f1def639b9bb5bf39fd09f4eab93787d32950b715a7de7b689faab53bb7c9a78f6fd12b663876cf8128d45de1 - languageName: node - linkType: hard - -"@mui/base@npm:^5.0.0-beta.22": - version: 5.0.0-dev.20240529-082515-213b5e33ab - resolution: "@mui/base@npm:5.0.0-dev.20240529-082515-213b5e33ab" - dependencies: - "@babel/runtime": "npm:^7.24.6" - "@floating-ui/react-dom": "npm:^2.0.8" - "@mui/types": "npm:^7.2.14-dev.20240529-082515-213b5e33ab" - "@mui/utils": "npm:^6.0.0-dev.20240529-082515-213b5e33ab" - "@popperjs/core": "npm:^2.11.8" - clsx: "npm:^2.1.1" - prop-types: "npm:^15.8.1" - peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 10c0/c6d3119aeea8abbb6494b3a3a632668bbee57e4f4e1786783908f3e19deb3b764f56e7e518849a17f3eda6db213bcc147a87fd0baf98941596466601d823478b + checksum: 10c0/768276965820cffc26295d534a2610fdc8da533e083352da779983d1d16d39784fc764ae3f8bae9e9f7ae3dd7ecb448b483c8ae36d785b3bc81fd436b19f1c8c languageName: node linkType: hard -"@mui/core-downloads-tracker@npm:^5.16.7": - version: 5.16.7 - resolution: "@mui/core-downloads-tracker@npm:5.16.7" - checksum: 10c0/4644c850160d01232c1abdbed141e4fa70e155891a9c68f0c2cc3054b4a3cdc1d28cf2d6665366fd8c725b2b091db677e11831552889a4e4e14f1e44450cf654 +"@mui/core-downloads-tracker@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/core-downloads-tracker@npm:6.1.7" + checksum: 10c0/4568379b1df8a17ca2292b7caa729f42c3b4b359841c81981a7d25641380121f3a042e53094cabd16d5c838372edadb8c23c24d9bff0fcc794c615b62f0ceb3e languageName: node linkType: hard -"@mui/icons-material@npm:^5.16.7": - version: 5.16.7 - resolution: "@mui/icons-material@npm:5.16.7" +"@mui/icons-material@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/icons-material@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.23.9" + "@babel/runtime": "npm:^7.26.0" peerDependencies: - "@mui/material": ^5.0.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 + "@mui/material": ^6.1.7 + "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/49bab1754334798acaf93187d27200cf90d7c50b6a019531594aeac9e5ced9168281fec70bb040792dc86c8bc0d3bf9a876f22cfbf86ad07941ca6bc6c564921 + checksum: 10c0/89f6d69dce35aa0b2fd2586f0de3a01171ba85b6c2b848dd0d1cfca0840778eafc90465efeb822451f4066df9791099ff8a683df4cacea98bc3affbc9b80c891 languageName: node linkType: hard -"@mui/lab@npm:^5.0.0-alpha.173": - version: 5.0.0-alpha.173 - resolution: "@mui/lab@npm:5.0.0-alpha.173" +"@mui/lab@npm:6.0.0-dev.240424162023-9968b4889d": + version: 6.0.0-dev.240424162023-9968b4889d + resolution: "@mui/lab@npm:6.0.0-dev.240424162023-9968b4889d" dependencies: - "@babel/runtime": "npm:^7.23.9" - "@mui/base": "npm:5.0.0-beta.40" - "@mui/system": "npm:^5.16.5" - "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.5" + "@babel/runtime": "npm:^7.24.4" + "@mui/base": "npm:5.0.0-beta.42" + "@mui/system": "npm:^6.0.0-dev.240424162023-9968b4889d" + "@mui/types": "npm:^7.2.14" + "@mui/utils": "npm:^6.0.0-alpha.3" clsx: "npm:^2.1.0" prop-types: "npm:^15.8.1" peerDependencies: "@emotion/react": ^11.5.0 "@emotion/styled": ^11.3.0 - "@mui/material": ">=5.15.0" + "@mui/material": ^6.0.0-dev.240424162023-9968b4889d "@types/react": ^17.0.0 || ^18.0.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0@@ -4132,22 +4378,22 @@ "@emotion/styled":
optional: true "@types/react": optional: true - checksum: 10c0/2ecd7da650bb5dab84035360621c2657dcd82f397e01044259b4373d54e1ecd12a8c2bc31163d0ce28f62276df208b50a6739ce8537552ec45e1005d24ba8080 + checksum: 10c0/b8e9b5bf386b720dcea7c98afcceb484bb4efd9972ddddbc34378863135f02b03eeaa0af7dd104fdb68f1d9a4e6c5b58c214a7322812c3a6009f5f34a86e7a0b languageName: node linkType: hard -"@mui/material@npm:^5.16.7": - version: 5.16.7 - resolution: "@mui/material@npm:5.16.7" +"@mui/material@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/material@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.23.9" - "@mui/core-downloads-tracker": "npm:^5.16.7" - "@mui/system": "npm:^5.16.7" - "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.6" + "@babel/runtime": "npm:^7.26.0" + "@mui/core-downloads-tracker": "npm:^6.1.7" + "@mui/system": "npm:^6.1.7" + "@mui/types": "npm:^7.2.19" + "@mui/utils": "npm:^6.1.7" "@popperjs/core": "npm:^2.11.8" - "@types/react-transition-group": "npm:^4.4.10" - clsx: "npm:^2.1.0" + "@types/react-transition-group": "npm:^4.4.11" + clsx: "npm:^2.1.1" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" react-is: "npm:^18.3.1"@@ -4155,68 +4401,73 @@ react-transition-group: "npm:^4.4.5"
peerDependencies: "@emotion/react": ^11.5.0 "@emotion/styled": ^11.3.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - react-dom: ^17.0.0 || ^18.0.0 + "@mui/material-pigment-css": ^6.1.7 + "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@emotion/react": optional: true "@emotion/styled": optional: true + "@mui/material-pigment-css": + optional: true "@types/react": optional: true - checksum: 10c0/b11419c1a77835413471f9352586fed65fb5de19c6737e121669da0484c441c7dd9939aa73fdad779482c30efaa694fb9fdcf18dcf418af07881e60eaff92b4f + checksum: 10c0/2c049da6b8f4bc79a0777692138ff77a0cb64b96c384d7070097c006391798554923806fed1ef8c6db8730f11c058edfb94bd243d2abeff14e45fd51d1f29819 languageName: node linkType: hard -"@mui/private-theming@npm:^5.16.6": - version: 5.16.6 - resolution: "@mui/private-theming@npm:5.16.6" +"@mui/private-theming@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/private-theming@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.23.9" - "@mui/utils": "npm:^5.16.6" + "@babel/runtime": "npm:^7.26.0" + "@mui/utils": "npm:^6.1.7" prop-types: "npm:^15.8.1" peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 + "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/0a09afd6c2be37197973a856049f97e2f17f3e5e6cf6387af036055342efbfcd7d7066dcad587886f25f491e5940e4e9bb7d732d5099eb85b53b84ef120e9555 + checksum: 10c0/2735c0e7155fd595c5f6fd87a20a74a222f1ef3120722d1964fa231c075b909b77612ac3e3a8bb5604a388205f4495690bc0602ceabe925294ed6a5fbe8144da languageName: node linkType: hard -"@mui/styled-engine@npm:^5.16.6": - version: 5.16.6 - resolution: "@mui/styled-engine@npm:5.16.6" +"@mui/styled-engine@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/styled-engine@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.23.9" - "@emotion/cache": "npm:^11.11.0" + "@babel/runtime": "npm:^7.26.0" + "@emotion/cache": "npm:^11.13.1" + "@emotion/serialize": "npm:^1.3.2" + "@emotion/sheet": "npm:^1.4.0" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" peerDependencies: "@emotion/react": ^11.4.1 "@emotion/styled": ^11.3.0 - react: ^17.0.0 || ^18.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@emotion/react": optional: true "@emotion/styled": optional: true - checksum: 10c0/b15e653c8756059c8ae2891ca54900573e22f6ed1aaf65a389ec838f2aca3252aeeb9a79aec4a43f080152b161a416e60b31a62595ba86ad5f72eda5642caaf2 + checksum: 10c0/0289121553ab95f6ddd1be0eeb27e975a01391266ff3076430ab67d925c231b586fc2899f8340648b4587c651bd3f7fd24094f43386f6de9052db92a98e13c15 languageName: node linkType: hard -"@mui/styles@npm:^5.16.7": - version: 5.16.7 - resolution: "@mui/styles@npm:5.16.7" +"@mui/styles@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/styles@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.23.9" - "@emotion/hash": "npm:^0.9.1" - "@mui/private-theming": "npm:^5.16.6" - "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.6" - clsx: "npm:^2.1.0" + "@babel/runtime": "npm:^7.26.0" + "@emotion/hash": "npm:^0.9.2" + "@mui/private-theming": "npm:^6.1.7" + "@mui/types": "npm:^7.2.19" + "@mui/utils": "npm:^6.1.7" + clsx: "npm:^2.1.1" csstype: "npm:^3.1.3" hoist-non-react-statics: "npm:^3.3.2" jss: "npm:^10.10.0"@@ -4229,32 +4480,32 @@ jss-plugin-rule-value-function: "npm:^10.10.0"
jss-plugin-vendor-prefixer: "npm:^10.10.0" prop-types: "npm:^15.8.1" peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 + "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/545e96ce5955c1cfee8ba3642e121acd3fcb9af0cd515c2748729d8d36758f26eb44c36d8ab95fe9fb040d29d40fc234c6f402c60f7fbd65d902e85e5154929f + checksum: 10c0/cc1f51f615f779846955a8609a4b8d18259b306faef9045f8304c0cb7fab3b497f1c7834954a25853de4603ce22dd9bc007d6dd3b27559494e72f2d0ab3baca3 languageName: node linkType: hard -"@mui/system@npm:^5.16.5, @mui/system@npm:^5.16.7": - version: 5.16.7 - resolution: "@mui/system@npm:5.16.7" +"@mui/system@npm:^6.0.0-dev.240424162023-9968b4889d, @mui/system@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/system@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.23.9" - "@mui/private-theming": "npm:^5.16.6" - "@mui/styled-engine": "npm:^5.16.6" - "@mui/types": "npm:^7.2.15" - "@mui/utils": "npm:^5.16.6" - clsx: "npm:^2.1.0" + "@babel/runtime": "npm:^7.26.0" + "@mui/private-theming": "npm:^6.1.7" + "@mui/styled-engine": "npm:^6.1.7" + "@mui/types": "npm:^7.2.19" + "@mui/utils": "npm:^6.1.7" + clsx: "npm:^2.1.1" csstype: "npm:^3.1.3" prop-types: "npm:^15.8.1" peerDependencies: "@emotion/react": ^11.5.0 "@emotion/styled": ^11.3.0 - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 + "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@emotion/react": optional: true@@ -4262,49 +4513,29 @@ "@emotion/styled":
optional: true "@types/react": optional: true - checksum: 10c0/c07479c0728433847c1e3d7f57b96d9e0770cc814dfd1c9e070304955984a0b706832703b22388eb83906d1a01691f37047e2bac6a5e5c083e8c29a54302d476 + checksum: 10c0/309db6f87bc7e489486f683961d032faad4804e7a3263f584b0a82e3286831a596f416be69066967a76253938e604cbb87bdfe4f9b8feed683b40ca7c4b8d8f2 languageName: node linkType: hard -"@mui/types@npm:^7.2.14, @mui/types@npm:^7.2.14-dev.20240529-082515-213b5e33ab, @mui/types@npm:^7.2.15, @mui/types@npm:^7.2.16": - version: 7.2.16 - resolution: "@mui/types@npm:7.2.16" +"@mui/types@npm:^7.2.14, @mui/types@npm:^7.2.19": + version: 7.2.19 + resolution: "@mui/types@npm:7.2.19" peerDependencies: "@types/react": ^17.0.0 || ^18.0.0 || ^19.0.0 peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/e51189d464e4217616a0d2bf45468b949c5b660b154fa03f1153456e4ef1422157454ed442dc9bde6a247166c8db7de6c405c629829525e3ca500ee9cf48f507 - languageName: node - linkType: hard - -"@mui/utils@npm:^5.14.16, @mui/utils@npm:^5.15.14, @mui/utils@npm:^5.16.5, @mui/utils@npm:^5.16.6": - version: 5.16.6 - resolution: "@mui/utils@npm:5.16.6" - dependencies: - "@babel/runtime": "npm:^7.23.9" - "@mui/types": "npm:^7.2.15" - "@types/prop-types": "npm:^15.7.12" - clsx: "npm:^2.1.1" - prop-types: "npm:^15.8.1" - react-is: "npm:^18.3.1" - peerDependencies: - "@types/react": ^17.0.0 || ^18.0.0 - react: ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - "@types/react": - optional: true - checksum: 10c0/2db3d11a83d7216fb8ceb459d4b30c795922c04cd8fabc26c721dd7b4f5ed5c4f3f3ace6ea70227bf3b79361bd58f13b723562cfd40255424d979ab238ab2e91 + checksum: 10c0/9c390d7eddc7e7c396852202fdca021aee275391bc7f48d0b6458748bf75eebb34c73109958692655ba5e72946cf47db2c0c7d2e1c26be568599ed65c931d080 languageName: node linkType: hard -"@mui/utils@npm:^6.0.0-dev.20240529-082515-213b5e33ab": - version: 6.0.0 - resolution: "@mui/utils@npm:6.0.0" +"@mui/utils@npm:^5.16.6 || ^6.0.0, @mui/utils@npm:^6.0.0-alpha.1, @mui/utils@npm:^6.0.0-alpha.3, @mui/utils@npm:^6.1.7": + version: 6.1.7 + resolution: "@mui/utils@npm:6.1.7" dependencies: - "@babel/runtime": "npm:^7.25.0" - "@mui/types": "npm:^7.2.16" - "@types/prop-types": "npm:^15.7.12" + "@babel/runtime": "npm:^7.26.0" + "@mui/types": "npm:^7.2.19" + "@types/prop-types": "npm:^15.7.13" clsx: "npm:^2.1.1" prop-types: "npm:^15.8.1" react-is: "npm:^18.3.1"@@ -4314,32 +4545,32 @@ react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta: "@types/react": optional: true - checksum: 10c0/605ff8098810025a0a8079d8a8f64cdac6e66bc1d6271348bd5a1819ab8e02046c92422fe42d373cc874fa7b0d059bb34489768ab6b47fc471bc40c27dfa1fb5 + checksum: 10c0/8dc05bf8f48d6d6d24cb9950b705e8b48eedac8dba159514c5c61ec2da54c9de3f40ff33e8a662eb661af6fbbf9c80b83277eefba6e54a1b5fa26a377ec0d694 languageName: node linkType: hard -"@mui/x-date-pickers@npm:^6.20.2": - version: 6.20.2 - resolution: "@mui/x-date-pickers@npm:6.20.2" +"@mui/x-date-pickers@npm:^7.22.2": + version: 7.22.2 + resolution: "@mui/x-date-pickers@npm:7.22.2" dependencies: - "@babel/runtime": "npm:^7.23.2" - "@mui/base": "npm:^5.0.0-beta.22" - "@mui/utils": "npm:^5.14.16" - "@types/react-transition-group": "npm:^4.4.8" - clsx: "npm:^2.0.0" + "@babel/runtime": "npm:^7.25.7" + "@mui/utils": "npm:^5.16.6 || ^6.0.0" + "@mui/x-internals": "npm:7.21.0" + "@types/react-transition-group": "npm:^4.4.11" + clsx: "npm:^2.1.1" prop-types: "npm:^15.8.1" react-transition-group: "npm:^4.4.5" peerDependencies: "@emotion/react": ^11.9.0 "@emotion/styled": ^11.8.1 - "@mui/material": ^5.8.6 - "@mui/system": ^5.8.0 - date-fns: ^2.25.0 || ^3.2.0 - date-fns-jalali: ^2.13.0-0 + "@mui/material": ^5.15.14 || ^6.0.0 + "@mui/system": ^5.15.14 || ^6.0.0 + date-fns: ^2.25.0 || ^3.2.0 || ^4.0.0 + date-fns-jalali: ^2.13.0-0 || ^3.2.0-0 dayjs: ^1.10.7 luxon: ^3.0.2 moment: ^2.29.4 - moment-hijri: ^2.1.2 + moment-hijri: ^2.1.2 || ^3.0.0 moment-jalaali: ^0.7.4 || ^0.8.0 || ^0.9.0 || ^0.10.0 react: ^17.0.0 || ^18.0.0 react-dom: ^17.0.0 || ^18.0.0@@ -4362,85 +4593,97 @@ moment-hijri:
optional: true moment-jalaali: optional: true - checksum: 10c0/1e1d414776564d9f6aed36ec61382a74f5002e829178af0fb1a308633a9acfe3f1a78d95bdbcd3f4b5d44c0194d940743dacb66074ee68c051f05fd0de56e239 + checksum: 10c0/64d91683b9d2216dd9b6f336677450c84a28ba380674084261d5f5ea1d49b4390461da89878ff80ec1aa08f9f96bd04022f8ac174ec2012b1114bd9e53c384ce + languageName: node + linkType: hard + +"@mui/x-internals@npm:7.21.0": + version: 7.21.0 + resolution: "@mui/x-internals@npm:7.21.0" + dependencies: + "@babel/runtime": "npm:^7.25.7" + "@mui/utils": "npm:^5.16.6 || ^6.0.0" + peerDependencies: + react: ^17.0.0 || ^18.0.0 + checksum: 10c0/46d105cee6cc9e53ce8fdf6149bf0758271b546ad3319b3b8fa48f1e93b574c9255218e43dffbd90214e922933291cb1d8aab54be475bcc8303fa8452078d3cb languageName: node linkType: hard -"@next/env@npm:14.2.7": - version: 14.2.7 - resolution: "@next/env@npm:14.2.7" - checksum: 10c0/1cda023007acda4d47036a25fba0e039d9b2df9c3770651dc289207e0537506675546c02b5b574fe92bb1adc1c887d948d5cb630673aa572754278b82d150b7e +"@next/env@npm:14.2.18": + version: 14.2.18 + resolution: "@next/env@npm:14.2.18" + checksum: 10c0/b075fb54873de7cd977b4e07af186af60251e71ea6a905445c4fc14f076e46e3f9b51f489e1363c946c8807388cfc834dd7bf96a3257d5ba4d4ffa94610c96e7 languageName: node linkType: hard -"@next/eslint-plugin-next@npm:14.2.7": - version: 14.2.7 - resolution: "@next/eslint-plugin-next@npm:14.2.7" +"@next/eslint-plugin-next@npm:14.2.18": + version: 14.2.18 + resolution: "@next/eslint-plugin-next@npm:14.2.18" dependencies: glob: "npm:10.3.10" - checksum: 10c0/8ed20ef90e2bae29070e07bc312247b30ca1774d6d695c0f13513fda4c72a2d2a1f6fb6b277cb96a728504f7e7601157931c2e0607c15d88fa9007db4d89ca81 + checksum: 10c0/1696974728438e7f37a36664003d87e81c4c30f802a1d91c023d54bc771b2d5c169df08ff36d9d11ab19f62fb29464f424c48ee1cfc0e17332726c0f2ab6ea80 languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-darwin-arm64@npm:14.2.7" +"@next/swc-darwin-arm64@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-darwin-arm64@npm:14.2.18" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-darwin-x64@npm:14.2.7" +"@next/swc-darwin-x64@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-darwin-x64@npm:14.2.18" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-linux-arm64-gnu@npm:14.2.7" +"@next/swc-linux-arm64-gnu@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-linux-arm64-gnu@npm:14.2.18" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-linux-arm64-musl@npm:14.2.7" +"@next/swc-linux-arm64-musl@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-linux-arm64-musl@npm:14.2.18" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-linux-x64-gnu@npm:14.2.7" +"@next/swc-linux-x64-gnu@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-linux-x64-gnu@npm:14.2.18" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-linux-x64-musl@npm:14.2.7" +"@next/swc-linux-x64-musl@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-linux-x64-musl@npm:14.2.18" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-win32-arm64-msvc@npm:14.2.7" +"@next/swc-win32-arm64-msvc@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-win32-arm64-msvc@npm:14.2.18" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-ia32-msvc@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-win32-ia32-msvc@npm:14.2.7" +"@next/swc-win32-ia32-msvc@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-win32-ia32-msvc@npm:14.2.18" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:14.2.7": - version: 14.2.7 - resolution: "@next/swc-win32-x64-msvc@npm:14.2.7" +"@next/swc-win32-x64-msvc@npm:14.2.18": + version: 14.2.18 + resolution: "@next/swc-win32-x64-msvc@npm:14.2.18" conditions: os=win32 & cpu=x64 languageName: node linkType: hard@@ -4525,39 +4768,6 @@ "@panva/hkdf@npm:^1.0.2":
version: 1.2.1 resolution: "@panva/hkdf@npm:1.2.1" checksum: 10c0/1fabdec9bd2c19b8e88a3fa6fd0c25e25823c5000d9efdf4b6dfe32e9f370f8b9603cf776d120d160bec15fba17e079974cc34f0f52cebb24602cd832dfde19c - languageName: node - linkType: hard - -"@peculiar/asn1-schema@npm:^2.3.8": - version: 2.3.13 - resolution: "@peculiar/asn1-schema@npm:2.3.13" - dependencies: - asn1js: "npm:^3.0.5" - pvtsutils: "npm:^1.3.5" - tslib: "npm:^2.6.2" - checksum: 10c0/98020f09a1b412e16bd5cb96ecb35a4da8043d90f4911eaa8b565cba7c437ae39544f928f8c112d5926f260bff78a184c165f60f153409c94b5224527ea355b0 - languageName: node - linkType: hard - -"@peculiar/json-schema@npm:^1.1.12": - version: 1.1.12 - resolution: "@peculiar/json-schema@npm:1.1.12" - dependencies: - tslib: "npm:^2.0.0" - checksum: 10c0/202132c66dcc6b6aca5d0af971c015be2e163da2f7f992910783c5d39c8a7db59b6ec4f4ce419459a1f954b7e1d17b6b253f0e60072c1b3d254079f4eaebc311 - languageName: node - linkType: hard - -"@peculiar/webcrypto@npm:^1.4.0": - version: 1.5.0 - resolution: "@peculiar/webcrypto@npm:1.5.0" - dependencies: - "@peculiar/asn1-schema": "npm:^2.3.8" - "@peculiar/json-schema": "npm:^1.1.12" - pvtsutils: "npm:^1.3.5" - tslib: "npm:^2.6.2" - webcrypto-core: "npm:^1.8.0" - checksum: 10c0/4f6f24b2c52c2155b9c569b6eb1d57954cb5f7bd2764a50cdaed7aea17a6dcf304b75b87b57ba318756ffec8179a07d9a76534aaf77855912b838543e5ff8983 languageName: node linkType: hard@@ -6020,9 +6230,9 @@ checksum: 10c0/2e2fb6cc57f227912814085b7b01fede050cd4746ea8d49a1e44d5a0e56a804663b0340ae2f11af7559ea9bf4d087a11f2f646197a660ea3cb04e19efc04aa63
languageName: node linkType: hard -"@strapi/admin@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/admin@npm:4.25.8" +"@strapi/admin@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/admin@npm:4.25.16" dependencies: "@casl/ability": "npm:6.5.0" "@pmmmwh/react-refresh-webpack-plugin": "npm:0.5.11"@@ -6030,15 +6240,15 @@ "@radix-ui/react-context": "npm:1.0.1"
"@radix-ui/react-toolbar": "npm:1.0.4" "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/permissions": "npm:4.25.8" - "@strapi/provider-audit-logs-local": "npm:4.25.8" - "@strapi/types": "npm:4.25.8" - "@strapi/typescript-utils": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/permissions": "npm:4.25.16" + "@strapi/provider-audit-logs-local": "npm:4.25.16" + "@strapi/types": "npm:4.25.16" + "@strapi/typescript-utils": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" "@vitejs/plugin-react-swc": "npm:3.5.0" - axios: "npm:1.6.0" + axios: "npm:1.7.4" bcryptjs: "npm:2.4.3" boxen: "npm:5.1.2" browserslist: "npm:^4.22.2"@@ -6119,7 +6329,7 @@ slate-history: "npm:0.93.0"
slate-react: "npm:0.98.3" style-loader: "npm:3.3.4" typescript: "npm:5.2.2" - vite: "npm:5.0.13" + vite: "npm:5.1.8" webpack: "npm:^5.89.0" webpack-bundle-analyzer: "npm:^4.10.1" webpack-dev-middleware: "npm:6.1.2"@@ -6132,16 +6342,16 @@ 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: 10c0/06dfab30e57b84a4d98448ce05e23782cb0bce438f0b07d610b175e8364dc26bb1348cc878271849ecafabf9b4d492f51fedca77f85fb61f2a69d77d3b51afef + checksum: 10c0/6ea271f689e77802a3be13e3eece0cee0c2e6aa65636bc314e8d78dd682ebd1b96b887bf85edfb0b3876cabf50ad597fe8cc824aaa944d70ec7fad019b376ffa languageName: node linkType: hard -"@strapi/cloud-cli@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/cloud-cli@npm:4.25.8" +"@strapi/cloud-cli@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/cloud-cli@npm:4.25.16" dependencies: - "@strapi/utils": "npm:4.25.8" - axios: "npm:1.6.0" + "@strapi/utils": "npm:4.25.16" + axios: "npm:1.7.4" chalk: "npm:4.1.2" cli-progress: "npm:3.12.0" commander: "npm:8.3.0"@@ -6156,26 +6366,26 @@ minimatch: "npm:9.0.3"
open: "npm:8.4.0" ora: "npm:5.4.1" pkg-up: "npm:3.1.0" - tar: "npm:6.1.13" + tar: "npm:6.2.1" xdg-app-paths: "npm:8.3.0" yup: "npm:0.32.9" bin: cloud-cli: bin/index.js - checksum: 10c0/da0fe84391f05535c031d0a92173632b4e0955d4daccda31714d9b873a1b4ed94a9f8b9d8c3bb862ff0f642cf136ef870c5a103e1d1c2130e9cc1c7946e40ea6 + checksum: 10c0/179b2a5436a7b4587d95bd6ab8572d40826db83daf8a4c2a83dc99e77f43db2d9baac4b1147903526cf7519b576f0943c082d9f3251c35933286f9f879b8bf37 languageName: node linkType: hard -"@strapi/content-releases@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/content-releases@npm:4.25.8" +"@strapi/content-releases@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/content-releases@npm:4.25.16" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/types": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" - axios: "npm:1.6.0" + "@strapi/types": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" + axios: "npm:1.7.4" date-fns: "npm:2.30.0" date-fns-tz: "npm:2.0.0" formik: "npm:2.4.0"@@ -6191,18 +6401,18 @@ 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: 10c0/c94c5c689007697a8d793e1d00e2f11d91e4c04de32aaaf233d686719281be7eaf971ddbccda2cea086a1633f3b37916240c6c5fe4687551a4663d2653c65ea4 + checksum: 10c0/8103aa3971e3349c257feb73c0db13f4da649d92ef05ed719d2d692785deed573fbe05b5c6ed20be1ff24bd91c9233d5996a9ba7e5f3d1893c44348a06d7cbf7 languageName: node linkType: hard -"@strapi/data-transfer@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/data-transfer@npm:4.25.8" +"@strapi/data-transfer@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/data-transfer@npm:4.25.16" dependencies: - "@strapi/logger": "npm:4.25.8" - "@strapi/strapi": "npm:4.25.8" - "@strapi/types": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/logger": "npm:4.25.16" + "@strapi/strapi": "npm:4.25.16" + "@strapi/types": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" chalk: "npm:4.1.2" cli-table3: "npm:0.6.5" commander: "npm:8.3.0"@@ -6214,20 +6424,20 @@ resolve-cwd: "npm:3.0.0"
semver: "npm:7.5.4" stream-chain: "npm:2.2.5" stream-json: "npm:1.8.0" - tar: "npm:6.1.13" + tar: "npm:6.2.1" tar-stream: "npm:2.2.0" - ws: "npm:8.13.0" + ws: "npm:8.18.0" peerDependencies: "@strapi/strapi": ^4.14.4 - checksum: 10c0/3e555a6ccac9ddf40fa4bd6b02d6ba2d8401388756854675077cfd30197fdeb9222ed6024854537fe7938a631172e5abdd18c4abcb707cc304e4e531f5dd1973 + checksum: 10c0/e11283d577f72228cab61bb325430148aa55f838d16f6ffea81c7238cae0fc4cb69336cca71d4d649dac25568d54074b5cd6d7acd68d90a5d50436cb49189d57 languageName: node linkType: hard -"@strapi/database@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/database@npm:4.25.8" +"@strapi/database@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/database@npm:4.25.16" dependencies: - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" date-fns: "npm:2.30.0" debug: "npm:4.3.4" fs-extra: "npm:10.0.0"@@ -6235,7 +6445,7 @@ knex: "npm:2.5.0"
lodash: "npm:4.17.21" semver: "npm:7.5.4" umzug: "npm:3.2.1" - checksum: 10c0/2e181d588f2be158696971df2f0aa567e4bb0e5022a8a964400999cb051263c52ee96131a6b1b391c189c1a8121831546f6289ae9cfac614141f1ba46851b3ec + checksum: 10c0/eb11f42018d601b42f68f02365f6ac4bb965ff2ec3049c9d31ae8335c1a448bceb312c561d6023e48ebcca3185b81947819266b6b67a619bca04e748cedd14ae languageName: node linkType: hard@@ -6266,9 +6476,9 @@ checksum: 10c0/79a59889737eae32e40450710fd5496d862f05014c9ac20e60f3c4cbcb116954450105a99e2e0e4f3ed16bbcaaf1b15dde622ac9e1a165c7bc86e8b173c27bfc
languageName: node linkType: hard -"@strapi/generate-new@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/generate-new@npm:4.25.8" +"@strapi/generate-new@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/generate-new@npm:4.25.16" dependencies: "@sentry/node": "npm:6.19.7" chalk: "npm:^4.1.2"@@ -6280,33 +6490,33 @@ node-fetch: "npm:2.7.0"
node-machine-id: "npm:^1.1.10" ora: "npm:^5.4.1" semver: "npm:7.5.4" - tar: "npm:6.1.13" - checksum: 10c0/0e8614303481d5659a7c11f6ba9147e53d62d251be241243b6144ec4a556783b352f9ff2fe65349ea64941130e612b6e78540cc3486fbead130e56e9c89c45f1 + tar: "npm:6.2.1" + checksum: 10c0/9af654d3b728324c7bafe8c98c7dfac74f49ace18fc6d86c42b11a5d9eec17a53fcb4bb770d99bd3872a0c5441b2b73961cb039ea97527a0e49fa775b61b1477 languageName: node linkType: hard -"@strapi/generators@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/generators@npm:4.25.8" +"@strapi/generators@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/generators@npm:4.25.16" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/typescript-utils": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/typescript-utils": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" chalk: "npm:4.1.2" copyfiles: "npm:2.4.1" fs-extra: "npm:10.0.0" node-plop: "npm:0.26.3" plop: "npm:2.7.6" pluralize: "npm:8.0.0" - checksum: 10c0/0d4a8f31d696ab6e847e4eaddc879d78d03689965d56125a567345f1f02034656c18ff9f249ccfc1fee8bb0328705fd6d10ca95a05f811f7842a093d5eeae57e + checksum: 10c0/4f411e22a58215717c1831eb75d43a086b7bad7b5a6bf50eb5ab74896afce5d58f272827c255fb90bf27101843c417d3c5cf0cfdf65a3aac403c64f3fc4e9469 languageName: node linkType: hard -"@strapi/helper-plugin@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/helper-plugin@npm:4.25.8" +"@strapi/helper-plugin@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/helper-plugin@npm:4.25.16" dependencies: - axios: "npm:1.6.0" + axios: "npm:1.7.4" date-fns: "npm:2.30.0" formik: "npm:2.4.0" immer: "npm:9.0.19"@@ -6323,7 +6533,7 @@ 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: 10c0/9097f09c041cfd444c65b384e1f467c2d16ea335834658f250563de383587d0c8632d23b4112282f6f20a4d5dc03966826b33dfb732cd4bc87de38e05b6d8409 + checksum: 10c0/6feb2d9e35433066023008cd4fd440496c8af9410feb938ceac2fcdae79d5ca189f20e768bc94a6e0216bf96d3bb81b841d44e80aa23db98c915defdc705ab81 languageName: node linkType: hard@@ -6337,13 +6547,13 @@ checksum: 10c0/f62f5e844b33cd9adafe7fd00824e7ff14a3d12d8322634f6fdabbee08eea83f9f221cf77be1deac539660e05746363ab7bd2dac10bbf1302f23948e26a05cb3
languageName: node linkType: hard -"@strapi/logger@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/logger@npm:4.25.8" +"@strapi/logger@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/logger@npm:4.25.16" dependencies: lodash: "npm:4.17.21" winston: "npm:3.10.0" - checksum: 10c0/9a5ba24e641403fd8490f9cc65d2091e23e6f9d2162a68b70500c87675ac2c065e85f3ed7f757c8c3fbb8a7042c485bdbe1957880c42bf4eeca2bd8a4a884382 + checksum: 10c0/23194972a000d1ad2977bc3c6c958184388cdc9f3898210b26b1673ae5641155bc6274d23a862abd6c67926f22ba2a6c14d790de0a8b7e1a27c3a2da4a0439dd languageName: node linkType: hard@@ -6378,45 +6588,45 @@ checksum: 10c0/b8cada2fccde1bb5aba5a7c8a09e0c1e04260196782d79ef9d3e9b081edb6e2aad750dd00c88ce243e0387cdab04e9268de808d0504c45814aa0db8a9a121abd
languageName: node linkType: hard -"@strapi/permissions@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/permissions@npm:4.25.8" +"@strapi/permissions@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/permissions@npm:4.25.16" dependencies: "@casl/ability": "npm:6.5.0" - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" lodash: "npm:4.17.21" qs: "npm:6.11.1" sift: "npm:16.0.1" - checksum: 10c0/2a2966f8270970eed7c931f4476f0c4a61407195eebb05efa7024327921c03f359b3e0456dff0299fffc6424cb53bedc6730d5f13adbb94f762b01b5342b16cb + checksum: 10c0/5a48eb9145b66741aaa793c57e781366d4a07a461a9e2dbbe64304022fc4b949a0f869e2f861d506328f7b187a99a92c78a2fc8a049f480ebce816cfd3f83bae languageName: node linkType: hard -"@strapi/plugin-content-manager@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-content-manager@npm:4.25.8" +"@strapi/plugin-content-manager@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-content-manager@npm:4.25.16" dependencies: "@sindresorhus/slugify": "npm:1.1.0" - "@strapi/types": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/types": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" koa: "npm:2.13.4" koa-bodyparser: "npm:4.4.1" lodash: "npm:4.17.21" qs: "npm:6.11.1" - checksum: 10c0/4a1d4cb31e9bba76671ae6e03354123634482c4ff51846ca1bb17f6bcc52b07acebfb2451f87b5b515247a127371fe938c84685a9764f1b593ad3044f6358ee8 + checksum: 10c0/7d3010e2ec74a20fac02b40a9755ca45cfa2f1b77e8898db5309a0f4fe304f6896a85d0bbdb292ca41191d40a1a3b1806a434a06fb9a0f9f3b1087f315774a5d languageName: node linkType: hard -"@strapi/plugin-content-type-builder@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-content-type-builder@npm:4.25.8" +"@strapi/plugin-content-type-builder@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-content-type-builder@npm:4.25.16" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@sindresorhus/slugify": "npm:1.1.0" "@strapi/design-system": "npm:1.19.0" - "@strapi/generators": "npm:4.25.8" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/generators": "npm:4.25.16" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" fs-extra: "npm:10.0.0" immer: "npm:9.0.19" koa-bodyparser: "npm:4.4.1"@@ -6434,19 +6644,19 @@ 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: 10c0/e9e85f52053f1b526aafe0783344af04f1b5b32d5ceeea5fc3ccbc5424793409e2853a0bcc69b2dcae56403a0c497140599ccbb7d53ce29b4a3b6246c654c54c + checksum: 10c0/b297f4db2f84e5eb44e38eb803f803eaa5a08c226995f3239be20becdd92e6c00df7010b4761cc19a0c9ce00ac70e1ee47fa79e0f3f1b6eb8907b6f2c332bea0 languageName: node linkType: hard -"@strapi/plugin-email@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-email@npm:4.25.8" +"@strapi/plugin-email@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-email@npm:4.25.16" dependencies: "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/provider-email-sendmail": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/provider-email-sendmail": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" lodash: "npm:4.17.21" prop-types: "npm:^15.8.1" react-intl: "npm:6.4.1"@@ -6458,20 +6668,20 @@ 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: 10c0/1b76e630121d7f06cc89970bf51f7657e1f698755fc02841131b58500728c5886dc62ed0ad19dd0a0a8de69f5213706ecf7245a65f8dc9b6ae38b6f09d174020 + checksum: 10c0/96eaf89e4b7b880a27b88eeacc3456a085e2982bdb849df35b6006c0e23d68400369118d8246c22e375b4def8ad22d28d1b23e6e4a3bec1c9f711ff3797b6560 languageName: node linkType: hard -"@strapi/plugin-graphql@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-graphql@npm:4.25.8" +"@strapi/plugin-graphql@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-graphql@npm:4.25.16" dependencies: "@graphql-tools/schema": "npm:8.5.1" "@graphql-tools/utils": "npm:^8.13.1" "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" apollo-server-core: "npm:3.12.1" apollo-server-koa: "npm:3.10.0" graphql: "npm:^15.5.1"@@ -6489,20 +6699,20 @@ 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: 10c0/f152bde6ba560e4d295105736d27e14b14e1b0a23d0651fc04ea1895e8ffe10f528aa1dd22fd1191edc8a0221f35ecb3eeb824b80201bb7d0772de2139b087aa + checksum: 10c0/b3ea1d73bfe2da6c041b050f2501ba24e79ac6027911df8f79a59ed9aa17233356599df7766ac3ecda8ef8df13ad035e4aac46d86e6cf2a064adbb865abe2b14 languageName: node linkType: hard -"@strapi/plugin-i18n@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-i18n@npm:4.25.8" +"@strapi/plugin-i18n@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-i18n@npm:4.25.16" dependencies: "@reduxjs/toolkit": "npm:1.9.7" "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/utils": "npm:4.25.8" - axios: "npm:1.6.0" + "@strapi/utils": "npm:4.25.16" + axios: "npm:1.7.4" formik: "npm:2.4.0" immer: "npm:9.0.19" lodash: "npm:4.17.21"@@ -6518,17 +6728,17 @@ 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: 10c0/d1041beb472fc94271c00283db5b61d04ba4ade815cfb799d45a4478e1bd72d6ae6c6fccad5d0a927fe6f7dc86added49d05f70b5038861e996bbcb40ae556e3 + checksum: 10c0/ea67da8f5924f9df8186fcabaf91b167aded08812587dea5ab6293ad8d68a015afe220350a463385f37cf3089078ad8c41107218b5542922accc88733210e12b languageName: node linkType: hard -"@strapi/plugin-sentry@npm:^4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-sentry@npm:4.25.8" +"@strapi/plugin-sentry@npm:^4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-sentry@npm:4.25.16" dependencies: "@sentry/node": "npm:6.19.7" "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" peerDependencies: "@strapi/strapi": ^4.0.0@@ -6536,20 +6746,20 @@ 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: 10c0/a8012fe547e391ac4c65efad9fb025ded1260bbe5c00642d7d4a561668b5d7c6add30c93c50e87dce0f66cd2180d90c6fc5cc402b082a574c8cc3df36b6ddbf9 + checksum: 10c0/9e2739bc597a6e40ce5b2edc41d759884d6820857accba43f3dcb7727f296719f35816196bccf2fc7867b12dcc718afe4547893495fdec293223aaf65a9ac943 languageName: node linkType: hard -"@strapi/plugin-upload@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-upload@npm:4.25.8" +"@strapi/plugin-upload@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-upload@npm:4.25.16" dependencies: "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/provider-upload-local": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" - axios: "npm:1.6.0" + "@strapi/provider-upload-local": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" + axios: "npm:1.7.4" byte-size: "npm:7.0.1" cropperjs: "npm:1.6.0" date-fns: "npm:2.30.0"@@ -6576,18 +6786,18 @@ 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: 10c0/d25324c6d3d0998f3e9223542074108f5c5d4bc82b31bdf824196cfc674512dcf77f70540e599cfd75780524dad2c216ec3f4ea23695dbedd0b3c4a3aea89a66 + checksum: 10c0/e9f462300c62860bd6da33a22fb5b5f0a2d14152612f1239565003a4e84c9ca2555d7112ad9c1e3a1f097c6963f0e8e469cc729c885750fbd872cfb2f2a0d74d languageName: node linkType: hard -"@strapi/plugin-users-permissions@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/plugin-users-permissions@npm:4.25.8" +"@strapi/plugin-users-permissions@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/plugin-users-permissions@npm:4.25.16" dependencies: "@strapi/design-system": "npm:1.19.0" - "@strapi/helper-plugin": "npm:4.25.8" + "@strapi/helper-plugin": "npm:4.25.16" "@strapi/icons": "npm:1.19.0" - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" bcryptjs: "npm:2.4.3" formik: "npm:2.4.0" grant-koa: "npm:5.4.8"@@ -6610,70 +6820,70 @@ 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: 10c0/90cdaa34e2c41716ecaac1cdb387c35aca13d531758d8a74f9b33725a73e332455397be6cca824f6052b6da51f3da6f1bff5301f13e1158591a978243b883c35 + checksum: 10c0/4308ccfb6d9ac78ed5e2a9416ee54de2efafb502600dd3c3ff04a4c8e2f37774869016d2910bde8a347a9ef6a8c4091e93eb2378dc2de6869b2218fde3a09683 languageName: node linkType: hard -"@strapi/provider-audit-logs-local@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/provider-audit-logs-local@npm:4.25.8" - checksum: 10c0/63882d74cc35f1188df338af75878a8ae69e88a1d976f7a52275063b6a475b18d97ef7ddb1cc941f05db55d65aa900c864bf55b03e48a759290093ec3c087345 +"@strapi/provider-audit-logs-local@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/provider-audit-logs-local@npm:4.25.16" + checksum: 10c0/9b0d4374934eb43471b6181db08b35562d678fad9d8be86884b233755a67aeadda0e2e9da7c9673ca97e203f7073e951913d2790348551237c979ae263cbf772 languageName: node linkType: hard -"@strapi/provider-email-nodemailer@npm:^4.25.8": - version: 4.25.8 - resolution: "@strapi/provider-email-nodemailer@npm:4.25.8" +"@strapi/provider-email-nodemailer@npm:^4.25.16": + version: 4.25.16 + resolution: "@strapi/provider-email-nodemailer@npm:4.25.16" dependencies: lodash: "npm:4.17.21" nodemailer: "npm:6.9.1" - checksum: 10c0/fbcf2780d937ab020704d4a30f4698301810e6570ed34d68c809864d6b96ed9e1a4e09ed88630501aad0707f3d772fda37d0729a704ce65e0fd3b7c75b78b714 + checksum: 10c0/953e34b06a5e684e7fcb3a8482bbe79f22bdbeb9eaeeaa9fdccf81faf78c12016b7797d4100c43dc696a60a38d69cf33d333b28ca348f960b2ad3ba42a97831a languageName: node linkType: hard -"@strapi/provider-email-sendmail@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/provider-email-sendmail@npm:4.25.8" +"@strapi/provider-email-sendmail@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/provider-email-sendmail@npm:4.25.16" dependencies: - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" sendmail: "npm:^1.6.1" - checksum: 10c0/906e01f2c3e57957208eb3f107b427a690285c78c719c22d421fbf3e15c40040fdd81a20e81b5ddec72b9ce611a66b0c73f63b8049ec9154a948b4fbeaeb9f48 + checksum: 10c0/571865c2f998d3094ffe5e636d5bd4492978e2692553a875620df53a5ff933aac2883cdbd818c8e6af04e4173090bd5281e8d218a1f66dbcb0782922cc208730 languageName: node linkType: hard -"@strapi/provider-upload-local@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/provider-upload-local@npm:4.25.8" +"@strapi/provider-upload-local@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/provider-upload-local@npm:4.25.16" dependencies: - "@strapi/utils": "npm:4.25.8" + "@strapi/utils": "npm:4.25.16" fs-extra: "npm:10.0.0" - checksum: 10c0/52e748589300cb2eeead9639da2678909bd23758e326ac668433e1e28f9e6d79fc54b22ad2a6a77f4e4d44ed6679b05c6a25cf0c58a0fb50900ff83ba1b3126f + checksum: 10c0/abde530ce1887dd9187e9e758bb123c23d303d21811958e7c0d9f03774a73b753cdbd458ae5eb25f9600a923a1ec83faafce280d353442ab6432ae453ac14bde languageName: node linkType: hard -"@strapi/strapi@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/strapi@npm:4.25.8" +"@strapi/strapi@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/strapi@npm:4.25.16" dependencies: "@koa/cors": "npm:5.0.0" "@koa/router": "npm:10.1.1" - "@strapi/admin": "npm:4.25.8" - "@strapi/cloud-cli": "npm:4.25.8" - "@strapi/content-releases": "npm:4.25.8" - "@strapi/data-transfer": "npm:4.25.8" - "@strapi/database": "npm:4.25.8" - "@strapi/generate-new": "npm:4.25.8" - "@strapi/generators": "npm:4.25.8" - "@strapi/logger": "npm:4.25.8" + "@strapi/admin": "npm:4.25.16" + "@strapi/cloud-cli": "npm:4.25.16" + "@strapi/content-releases": "npm:4.25.16" + "@strapi/data-transfer": "npm:4.25.16" + "@strapi/database": "npm:4.25.16" + "@strapi/generate-new": "npm:4.25.16" + "@strapi/generators": "npm:4.25.16" + "@strapi/logger": "npm:4.25.16" "@strapi/pack-up": "npm:4.23.0" - "@strapi/permissions": "npm:4.25.8" - "@strapi/plugin-content-manager": "npm:4.25.8" - "@strapi/plugin-content-type-builder": "npm:4.25.8" - "@strapi/plugin-email": "npm:4.25.8" - "@strapi/plugin-upload": "npm:4.25.8" - "@strapi/types": "npm:4.25.8" - "@strapi/typescript-utils": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/permissions": "npm:4.25.16" + "@strapi/plugin-content-manager": "npm:4.25.16" + "@strapi/plugin-content-type-builder": "npm:4.25.16" + "@strapi/plugin-email": "npm:4.25.16" + "@strapi/plugin-upload": "npm:4.25.16" + "@strapi/types": "npm:4.25.16" + "@strapi/typescript-utils": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" bcryptjs: "npm:2.4.3" boxen: "npm:5.1.2" chalk: "npm:4.1.2"@@ -6724,33 +6934,33 @@ yalc: "npm:1.0.0-pre.53"
yup: "npm:0.32.9" bin: strapi: bin/strapi.js - checksum: 10c0/d5e0429fcff839fd106033c6972ba712e1fc9033d2915346c0664709af81eefafd8e4736ae11d27df5c4038ceb60ed6866bc283ccca91695c6f0cc999b90b477 + checksum: 10c0/4b5772b976f9fd1b9bc207de66f6f057b3241897d4fd42cdd2cc4e8bf6ab8d55140e1e43bcefd0978445096b245294caa53519bb37adedf460b05ddf89174b9b languageName: node linkType: hard -"@strapi/types@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/types@npm:4.25.8" +"@strapi/types@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/types@npm:4.25.16" dependencies: "@casl/ability": "npm:6.5.0" "@koa/cors": "npm:5.0.0" "@koa/router": "npm:10.1.1" - "@strapi/database": "npm:4.25.8" - "@strapi/logger": "npm:4.25.8" - "@strapi/permissions": "npm:4.25.8" - "@strapi/utils": "npm:4.25.8" + "@strapi/database": "npm:4.25.16" + "@strapi/logger": "npm:4.25.16" + "@strapi/permissions": "npm:4.25.16" + "@strapi/utils": "npm:4.25.16" commander: "npm:8.3.0" https-proxy-agent: "npm:5.0.1" koa: "npm:2.13.4" node-fetch: "npm:2.7.0" node-schedule: "npm:2.1.1" - checksum: 10c0/8a4abdde939afc36d3c7b324f446ba4f6f89f2613dcfcb843a00bafb98289a7968da3ca0b3541efa697b79ecbb668d1b5d3a47f81660792ec1e3cc80b03ddb8a + checksum: 10c0/7480a1d7b67fc7b06674c8055cf7b32ca0852e375d5a8573ed424f49a7c586ea91e35083a47cf4033513fe548838484ec0ee18284d36dbb19dd4d5bdfde728cb languageName: node linkType: hard -"@strapi/typescript-utils@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/typescript-utils@npm:4.25.8" +"@strapi/typescript-utils@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/typescript-utils@npm:4.25.16" dependencies: chalk: "npm:4.1.2" cli-table3: "npm:0.6.5"@@ -6758,7 +6968,7 @@ fs-extra: "npm:10.0.0"
lodash: "npm:4.17.21" prettier: "npm:2.8.4" typescript: "npm:5.2.2" - checksum: 10c0/9c5d3c926430ba42e8a7db86ee57adbe606e33f07f8b667103f80b50b0b0bb1768507d903b3318455b4e0923b20ee2c71c6c32040771729b4c219b8e79e21d4e + checksum: 10c0/266dd52f9e024f9d2e89fef1f209ae8f1677687fa4cf8bd61ff04b16baf01c52a6902985503dd3e08fa75343fc482d2b32315f241a2ef49b8f6fad0cf55321bf languageName: node linkType: hard@@ -6794,9 +7004,9 @@ checksum: 10c0/75eea48aeafc79769ab1c70b249e9315c17fce47294c922118d143462c0355fdfd7909f6fa0665f94f269a0cdfc2bd14a524b9f2fa792845480d7991cc75c040
languageName: node linkType: hard -"@strapi/utils@npm:4.25.8": - version: 4.25.8 - resolution: "@strapi/utils@npm:4.25.8" +"@strapi/utils@npm:4.25.16": + version: 4.25.16 + resolution: "@strapi/utils@npm:4.25.16" dependencies: "@sindresorhus/slugify": "npm:1.1.0" date-fns: "npm:2.30.0"@@ -6804,7 +7014,7 @@ http-errors: "npm:1.8.1"
lodash: "npm:4.17.21" p-map: "npm:4.0.0" yup: "npm:0.32.9" - checksum: 10c0/8ccf2a7a5aabfdaf3a008b759811d677e985b7ee89d5c79b453e1d3788c48765653abee83ea492e65b3317541ece8ebb636b963fc9bc386f27870ea2822cf137 + checksum: 10c0/a994bbc668b07293f0a6efc44cc40a8ad71507f2efae7357d0418b811f2fa62ae3ec4d0bb02017f652d50f42177a2be6fe5e48f46597bff7d7331468fd44123d languageName: node linkType: hard@@ -6980,30 +7190,30 @@ checksum: 10c0/73946918c025339db68b09abd91fa3001e87fc749c619d2e9c2003a663039d4c3cb89836c98a96598b3d47dec2481284ba85355392644911f5ecd2336536697f
languageName: node linkType: hard -"@tolgee/core@npm:5.28.6": - version: 5.28.6 - resolution: "@tolgee/core@npm:5.28.6" - checksum: 10c0/49077cfdac412e1a2c398a4aa547262088f75ee58ad0ceaa7de53b431516f0f54529abf668f8c7c8aacc68a602a1c623c16f80b61d00176f7f8bbf5225707d7b +"@tolgee/core@npm:5.31.5": + version: 5.31.5 + resolution: "@tolgee/core@npm:5.31.5" + checksum: 10c0/8c106f4bcfae41b15f15afe4b2cb0749db8abd2ed8809eb48237de9f6128024d64ffbc649a495c2aca847091e0d39d564ea9a1b61b5dfe509dd49090f3ff9cce languageName: node linkType: hard -"@tolgee/i18next@npm:^5.28.6": - version: 5.28.6 - resolution: "@tolgee/i18next@npm:5.28.6" +"@tolgee/i18next@npm:^5.31.5": + version: 5.31.5 + resolution: "@tolgee/i18next@npm:5.31.5" dependencies: - "@tolgee/web": "npm:5.28.6" + "@tolgee/web": "npm:5.31.5" peerDependencies: i18next: "*" - checksum: 10c0/856926be6a1f03e6f6a8d1d59bdc764cdc53a85f011fd76b5ad28d538e1253a11ef4341f74df2ee291987f693c0a2e6db27d3ff42a81befbe6b4860c10140051 + checksum: 10c0/3a366de86423e2fdb85ec16e5adeb98155acb0cd01b0b314e6f02957e5c4cc4d186c0616a3c4508fa99fcd1a0b35660e8fc726a1e14f83798d325e4309dc56d6 languageName: node linkType: hard -"@tolgee/web@npm:5.28.6": - version: 5.28.6 - resolution: "@tolgee/web@npm:5.28.6" +"@tolgee/web@npm:5.31.5": + version: 5.31.5 + resolution: "@tolgee/web@npm:5.31.5" dependencies: - "@tolgee/core": "npm:5.28.6" - checksum: 10c0/740792e70e05f19e8bbb99a9143ac8c7b8f17994f2e8d21fc79d25219665030342d87c75fe5730d4eb9bbef3f4d3fbab487d131a17b335d820547b94c97b849d + "@tolgee/core": "npm:5.31.5" + checksum: 10c0/dd6b9a8cff312c9cc6cf5338719ae33c39a71af13d3753e241443f2c085569429bc72e7bf5a26f99430822f869395ba765f441272d8b3983fa3bd1251baa97db languageName: node linkType: hard@@ -7167,6 +7377,13 @@ "@types/estree@npm:1.0.5, @types/estree@npm:^1.0.5":
version: 1.0.5 resolution: "@types/estree@npm:1.0.5" checksum: 10c0/b3b0e334288ddb407c7b3357ca67dbee75ee22db242ca7c56fe27db4e1a31989cb8af48a84dd401deb787fe10cc6b2ab1ee82dc4783be87ededbe3d53c79c70d + languageName: node + linkType: hard + +"@types/estree@npm:^1.0.6": + version: 1.0.6 + resolution: "@types/estree@npm:1.0.6" + checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a languageName: node linkType: hard@@ -7348,7 +7565,7 @@ checksum: 10c0/24de857aa8d61526bbfbbaa383aa538283ad17363fcd5bb5148e2c7f604547db36646440e739d78241ed008702a8920665d1add5618687b6743858fae00da211
languageName: node linkType: hard -"@types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": +"@types/json-schema@npm:^7.0.15, @types/json-schema@npm:^7.0.5, @types/json-schema@npm:^7.0.8, @types/json-schema@npm:^7.0.9": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db@@ -7469,7 +7686,7 @@ checksum: 10c0/83cf1c11748891b714e129de0585af4c55dd4c2cafb1f1d5233d79246e5e1e19d1b5ad9e8db449667b3ffa2b6c80125c429dbee1054e9efb45758dbc4e118562
languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:>=8.1.0, @types/node@npm:^22.4.2": +"@types/node@npm:*, @types/node@npm:>=8.1.0": version: 22.5.1 resolution: "@types/node@npm:22.5.1" dependencies:@@ -7485,6 +7702,15 @@ checksum: 10c0/0742294912a6e79786cdee9ed77cff6ee8ff007b55d8e21170fc3e5994ad3a8101fea741898091876f8dc32b0a5ae3d64537b7176799e92da56346028d2cbcd2
languageName: node linkType: hard +"@types/node@npm:^22.9.0": + version: 22.9.0 + resolution: "@types/node@npm:22.9.0" + dependencies: + undici-types: "npm:~6.19.8" + checksum: 10c0/3f46cbe0a49bab4ba30494025e4c8a6e699b98ac922857aa1f0209ce11a1313ee46e6808b8f13fe5b8b960a9d7796b77c8d542ad4e9810e85ef897d5593b5d51 + languageName: node + linkType: hard + "@types/normalize-package-data@npm:^2.4.0": version: 2.4.4 resolution: "@types/normalize-package-data@npm:2.4.4"@@ -7508,13 +7734,20 @@ checksum: 10c0/8d4e80b660621958e5045cc212f47d99a00759680a71bf3ff8aa700407965da2653dbeb636e1f0cda87ee6e487ad26b58666386960fd713dbdcc6e1eb5a9ccd7
languageName: node linkType: hard -"@types/prop-types@npm:*, @types/prop-types@npm:^15.7.12": +"@types/prop-types@npm:*": version: 15.7.12 resolution: "@types/prop-types@npm:15.7.12" checksum: 10c0/1babcc7db6a1177779f8fde0ccc78d64d459906e6ef69a4ed4dd6339c920c2e05b074ee5a92120fe4e9d9f1a01c952f843ebd550bee2332fc2ef81d1706878f8 languageName: node linkType: hard +"@types/prop-types@npm:^15.7.13": + version: 15.7.13 + resolution: "@types/prop-types@npm:15.7.13" + checksum: 10c0/1b20fc67281902c6743379960247bc161f3f0406ffc0df8e7058745a85ea1538612109db0406290512947f9632fe9e10e7337bf0ce6338a91d6c948df16a7c61 + languageName: node + linkType: hard + "@types/qs@npm:*": version: 6.9.15 resolution: "@types/qs@npm:6.9.15"@@ -7529,16 +7762,16 @@ checksum: 10c0/361bb3e964ec5133fa40644a0b942279ed5df1949f21321d77de79f48b728d39253e5ce0408c9c17e4e0fd95ca7899da36841686393b9f7a1e209916e9381a3c
languageName: node linkType: hard -"@types/react-dom@npm:^18.3.0": - version: 18.3.0 - resolution: "@types/react-dom@npm:18.3.0" +"@types/react-dom@npm:^18.3.1": + version: 18.3.1 + resolution: "@types/react-dom@npm:18.3.1" dependencies: "@types/react": "npm:*" - checksum: 10c0/6c90d2ed72c5a0e440d2c75d99287e4b5df3e7b011838cdc03ae5cd518ab52164d86990e73246b9d812eaf02ec351d74e3b4f5bd325bf341e13bf980392fd53b + checksum: 10c0/8b416551c60bb6bd8ec10e198c957910cfb271bc3922463040b0d57cf4739cdcd24b13224f8d68f10318926e1ec3cd69af0af79f0291b599a992f8c80d47f1eb languageName: node linkType: hard -"@types/react-transition-group@npm:^4.4.0, @types/react-transition-group@npm:^4.4.10, @types/react-transition-group@npm:^4.4.8": +"@types/react-transition-group@npm:^4.4.0, @types/react-transition-group@npm:^4.4.11": version: 4.4.11 resolution: "@types/react-transition-group@npm:4.4.11" dependencies:@@ -7547,7 +7780,7 @@ checksum: 10c0/8fbf0dcc1b81985cdcebe3c59d769fe2ea3f4525f12c3a10a7429a59f93e303c82b2abb744d21cb762879f4514969d70a7ab11b9bf486f92213e8fe70e04098d
languageName: node linkType: hard -"@types/react@npm:*, @types/react@npm:16 || 17 || 18, @types/react@npm:^18.3.4": +"@types/react@npm:*, @types/react@npm:16 || 17 || 18": version: 18.3.4 resolution: "@types/react@npm:18.3.4" dependencies:@@ -7557,6 +7790,16 @@ checksum: 10c0/5c52e1e6f540cff21e3c2a5212066d02e005f6fb21e4a536a29097fae878db9f407cd7a4b43778f51359349c5f692e08bc77ddb5f5cecbfca9ca4d4e3c91a48e
languageName: node linkType: hard +"@types/react@npm:^18.3.12": + version: 18.3.12 + resolution: "@types/react@npm:18.3.12" + dependencies: + "@types/prop-types": "npm:*" + csstype: "npm:^3.0.2" + checksum: 10c0/8bae8d9a41619804561574792e29112b413044eb0d53746dde2b9720c1f9a59f71c895bbd7987cd8ce9500b00786e53bc032dced38cddf42910458e145675290 + languageName: node + linkType: hard + "@types/resolve@npm:1.17.1": version: 1.17.1 resolution: "@types/resolve@npm:1.17.1"@@ -7633,10 +7876,10 @@ checksum: 10c0/82824c1051ba40a00e3d47964cdf4546a224e95f172e15a9c62aa3f118acee1c7518b627a34f3aa87298a2039f982e8509f92bfcc18bea7c255c189c293ba547
languageName: node linkType: hard -"@types/uuid@npm:^9.0.8": - version: 9.0.8 - resolution: "@types/uuid@npm:9.0.8" - checksum: 10c0/b411b93054cb1d4361919579ef3508a1f12bf15b5fdd97337d3d351bece6c921b52b6daeef89b62340fd73fd60da407878432a1af777f40648cbe53a01723489 +"@types/uuid@npm:^10.0.0": + version: 10.0.0 + resolution: "@types/uuid@npm:10.0.0" + checksum: 10c0/9a1404bf287164481cb9b97f6bb638f78f955be57c40c6513b7655160beb29df6f84c915aaf4089a1559c216557dc4d2f79b48d978742d3ae10b937420ddac60 languageName: node linkType: hard@@ -7665,67 +7908,124 @@ checksum: 10c0/d16937d7ac30dff697801c3d6f235be2166df42e4a88bf730fa6dc09201de3727c0a9500c59a672122313341de5f24e45ee0ff579c08ce91928e519090b7906b
languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0": - version: 7.2.0 - resolution: "@typescript-eslint/parser@npm:7.2.0" +"@typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": + version: 8.15.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.15.0" dependencies: - "@typescript-eslint/scope-manager": "npm:7.2.0" - "@typescript-eslint/types": "npm:7.2.0" - "@typescript-eslint/typescript-estree": "npm:7.2.0" - "@typescript-eslint/visitor-keys": "npm:7.2.0" + "@eslint-community/regexpp": "npm:^4.10.0" + "@typescript-eslint/scope-manager": "npm:8.15.0" + "@typescript-eslint/type-utils": "npm:8.15.0" + "@typescript-eslint/utils": "npm:8.15.0" + "@typescript-eslint/visitor-keys": "npm:8.15.0" + graphemer: "npm:^1.4.0" + ignore: "npm:^5.3.1" + natural-compare: "npm:^1.4.0" + ts-api-utils: "npm:^1.3.0" + peerDependencies: + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/90ef10cc7d37a81abec4f4a3ffdfc3a0da8e99d949e03c75437e96e8ab2e896e34b85ab64718690180a7712581031b8611c5d8e7666d6ed4d60b9ace834d58e3 + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": + version: 8.15.0 + resolution: "@typescript-eslint/parser@npm:8.15.0" + dependencies: + "@typescript-eslint/scope-manager": "npm:8.15.0" + "@typescript-eslint/types": "npm:8.15.0" + "@typescript-eslint/typescript-estree": "npm:8.15.0" + "@typescript-eslint/visitor-keys": "npm:8.15.0" debug: "npm:^4.3.4" peerDependencies: - eslint: ^8.56.0 + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 10c0/11ce36c68212fdbf98fc6fd32ba0977d46b645fd669a3f4fdb8be2036225f86ad005b31a66f97097e90517c44c92cf9cc5fb1d6e9647ee2fa125c4af21cdb477 + checksum: 10c0/19c25aea0dc51faa758701a5319a89950fd30494d9d645db8ced84fb60714c5e7d4b51fc4ee8ccb07ddefec88c51ee307ee7e49addd6330ee8f3e7ee9ba329fc + languageName: node + linkType: hard + +"@typescript-eslint/scope-manager@npm:8.15.0": + version: 8.15.0 + resolution: "@typescript-eslint/scope-manager@npm:8.15.0" + dependencies: + "@typescript-eslint/types": "npm:8.15.0" + "@typescript-eslint/visitor-keys": "npm:8.15.0" + checksum: 10c0/c27dfdcea4100cc2d6fa967f857067cbc93155b55e648f9f10887a1b9372bb76cf864f7c804f3fa48d7868d9461cdef10bcea3dab7637d5337e8aa8042dc08b9 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.2.0": - version: 7.2.0 - resolution: "@typescript-eslint/scope-manager@npm:7.2.0" +"@typescript-eslint/type-utils@npm:8.15.0": + version: 8.15.0 + resolution: "@typescript-eslint/type-utils@npm:8.15.0" dependencies: - "@typescript-eslint/types": "npm:7.2.0" - "@typescript-eslint/visitor-keys": "npm:7.2.0" - checksum: 10c0/4d088c127e6ba1a7de8567f70684779083be24b48746c3b4a86a0ec7062bca58693ee08482349ad6572a17ada8aa6f26b74d1c7139c8fcf7101fa09a572e0ea6 + "@typescript-eslint/typescript-estree": "npm:8.15.0" + "@typescript-eslint/utils": "npm:8.15.0" + debug: "npm:^4.3.4" + ts-api-utils: "npm:^1.3.0" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/20f09c79c83b38a962cf7eff10d47a2c01bcc0bab7bf6d762594221cd89023ef8c7aec26751c47b524f53f5c8d38bba55a282529b3df82d5f5ab4350496316f9 languageName: node linkType: hard -"@typescript-eslint/types@npm:7.2.0": - version: 7.2.0 - resolution: "@typescript-eslint/types@npm:7.2.0" - checksum: 10c0/135aae061720185855bea61ea6cfd33f4801d2de57f65e50079bbdb505100f844632aa4e4bdeec9e9e79d29aaddad949178d0e918e41867da6ab4b1390820e33 +"@typescript-eslint/types@npm:8.15.0": + version: 8.15.0 + resolution: "@typescript-eslint/types@npm:8.15.0" + checksum: 10c0/84abc6fd954aff13822a76ac49efdcb90a55c0025c20eee5d8cebcfb68faff33b79bbc711ea524e0209cecd90c5ee3a5f92babc7083c081d3a383a0710264a41 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.2.0": - version: 7.2.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.2.0" +"@typescript-eslint/typescript-estree@npm:8.15.0": + version: 8.15.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.15.0" dependencies: - "@typescript-eslint/types": "npm:7.2.0" - "@typescript-eslint/visitor-keys": "npm:7.2.0" + "@typescript-eslint/types": "npm:8.15.0" + "@typescript-eslint/visitor-keys": "npm:8.15.0" debug: "npm:^4.3.4" - globby: "npm:^11.1.0" + fast-glob: "npm:^3.3.2" is-glob: "npm:^4.0.3" - minimatch: "npm:9.0.3" - semver: "npm:^7.5.4" - ts-api-utils: "npm:^1.0.1" + minimatch: "npm:^9.0.4" + semver: "npm:^7.6.0" + ts-api-utils: "npm:^1.3.0" peerDependenciesMeta: typescript: optional: true - checksum: 10c0/2730bb17730e6f3ca4061f00688a70386a808f5d174fdeb757c3cfa92c455373f69080df33237c1a8970e818af0cea0ae5a083970ed8ba493f3b04458c6f9271 + checksum: 10c0/3af5c129532db3575349571bbf64d32aeccc4f4df924ac447f5d8f6af8b387148df51965eb2c9b99991951d3dadef4f2509d7ce69bf34a2885d013c040762412 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:7.2.0": - version: 7.2.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.2.0" +"@typescript-eslint/utils@npm:8.15.0": + version: 8.15.0 + resolution: "@typescript-eslint/utils@npm:8.15.0" dependencies: - "@typescript-eslint/types": "npm:7.2.0" - eslint-visitor-keys: "npm:^3.4.1" - checksum: 10c0/2d7467495b2b76f3edb1b3047e97076c2242e7eca6d50bbbdd88219f9ff754dbcb9334a0568fe0ceb4c562823980938bd278aa2ba53da6343e7d99a167924f24 + "@eslint-community/eslint-utils": "npm:^4.4.0" + "@typescript-eslint/scope-manager": "npm:8.15.0" + "@typescript-eslint/types": "npm:8.15.0" + "@typescript-eslint/typescript-estree": "npm:8.15.0" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: 10c0/65743f51845a1f6fd2d21f66ca56182ba33e966716bdca73d30b7a67c294e47889c322de7d7b90ab0818296cd33c628e5eeeb03cec7ef2f76c47de7a453eeda2 + languageName: node + linkType: hard + +"@typescript-eslint/visitor-keys@npm:8.15.0": + version: 8.15.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.15.0" + dependencies: + "@typescript-eslint/types": "npm:8.15.0" + eslint-visitor-keys: "npm:^4.2.0" + checksum: 10c0/02a954c3752c4328482a884eb1da06ca8fb72ae78ef28f1d854b18f3779406ed47263af22321cf3f65a637ec7584e5f483e34a263b5c8cec60ec85aebc263574 languageName: node linkType: hard@@ -7807,6 +8107,13 @@ codemirror: ">=6.0.0"
react: ">=16.8.0" react-dom: ">=16.8.0" checksum: 10c0/3bdd3bc442624f6f1c6b00b5cb447c9a57c2ccfce3b0813b8631a365b5b7408957eb1a6ac64813520658273ff18fb189a7097df0574905d672139d25f8c9259e + languageName: node + linkType: hard + +"@ungap/structured-clone@npm:^1.2.0": + version: 1.2.0 + resolution: "@ungap/structured-clone@npm:1.2.0" + checksum: 10c0/8209c937cb39119f44eb63cf90c0b73e7c754209a6411c707be08e50e29ee81356dca1a848a405c8bdeebfe2f5e4f831ad310ae1689eeef65e7445c090c6657d languageName: node linkType: hard@@ -7972,26 +8279,6 @@ checksum: 10c0/39bf746eb7a79aa69953f194943bbc43bebae98bd7cadd4d8bc8c0df470ca6bf9d2b789effaa180e900fab4e2691983c1f7d41571458bd2a26267f2f0c73705a
languageName: node linkType: hard -"@whatwg-node/events@npm:^0.0.3": - version: 0.0.3 - resolution: "@whatwg-node/events@npm:0.0.3" - checksum: 10c0/87ac0854f84650ce016ccd82a6c087eac1c6204eeb80cf358737ce7757a345e3a4ba19e9b1815b326eb1451d49878785aa9dc426631f4ea47dedbcfc51b56977 - languageName: node - linkType: hard - -"@whatwg-node/fetch@npm:^0.8.0": - version: 0.8.8 - resolution: "@whatwg-node/fetch@npm:0.8.8" - dependencies: - "@peculiar/webcrypto": "npm:^1.4.0" - "@whatwg-node/node-fetch": "npm:^0.3.6" - busboy: "npm:^1.6.0" - urlpattern-polyfill: "npm:^8.0.0" - web-streams-polyfill: "npm:^3.2.1" - checksum: 10c0/37d882bf85764aec7541cda1008099ab4d695971608946ec9b9e40326eedfd4c49507fbcc8765ebe3e9241f4dc9d1e970e0b3501a814d721c40c721d313c5d50 - languageName: node - linkType: hard - "@whatwg-node/fetch@npm:^0.9.0": version: 0.9.21 resolution: "@whatwg-node/fetch@npm:0.9.21"@@ -8002,16 +8289,13 @@ checksum: 10c0/c0727e32673fa0596aff9786995b308fc92c33290807c72333af2a5c7a7e38ca6e236ec641bb4caded25e30127bee4b9df2e15d47c064970c2f7df58b084ca8d
languageName: node linkType: hard -"@whatwg-node/node-fetch@npm:^0.3.6": - version: 0.3.6 - resolution: "@whatwg-node/node-fetch@npm:0.3.6" +"@whatwg-node/fetch@npm:^0.9.20": + version: 0.9.23 + resolution: "@whatwg-node/fetch@npm:0.9.23" dependencies: - "@whatwg-node/events": "npm:^0.0.3" - busboy: "npm:^1.6.0" - fast-querystring: "npm:^1.1.1" - fast-url-parser: "npm:^1.1.3" - tslib: "npm:^2.3.1" - checksum: 10c0/49e4fd5e682d1fa1229b2c13c06074c6a633eddbe61be162fd213ddb85d6d27d51554b3cced5f6b7f3be1722a64cca7f5ffe0722d08b3285fe2f289d8d5a045d + "@whatwg-node/node-fetch": "npm:^0.6.0" + urlpattern-polyfill: "npm:^10.0.0" + checksum: 10c0/f025ea59f026e2f1be34a33d6eba5fcfa69a3f2df6046198893cd7bc361f28bea10c0a79daa14e78034714940d0968c3c5f439d463f159c7703e94502bd0a279 languageName: node linkType: hard@@ -8024,6 +8308,18 @@ busboy: "npm:^1.6.0"
fast-querystring: "npm:^1.1.1" tslib: "npm:^2.6.3" checksum: 10c0/d4d6601dcc0e01ffede5b554ef160a50235732bd77a74cab98f7f7daf535459389f2e627ee17bf066a2d24741de60d58b5ad835778659b62239ae78d5b816881 + languageName: node + linkType: hard + +"@whatwg-node/node-fetch@npm:^0.6.0": + version: 0.6.0 + resolution: "@whatwg-node/node-fetch@npm:0.6.0" + dependencies: + "@kamilkisiela/fast-url-parser": "npm:^1.1.4" + busboy: "npm:^1.6.0" + fast-querystring: "npm:^1.1.1" + tslib: "npm:^2.6.3" + checksum: 10c0/3ec3405e581abd811823f7c5f7dcb2e4c291d01a7a714c34b6b368eefff8b72f92b4d749322433d754b76725c814b03714cc6e929083021568e1ebd8240a04a8 languageName: node linkType: hard@@ -8146,6 +8442,15 @@ checksum: 10c0/51fb26cd678f914e13287e886da2d7021f8c2bc0ccc95e03d3e0447ee278dd3b40b9c57dc222acd5881adcf26f3edc40901a4953403232129e3876793cd17386
languageName: node linkType: hard +"acorn@npm:^8.14.0, acorn@npm:^8.9.0": + version: 8.14.0 + resolution: "acorn@npm:8.14.0" + bin: + acorn: bin/acorn + checksum: 10c0/6d4ee461a7734b2f48836ee0fbb752903606e576cc100eb49340295129ca0b452f3ba91ddd4424a1d4406a98adfb2ebb6bd0ff4c49d7a0930c10e462719bbfd7 + languageName: node + linkType: hard + "addressparser@npm:1.0.1": version: 1.0.1 resolution: "addressparser@npm:1.0.1"@@ -8824,17 +9129,6 @@ checksum: 10c0/b577232fa6069cc52bb128e564002c62b2b1fe47f7137bdcd709c0b8495aa79cee0f8cc458a831b2d8675900eea0d05781b006be5e1aa4f0ae3577a73ec20324
languageName: node linkType: hard -"asn1js@npm:^3.0.1, asn1js@npm:^3.0.5": - version: 3.0.5 - resolution: "asn1js@npm:3.0.5" - dependencies: - pvtsutils: "npm:^1.3.2" - pvutils: "npm:^1.1.3" - tslib: "npm:^2.4.0" - checksum: 10c0/bb8eaf4040c8f49dd475566874986f5976b81bae65a6b5526e2208a13cdca323e69ce297bcd435fdda3eb6933defe888e71974d705b6fcb14f2734a907f8aed4 - languageName: node - linkType: hard - "assign-symbols@npm:^1.0.0": version: 1.0.0 resolution: "assign-symbols@npm:1.0.0"@@ -8936,14 +9230,14 @@ checksum: 10c0/732c171d48caaace5e784895c4dacb8ca6155e9d98045138ebe3952f78457dd05b92c57d05b41ce2a570aff87dbd0471e8398d2c0f6ebe79617b746c8f658998
languageName: node linkType: hard -"axios@npm:1.6.0": - version: 1.6.0 - resolution: "axios@npm:1.6.0" +"axios@npm:1.7.4": + version: 1.7.4 + resolution: "axios@npm:1.7.4" dependencies: - follow-redirects: "npm:^1.15.0" + follow-redirects: "npm:^1.15.6" form-data: "npm:^4.0.0" proxy-from-env: "npm:^1.1.0" - checksum: 10c0/2879e17b96cbca7e2096d231a44e2d0f03e657d79f8928ea38ec5fbaf5a5b7bf952d580cdb58a66ba328c26eb3528b89d5a32da57cc5cf89813786c044f7e9d6 + checksum: 10c0/5ea1a93140ca1d49db25ef8e1bd8cfc59da6f9220159a944168860ad15a2743ea21c5df2967795acb15cbe81362f5b157fdebbea39d53117ca27658bab9f7f17 languageName: node linkType: hard@@ -9726,7 +10020,7 @@ "caroster@workspace:.":
version: 0.0.0-use.local resolution: "caroster@workspace:." dependencies: - pm2: "npm:^5.4.2" + pm2: "npm:^5.4.3" languageName: unknown linkType: soft@@ -10132,7 +10426,7 @@ checksum: 10c0/2176952b3649293473999a95d7bebfc9dc96410f6cbd3d2595cf12fd401f63a4bf41a7adbfd3ab2ff09ed60cb9870c58c6acdd18b87767366fabfc163700f13b
languageName: node linkType: hard -"clsx@npm:^2.0.0, clsx@npm:^2.1.0, clsx@npm:^2.1.1": +"clsx@npm:^2.1.0, clsx@npm:^2.1.1": version: 2.1.1 resolution: "clsx@npm:2.1.1" checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839@@ -10530,6 +10824,13 @@ checksum: 10c0/c01ca3ef8d7b8187bae434434582288681273b5a9ed27521d4d7f9f7928fe0c920df0decd9f9d3bbd2d14ac432b8c8cf42b98b3bdd5bfe0e6edddeebebe8b61d
languageName: node linkType: hard +"cookie@npm:^0.7.0": + version: 0.7.2 + resolution: "cookie@npm:0.7.2" + checksum: 10c0/9596e8ccdbf1a3a88ae02cf5ee80c1c50959423e1022e4e60b91dd87c622af1da309253d8abdb258fb5e3eacb4f08e579dc58b4897b8087574eee0fd35dfa5d2 + languageName: node + linkType: hard + "cookies@npm:^0.9.1": version: 0.9.1 resolution: "cookies@npm:0.9.1"@@ -10625,7 +10926,7 @@ checksum: 10c0/b923ff6af581638128e5f074a5450ba12c0300b71302398ea38dbeabd33bbcaa0245ca9adbedfcf284a07da50f99ede5658c80bb3e39e2ce770a99d28a21ef03
languageName: node linkType: hard -"cosmiconfig@npm:^8.1.3, cosmiconfig@npm:^8.2.0": +"cosmiconfig@npm:^8.1.0, cosmiconfig@npm:^8.1.3, cosmiconfig@npm:^8.2.0": version: 8.3.6 resolution: "cosmiconfig@npm:8.3.6" dependencies:@@ -10642,23 +10943,6 @@ checksum: 10c0/0382a9ed13208f8bfc22ca2f62b364855207dffdb73dc26e150ade78c3093f1cf56172df2dd460c8caf2afa91c0ed4ec8a88c62f8f9cd1cf423d26506aa8797a
languageName: node linkType: hard -"cosmiconfig@npm:^9.0.0": - version: 9.0.0 - resolution: "cosmiconfig@npm:9.0.0" - dependencies: - env-paths: "npm:^2.2.1" - import-fresh: "npm:^3.3.0" - js-yaml: "npm:^4.1.0" - parse-json: "npm:^5.2.0" - peerDependencies: - typescript: ">=4.9.5" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/1c1703be4f02a250b1d6ca3267e408ce16abfe8364193891afc94c2d5c060b69611fdc8d97af74b7e6d5d1aac0ab2fb94d6b079573146bc2d756c2484ce5f0ee - languageName: node - linkType: hard - "crc@npm:^3.8.0": version: 3.8.0 resolution: "crc@npm:3.8.0"@@ -10752,7 +11036,7 @@ checksum: 10c0/2493ee47a801b46ede1c42ca6242b8d2059f7319b5baf23887bbaf46a6ea8e536d2e271d0990176c05092f67b32d084ffd8c93e7c1227eff4a06cceadb49af47
languageName: node linkType: hard -"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.1, cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3": +"cross-spawn@npm:^7.0.0, cross-spawn@npm:^7.0.1, cross-spawn@npm:^7.0.3": version: 7.0.3 resolution: "cross-spawn@npm:7.0.3" dependencies:@@ -10763,6 +11047,17 @@ checksum: 10c0/5738c312387081c98d69c98e105b6327b069197f864a60593245d64c8089c8a0a744e16349281210d56835bb9274130d825a78b2ad6853ca13cfbeffc0c31750
languageName: node linkType: hard +"cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.5": + version: 7.0.6 + resolution: "cross-spawn@npm:7.0.6" + dependencies: + path-key: "npm:^3.1.0" + shebang-command: "npm:^2.0.0" + which: "npm:^2.0.1" + checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1 + languageName: node + linkType: hard + "crypto-js@npm:^4.2.0": version: 4.2.0 resolution: "crypto-js@npm:4.2.0"@@ -11431,6 +11726,15 @@ checksum: 10c0/b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac
languageName: node linkType: hard +"doctrine@npm:^3.0.0": + version: 3.0.0 + resolution: "doctrine@npm:3.0.0" + dependencies: + esutils: "npm:^2.0.2" + checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 + languageName: node + linkType: hard + "dom-converter@npm:^0.2.0": version: 0.2.0 resolution: "dom-converter@npm:0.2.0"@@ -11738,7 +12042,7 @@ checksum: 10c0/dd96ed95f7e017b7fbbcdd39bd6dc3dea6638f747c00610b53f23ea461ac409af87670f313805d85854bfce04f96e17d83575f75b3b2920365d78678ccd2a405
languageName: node linkType: hard -"env-paths@npm:^2.2.0, env-paths@npm:^2.2.1": +"env-paths@npm:^2.2.0": version: 2.2.1 resolution: "env-paths@npm:2.2.1" checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4@@ -12243,13 +12547,14 @@ checksum: 10c0/e1450a1f75f67d35c061bf0d60888b15f62ab63aef9df1901cffc81cffbbb9e8b3de237c5502cf8613a017c1df3a3003881307c78835a1ab54d8c8d2206e01d3
languageName: node linkType: hard -"eslint-config-next@npm:^14.2.5": - version: 14.2.7 - resolution: "eslint-config-next@npm:14.2.7" +"eslint-config-next@npm:^14.2.18": + version: 14.2.18 + resolution: "eslint-config-next@npm:14.2.18" dependencies: - "@next/eslint-plugin-next": "npm:14.2.7" + "@next/eslint-plugin-next": "npm:14.2.18" "@rushstack/eslint-patch": "npm:^1.3.3" - "@typescript-eslint/parser": "npm:^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0" + "@typescript-eslint/eslint-plugin": "npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" + "@typescript-eslint/parser": "npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" eslint-import-resolver-node: "npm:^0.3.6" eslint-import-resolver-typescript: "npm:^3.5.2" eslint-plugin-import: "npm:^2.28.1"@@ -12262,7 +12567,7 @@ typescript: ">=3.3.1"
peerDependenciesMeta: typescript: optional: true - checksum: 10c0/dace8ca808ad2aeb0254fb8ca6c4705942fc0e5de16bb5b95b4d26a7a5c26910ca8513e708420d298f184ef8f245b158d46a1e92779ccb3b33b513951207d59d + checksum: 10c0/325f467e9d4686fbafd3ec3843fc32267f999eb9854d59a1170fe14ae710f40c36c3a8f6f32d3319b43e2aacd6cf8c849135e54b0298887237ac11b11635e889 languageName: node linkType: hard@@ -12425,13 +12730,23 @@ checksum: 10c0/d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a
languageName: node linkType: hard -"eslint-scope@npm:^8.0.2": - version: 8.0.2 - resolution: "eslint-scope@npm:8.0.2" +"eslint-scope@npm:^7.2.2": + version: 7.2.2 + resolution: "eslint-scope@npm:7.2.2" dependencies: esrecurse: "npm:^4.3.0" estraverse: "npm:^5.2.0" - checksum: 10c0/477f820647c8755229da913025b4567347fd1f0bf7cbdf3a256efff26a7e2e130433df052bd9e3d014025423dc00489bea47eb341002b15553673379c1a7dc36 + checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 + languageName: node + linkType: hard + +"eslint-scope@npm:^8.2.0": + version: 8.2.0 + resolution: "eslint-scope@npm:8.2.0" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^5.2.0" + checksum: 10c0/8d2d58e2136d548ac7e0099b1a90d9fab56f990d86eb518de1247a7066d38c908be2f3df477a79cf60d70b30ba18735d6c6e70e9914dca2ee515a729975d70d6 languageName: node linkType: hard@@ -12442,7 +12757,7 @@ checksum: 10c0/10c91fdbbe36810dd4308e57f9a8bc7177188b2a70247e54e3af1fa05ebc66414ae6fd4ce3c6c6821591f43a556e9037bc6b071122e099b5f8b7d2f76df553e3
languageName: node linkType: hard -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1": +"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": version: 3.4.3 resolution: "eslint-visitor-keys@npm:3.4.3" checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820@@ -12456,36 +12771,47 @@ checksum: 10c0/76619f42cf162705a1515a6868e6fc7567e185c7063a05621a8ac4c3b850d022661262c21d9f1fc1d144ecf0d5d64d70a3f43c15c3fc969a61ace0fb25698cf5
languageName: node linkType: hard -"eslint@npm:^9.9.0": - version: 9.9.1 - resolution: "eslint@npm:9.9.1" +"eslint-visitor-keys@npm:^4.2.0": + version: 4.2.0 + resolution: "eslint-visitor-keys@npm:4.2.0" + checksum: 10c0/2ed81c663b147ca6f578312919483eb040295bbab759e5a371953456c636c5b49a559883e2677112453728d66293c0a4c90ab11cab3428cf02a0236d2e738269 + languageName: node + linkType: hard + +"eslint@npm:^8.57.0": + version: 8.57.1 + resolution: "eslint@npm:8.57.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" - "@eslint-community/regexpp": "npm:^4.11.0" - "@eslint/config-array": "npm:^0.18.0" - "@eslint/eslintrc": "npm:^3.1.0" - "@eslint/js": "npm:9.9.1" + "@eslint-community/regexpp": "npm:^4.6.1" + "@eslint/eslintrc": "npm:^2.1.4" + "@eslint/js": "npm:8.57.1" + "@humanwhocodes/config-array": "npm:^0.13.0" "@humanwhocodes/module-importer": "npm:^1.0.1" - "@humanwhocodes/retry": "npm:^0.3.0" "@nodelib/fs.walk": "npm:^1.2.8" + "@ungap/structured-clone": "npm:^1.2.0" ajv: "npm:^6.12.4" chalk: "npm:^4.0.0" cross-spawn: "npm:^7.0.2" debug: "npm:^4.3.2" + doctrine: "npm:^3.0.0" escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^8.0.2" - eslint-visitor-keys: "npm:^4.0.0" - espree: "npm:^10.1.0" - esquery: "npm:^1.5.0" + eslint-scope: "npm:^7.2.2" + eslint-visitor-keys: "npm:^3.4.3" + espree: "npm:^9.6.1" + esquery: "npm:^1.4.2" esutils: "npm:^2.0.2" fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^8.0.0" + file-entry-cache: "npm:^6.0.1" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" + globals: "npm:^13.19.0" + graphemer: "npm:^1.4.0" ignore: "npm:^5.2.0" imurmurhash: "npm:^0.1.4" is-glob: "npm:^4.0.0" is-path-inside: "npm:^3.0.3" + js-yaml: "npm:^4.1.0" json-stable-stringify-without-jsonify: "npm:^1.0.1" levn: "npm:^0.4.1" lodash.merge: "npm:^4.6.2"@@ -12494,6 +12820,50 @@ natural-compare: "npm:^1.4.0"
optionator: "npm:^0.9.3" strip-ansi: "npm:^6.0.1" text-table: "npm:^0.2.0" + bin: + eslint: bin/eslint.js + checksum: 10c0/1fd31533086c1b72f86770a4d9d7058ee8b4643fd1cfd10c7aac1ecb8725698e88352a87805cf4b2ce890aa35947df4b4da9655fb7fdfa60dbb448a43f6ebcf1 + languageName: node + linkType: hard + +"eslint@npm:^9.15.0": + version: 9.15.0 + resolution: "eslint@npm:9.15.0" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.2.0" + "@eslint-community/regexpp": "npm:^4.12.1" + "@eslint/config-array": "npm:^0.19.0" + "@eslint/core": "npm:^0.9.0" + "@eslint/eslintrc": "npm:^3.2.0" + "@eslint/js": "npm:9.15.0" + "@eslint/plugin-kit": "npm:^0.2.3" + "@humanfs/node": "npm:^0.16.6" + "@humanwhocodes/module-importer": "npm:^1.0.1" + "@humanwhocodes/retry": "npm:^0.4.1" + "@types/estree": "npm:^1.0.6" + "@types/json-schema": "npm:^7.0.15" + ajv: "npm:^6.12.4" + chalk: "npm:^4.0.0" + cross-spawn: "npm:^7.0.5" + debug: "npm:^4.3.2" + escape-string-regexp: "npm:^4.0.0" + eslint-scope: "npm:^8.2.0" + eslint-visitor-keys: "npm:^4.2.0" + espree: "npm:^10.3.0" + esquery: "npm:^1.5.0" + esutils: "npm:^2.0.2" + fast-deep-equal: "npm:^3.1.3" + file-entry-cache: "npm:^8.0.0" + find-up: "npm:^5.0.0" + glob-parent: "npm:^6.0.2" + ignore: "npm:^5.2.0" + imurmurhash: "npm:^0.1.4" + is-glob: "npm:^4.0.0" + json-stable-stringify-without-jsonify: "npm:^1.0.1" + lodash.merge: "npm:^4.6.2" + minimatch: "npm:^3.1.2" + natural-compare: "npm:^1.4.0" + optionator: "npm:^0.9.3" peerDependencies: jiti: "*" peerDependenciesMeta:@@ -12501,7 +12871,7 @@ jiti:
optional: true bin: eslint: bin/eslint.js - checksum: 10c0/5e71efda7c0a14ee95436d5cdfed04ee61dfb1d89d7a32b50a424de2e680af82849628ea6581950c2e0726491f786a3cfd0032ce013c1c5093786e475cfdfb33 + checksum: 10c0/d0d7606f36bfcccb1c3703d0a24df32067b207a616f17efe5fb1765a91d13f085afffc4fc97ecde4ab9c9f4edd64d9b4ce750e13ff7937a25074b24bee15b20f languageName: node linkType: hard@@ -12512,7 +12882,7 @@ checksum: 10c0/8e60e8075506a7ce28681c30c8f54623fe18a251c364cd481d86719fc77f58aa055b293d80632d9686d5408aaf865ffa434897dc9fd9153c8b3f469fad23f094
languageName: node linkType: hard -"espree@npm:^10.0.1, espree@npm:^10.1.0": +"espree@npm:^10.0.1": version: 10.1.0 resolution: "espree@npm:10.1.0" dependencies:@@ -12523,6 +12893,28 @@ checksum: 10c0/52e6feaa77a31a6038f0c0e3fce93010a4625701925b0715cd54a2ae190b3275053a0717db698697b32653788ac04845e489d6773b508d6c2e8752f3c57470a0
languageName: node linkType: hard +"espree@npm:^10.3.0": + version: 10.3.0 + resolution: "espree@npm:10.3.0" + dependencies: + acorn: "npm:^8.14.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^4.2.0" + checksum: 10c0/272beeaca70d0a1a047d61baff64db04664a33d7cfb5d144f84bc8a5c6194c6c8ebe9cc594093ca53add88baa23e59b01e69e8a0160ab32eac570482e165c462 + languageName: node + linkType: hard + +"espree@npm:^9.6.0, espree@npm:^9.6.1": + version: 9.6.1 + resolution: "espree@npm:9.6.1" + dependencies: + acorn: "npm:^8.9.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^3.4.1" + checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 + languageName: node + linkType: hard + "esprima@npm:^4.0.0, esprima@npm:^4.0.1": version: 4.0.1 resolution: "esprima@npm:4.0.1"@@ -12533,7 +12925,7 @@ checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3
languageName: node linkType: hard -"esquery@npm:^1.5.0": +"esquery@npm:^1.4.2, esquery@npm:^1.5.0": version: 1.6.0 resolution: "esquery@npm:1.6.0" dependencies:@@ -12860,15 +13252,6 @@ checksum: 10c0/3cd46d6006083b14ca61ffe9a05b8eef75ef87e9574b6f68f2e17ecf4daa7aaadeff44e3f0f7a0ef4e0f7e7c20fc07beec49ff14dc72d0b500f00386592f2d10
languageName: node linkType: hard -"fast-url-parser@npm:^1.1.3": - version: 1.1.3 - resolution: "fast-url-parser@npm:1.1.3" - dependencies: - punycode: "npm:^1.3.2" - checksum: 10c0/d85c5c409cf0215417380f98a2d29c23a95004d93ff0d8bdf1af5f1a9d1fc608ac89ac6ffe863783d2c73efb3850dd35390feb1de3296f49877bfee0392eb5d3 - languageName: node - linkType: hard - "fastq@npm:^1.6.0": version: 1.17.1 resolution: "fastq@npm:1.17.1"@@ -12929,6 +13312,15 @@ resolution: "figures@npm:3.2.0"
dependencies: escape-string-regexp: "npm:^1.0.5" checksum: 10c0/9c421646ede432829a50bc4e55c7a4eb4bcb7cc07b5bab2f471ef1ab9a344595bbebb6c5c21470093fbb730cd81bbca119624c40473a125293f656f49cb47629 + languageName: node + linkType: hard + +"file-entry-cache@npm:^6.0.1": + version: 6.0.1 + resolution: "file-entry-cache@npm:6.0.1" + dependencies: + flat-cache: "npm:^3.0.4" + checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd languageName: node linkType: hard@@ -13057,6 +13449,17 @@ checksum: 10c0/4ded739606afa331d60e530cd94ea7948e3bacab8de1c084be3bbb5e37ecceec207eef1ba8fc88d14d1b975c771ac1efc1517d800027b4e05613c6c797211178
languageName: node linkType: hard +"flat-cache@npm:^3.0.4": + version: 3.2.0 + resolution: "flat-cache@npm:3.2.0" + dependencies: + flatted: "npm:^3.2.9" + keyv: "npm:^4.5.3" + rimraf: "npm:^3.0.2" + checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 + languageName: node + linkType: hard + "flat-cache@npm:^4.0.0": version: 4.0.1 resolution: "flat-cache@npm:4.0.1"@@ -13081,7 +13484,7 @@ checksum: 10c0/8ad62aa2d4f0b2a76d09dba36cfec61c540c13a0fd72e5d94164e430f987a7ce6a743112bbeb14877c810ef500d1f73d7f56e76d029d2e3413f20d79e3460a9a
languageName: node linkType: hard -"follow-redirects@npm:^1.14.0, follow-redirects@npm:^1.15.0, follow-redirects@npm:^1.15.6": +"follow-redirects@npm:^1.14.0, follow-redirects@npm:^1.15.6": version: 1.15.6 resolution: "follow-redirects@npm:1.15.6" peerDependenciesMeta:@@ -13732,6 +14135,15 @@ "globals@npm:^11.1.0":
version: 11.12.0 resolution: "globals@npm:11.12.0" checksum: 10c0/758f9f258e7b19226bd8d4af5d3b0dcf7038780fb23d82e6f98932c44e239f884847f1766e8fa9cc5635ccb3204f7fa7314d4408dd4002a5e8ea827b4018f0a1 + languageName: node + linkType: hard + +"globals@npm:^13.19.0": + version: 13.24.0 + resolution: "globals@npm:13.24.0" + dependencies: + type-fest: "npm:^0.20.2" + checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd languageName: node linkType: hard@@ -13768,7 +14180,7 @@ checksum: 10c0/9c610ad47117b9dfbc5b0c6c2408c3b72f89c1b9f91ee14c4dc794794e35768ee0920e2a403b688cfa749f48617c6ba3f3a52df07677ed73d602d4349b68c810
languageName: node linkType: hard -"globby@npm:^11.0.3, globby@npm:^11.0.4, globby@npm:^11.1.0": +"globby@npm:^11.0.3, globby@npm:^11.0.4": version: 11.1.0 resolution: "globby@npm:11.1.0" dependencies:@@ -13892,9 +14304,16 @@ checksum: 10c0/368a30346a79722c3d5f880af07b947d522722e6c2b7e9e2ff7f49dfa52fdc08e8e2ffdbcb25b8fee2ac0c58c242f89b018d9e4613067a1a8b52f80c0d2226bc
languageName: node linkType: hard -"graphql-config@npm:^5.0.2": - version: 5.1.2 - resolution: "graphql-config@npm:5.1.2" +"graphemer@npm:^1.4.0": + version: 1.4.0 + resolution: "graphemer@npm:1.4.0" + checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31 + languageName: node + linkType: hard + +"graphql-config@npm:^5.1.1": + version: 5.1.3 + resolution: "graphql-config@npm:5.1.3" dependencies: "@graphql-tools/graphql-file-loader": "npm:^8.0.0" "@graphql-tools/json-file-loader": "npm:^8.0.0"@@ -13902,8 +14321,8 @@ "@graphql-tools/load": "npm:^8.0.0"
"@graphql-tools/merge": "npm:^9.0.0" "@graphql-tools/url-loader": "npm:^8.0.0" "@graphql-tools/utils": "npm:^10.0.0" - cosmiconfig: "npm:^9.0.0" - jiti: "npm:^1.18.2" + cosmiconfig: "npm:^8.1.0" + jiti: "npm:^2.0.0" minimatch: "npm:^9.0.5" string-env-interpolation: "npm:^1.0.1" tslib: "npm:^2.4.0"@@ -13913,7 +14332,7 @@ graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta: cosmiconfig-toml-loader: optional: true - checksum: 10c0/9f61bba544d7de757e4572445bdc55bd0d1be01bf3def06833834a7ae070cb8fc3b83f2ab7f47f4fd9f4855f18a2f9528124e0a4c6630c72e1ff012a2cc85154 + checksum: 10c0/e1a1a665c35a6c01c7922f532aad098c2bea67354e33fbf78d631079fd51fd18fa32e0571dc098c50d22d554c43085afec8b634b29f788f140d17d2bde12c9a6 languageName: node linkType: hard@@ -14494,12 +14913,12 @@ checksum: 10c0/5760843ade112821e4df62dffcdab769a09550bbe26264bb03babd60a122b4a1520a7ee95de228d3b932d2ac4220fc7669936026c10a729292c98cacdee8c49b
languageName: node linkType: hard -"i18next@npm:^23.14.0": - version: 23.14.0 - resolution: "i18next@npm:23.14.0" +"i18next@npm:^23.16.5": + version: 23.16.5 + resolution: "i18next@npm:23.16.5" dependencies: "@babel/runtime": "npm:^7.23.2" - checksum: 10c0/c26638a816e6213e515c158b17894ca3c54693911e1dc637cd279e11d53f8ded2494c3dcc6e2e94c639987ef63718193a1e2b4f3d5873fbcf89f266582140cd5 + checksum: 10c0/4f926c09dc1087041084dbbfb8307bf2fdba1981069dece1c563577ca8a38a23ebfadf4d1c50c4091b640a8c8bf81d9cd008bd3e587bd452a6b9c728d5065346 languageName: node linkType: hard@@ -14574,7 +14993,7 @@ checksum: 10c0/690372b433887796fa3badd25babab7daf60a1882259dcc130ec78eea79745c2416322e10d1a96b367071204471c532647d20b11cd7ab70bd9b49879e461f956
languageName: node linkType: hard -"ignore@npm:^5.0.4, ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.2.4": +"ignore@npm:^5.0.4, ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.2.4, ignore@npm:^5.3.1": version: 5.3.2 resolution: "ignore@npm:5.3.2" checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337@@ -16146,7 +16565,7 @@ checksum: 10c0/f40eb8171cf147c617cc6ada49d062fbb03b4da666cb8d39cdbfb739a7d75eea4c3ca150fb072d0d273dce0c753db4d0467d54906ad0293f59c54f9db4a09d8b
languageName: node linkType: hard -"jiti@npm:^1.17.1, jiti@npm:^1.18.2": +"jiti@npm:^1.17.1": version: 1.21.6 resolution: "jiti@npm:1.21.6" bin:@@ -16155,6 +16574,15 @@ checksum: 10c0/05b9ed58cd30d0c3ccd3c98209339e74f50abd9a17e716f65db46b6a35812103f6bde6e134be7124d01745586bca8cc5dae1d0d952267c3ebe55171949c32e56
languageName: node linkType: hard +"jiti@npm:^2.0.0": + version: 2.4.0 + resolution: "jiti@npm:2.4.0" + bin: + jiti: lib/jiti-cli.mjs + checksum: 10c0/f97365a83169e0544b0a6e7f415f1ee69ca9c0bdd55e336035490b4b7a6ff99b63b9df89c70babfc49e924247dfbdc730f9eb0c5ed4771d3db989ac70e49bf18 + languageName: node + linkType: hard + "jju@npm:~1.4.0": version: 1.4.0 resolution: "jju@npm:1.4.0"@@ -16255,6 +16683,15 @@ checksum: 10c0/dbf59312e0ebf2b4405ef413ec2b25abb5f8f4d9bc5fb8d9f90381622ebca5f2af6a6aa9a8578f65903f9e33990a6dc798edd0ce5586894bf0e9e31803a1de88
languageName: node linkType: hard +"jsesc@npm:^3.0.2": + version: 3.0.2 + resolution: "jsesc@npm:3.0.2" + bin: + jsesc: bin/jsesc + checksum: 10c0/ef22148f9e793180b14d8a145ee6f9f60f301abf443288117b4b6c53d0ecd58354898dc506ccbb553a5f7827965cd38bc5fb726575aae93c5e8915e2de8290e1 + languageName: node + linkType: hard + "jsesc@npm:~0.5.0": version: 0.5.0 resolution: "jsesc@npm:0.5.0"@@ -16572,7 +17009,7 @@ checksum: 10c0/2aceec1a1e642a0caf938044056ed67b1909cfe67a93a59b32aae2863e0f35a1a53782ecc8f9cd0e3bdb60863fa0f401ccbd257cd7dfae61915f78445139edea
languageName: node linkType: hard -"keyv@npm:^4.0.0, keyv@npm:^4.5.4": +"keyv@npm:^4.0.0, keyv@npm:^4.5.3, keyv@npm:^4.5.4": version: 4.5.4 resolution: "keyv@npm:4.5.4" dependencies:@@ -16969,20 +17406,20 @@ checksum: 10c0/468cb4954f85cdfc16e169db89a42d65287e3f121a9448b29c3c00d64c6f5a8f4367bea3978ba9109a0e3a10b19d50632b983639f91b9be9f20d1f63a5ff5bc1
languageName: node linkType: hard -"linkify-react@npm:^4.1.3": - version: 4.1.3 - resolution: "linkify-react@npm:4.1.3" +"linkify-react@npm:^4.1.4": + version: 4.1.4 + resolution: "linkify-react@npm:4.1.4" peerDependencies: linkifyjs: ^4.0.0 react: ">= 15.0.0" - checksum: 10c0/c8c0e96301c3fbe5df19110dd778f4f0004f7c2f127fecb192ba9d4cf3e581d59f7d99ab0311c72a99cf039f5b34421e6ce71f2fcdd90f51655d7736fed4b370 + checksum: 10c0/820325ed9400121393e1d2f657cfddb5553a5e7ed8d00b967c68d3102e06153ab3e3defcda4b65b96120b13f1f91a34dc91ae5d956275e27d715105a43c882d5 languageName: node linkType: hard -"linkifyjs@npm:^4.1.3": - version: 4.1.3 - resolution: "linkifyjs@npm:4.1.3" - checksum: 10c0/9fb71da06ee710b5587c8b61ff9a0e45303d448f61fab135e44652cff95c09c1abe276158a72384cff6f35a2371d1cec33dfaa7e5280b71dbb142b43d210c75a +"linkifyjs@npm:^4.1.4": + version: 4.1.4 + resolution: "linkifyjs@npm:4.1.4" + checksum: 10c0/ae8dcd9bd35520d6be539039514a7cc19770f5998cff1303e1dbd22f98d6ba0a59f88719d982d5e1407c31cbe59059ac331b63857fb01e7594ed1d2aaf956636 languageName: node linkType: hard@@ -17741,7 +18178,7 @@ checksum: 10c0/e6c29a81fe83e1877ad51348306be2e8aeca18c88fdee7a99df44322314279e15799e41d7cb274e4e8bb0b451a3bc622d6182e157dfa1717d6cda75e9cd8cd5d
languageName: node linkType: hard -"minimatch@npm:^3.0.2, minimatch@npm:^3.0.3, minimatch@npm:^3.0.4, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": +"minimatch@npm:^3.0.2, minimatch@npm:^3.0.3, minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies:@@ -17856,13 +18293,6 @@ resolution: "minipass@npm:3.3.6"
dependencies: yallist: "npm:^4.0.0" checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c - languageName: node - linkType: hard - -"minipass@npm:^4.0.0": - version: 4.2.8 - resolution: "minipass@npm:4.2.8" - checksum: 10c0/4ea76b030d97079f4429d6e8a8affd90baf1b6a1898977c8ccce4701c5a2ba2792e033abc6709373f25c2c4d4d95440d9d5e9464b46b7b76ca44d2ce26d939ce languageName: node linkType: hard@@ -18089,13 +18519,13 @@ checksum: 10c0/cafd28388e698e1138ace947929f842944d0f1c0b87d3fa2601a61b38dc89397d33c0ce2c8e7b99e968584b91d15f6810b91bef3f3826adf71b1833b61d4bf4f
languageName: node linkType: hard -"next-auth@npm:4.24.7": - version: 4.24.7 - resolution: "next-auth@npm:4.24.7" +"next-auth@npm:4.24.10": + version: 4.24.10 + resolution: "next-auth@npm:4.24.10" dependencies: "@babel/runtime": "npm:^7.20.13" "@panva/hkdf": "npm:^1.0.2" - cookie: "npm:^0.5.0" + cookie: "npm:^0.7.0" jose: "npm:^4.15.5" oauth: "npm:^0.9.15" openid-client: "npm:^5.4.0"@@ -18103,14 +18533,17 @@ preact: "npm:^10.6.3"
preact-render-to-string: "npm:^5.1.19" uuid: "npm:^8.3.2" peerDependencies: - next: ^12.2.5 || ^13 || ^14 + "@auth/core": 0.34.2 + next: ^12.2.5 || ^13 || ^14 || ^15 nodemailer: ^6.6.5 react: ^17.0.2 || ^18 react-dom: ^17.0.2 || ^18 peerDependenciesMeta: + "@auth/core": + optional: true nodemailer: optional: true - checksum: 10c0/40c5f51e02141615069d422431a4906c38f6050b29f654ecc99a92fd3c974958535eb7c5f7bbc3dfd2e5996825d7c4f20d8ca68f372e2f9aad2131701cb95b7d + checksum: 10c0/055c953ec4b98389b61e4026d07d6c27ff3942bde5e0ac15b5e0b32f1d58097fb58a32f114624fd7606ee9e1aaec63f335305a472609e78e3fba336eb4ac18ad languageName: node linkType: hard@@ -18148,20 +18581,20 @@ checksum: 10c0/efe34fc9eb5a422e6c31cdf64019c130a10f5f6d689ff7402ada98571724ba7ebab67550d3b169c40baade38c20229ec762e6d5f207eb064195b158cacb73b60
languageName: node linkType: hard -"next@npm:^14.2.5": - version: 14.2.7 - resolution: "next@npm:14.2.7" +"next@npm:^14.2.18": + version: 14.2.18 + resolution: "next@npm:14.2.18" dependencies: - "@next/env": "npm:14.2.7" - "@next/swc-darwin-arm64": "npm:14.2.7" - "@next/swc-darwin-x64": "npm:14.2.7" - "@next/swc-linux-arm64-gnu": "npm:14.2.7" - "@next/swc-linux-arm64-musl": "npm:14.2.7" - "@next/swc-linux-x64-gnu": "npm:14.2.7" - "@next/swc-linux-x64-musl": "npm:14.2.7" - "@next/swc-win32-arm64-msvc": "npm:14.2.7" - "@next/swc-win32-ia32-msvc": "npm:14.2.7" - "@next/swc-win32-x64-msvc": "npm:14.2.7" + "@next/env": "npm:14.2.18" + "@next/swc-darwin-arm64": "npm:14.2.18" + "@next/swc-darwin-x64": "npm:14.2.18" + "@next/swc-linux-arm64-gnu": "npm:14.2.18" + "@next/swc-linux-arm64-musl": "npm:14.2.18" + "@next/swc-linux-x64-gnu": "npm:14.2.18" + "@next/swc-linux-x64-musl": "npm:14.2.18" + "@next/swc-win32-arm64-msvc": "npm:14.2.18" + "@next/swc-win32-ia32-msvc": "npm:14.2.18" + "@next/swc-win32-x64-msvc": "npm:14.2.18" "@swc/helpers": "npm:0.5.5" busboy: "npm:1.6.0" caniuse-lite: "npm:^1.0.30001579"@@ -18202,7 +18635,7 @@ sass:
optional: true bin: next: dist/bin/next - checksum: 10c0/661ff5196f671d68ece76f3003d049848163cb21a946fe71673225e56f82726f647a1869085f010869a778e56dd601b9065221031823562aeb92026677f8a5fd + checksum: 10c0/9aa1cf6a3238735a80fae32c217b0312dcb46c12ab9da19855c1344d7256ca797b286b78902c4d6488e7eb806e53c5bb21521cec38f793fb74f17513e2382838 languageName: node linkType: hard@@ -19369,10 +19802,10 @@ checksum: 10c0/e5a71a2da143b8dc17143a9db7737679b210643771aa678d3bc60c7bc70da11bbb8e2d531be91c8c4eddd6ac6046307811e793f5850b9ba595a11785c948a417
languageName: node linkType: hard -"pg-connection-string@npm:^2.6.4": - version: 2.6.4 - resolution: "pg-connection-string@npm:2.6.4" - checksum: 10c0/0d0b617df0fc6507bf6a94bdcd56c7a305788a1402d69bff9773350947c8f525d6d8136128065370749a3325e99658ae40fbdcce620fb8e60126181f0591a6a6 +"pg-connection-string@npm:^2.7.0": + version: 2.7.0 + resolution: "pg-connection-string@npm:2.7.0" + checksum: 10c0/50a1496a1c858f9495d78a2c7a66d93ef3602e718aff2953bb5738f3ea616d7f727f32fc20513c9bed127650cd14c1ddc7b458396f4000e689d4b64c65c5c51e languageName: node linkType: hard@@ -19383,19 +19816,19 @@ checksum: 10c0/be6a02d851fc2a4ae3e9de81710d861de3ba35ac927268973eb3cb618873a05b9424656df464dd43bd7dc3fc5295c3f5b3c8349494f87c7af50ec59ef14e0b98
languageName: node linkType: hard -"pg-pool@npm:^3.6.2": - version: 3.6.2 - resolution: "pg-pool@npm:3.6.2" +"pg-pool@npm:^3.7.0": + version: 3.7.0 + resolution: "pg-pool@npm:3.7.0" peerDependencies: pg: ">=8.0" - checksum: 10c0/14c524549490954b5e48457a4b808df8f619f6deeb3b395b0cd184a8f4ed65a9273fe0697ba0341a41d6745af197f1437eb1cf51fff0cbbf5b0fb3852ebe5392 + checksum: 10c0/9128673cf941f288c0cb1a74ca959a9b4f6075ef73b2cc7dece5d4db3dd7043784869e7c12bce2e69ca0df22132a419cc45c2050b4373632856fe8bae9eb94b5 languageName: node linkType: hard -"pg-protocol@npm:^1.6.1": - version: 1.6.1 - resolution: "pg-protocol@npm:1.6.1" - checksum: 10c0/7eadef4010ac0a3925c460be7332ca4098a5c6d5181725a62193fcfa800000ae6632d98d814f3989b42cf5fdc3b45e34c714a1959d29174e81e30730e140ae5f +"pg-protocol@npm:^1.7.0": + version: 1.7.0 + resolution: "pg-protocol@npm:1.7.0" + checksum: 10c0/c4af854d9b843c808231c0040fed89f2b9101006157df8da2bb2f62a7dde702de748d852228dc22df41cc7ffddfb526af3bcb34b278b581e9f76a060789186c1 languageName: node linkType: hard@@ -19412,14 +19845,14 @@ checksum: 10c0/ab3f8069a323f601cd2d2279ca8c425447dab3f9b61d933b0601d7ffc00d6200df25e26a4290b2b0783b59278198f7dd2ed03e94c4875797919605116a577c65
languageName: node linkType: hard -"pg@npm:8.12.0": - version: 8.12.0 - resolution: "pg@npm:8.12.0" +"pg@npm:8.13.1": + version: 8.13.1 + resolution: "pg@npm:8.13.1" dependencies: pg-cloudflare: "npm:^1.1.1" - pg-connection-string: "npm:^2.6.4" - pg-pool: "npm:^3.6.2" - pg-protocol: "npm:^1.6.1" + pg-connection-string: "npm:^2.7.0" + pg-pool: "npm:^3.7.0" + pg-protocol: "npm:^1.7.0" pg-types: "npm:^2.1.0" pgpass: "npm:1.x" peerDependencies:@@ -19430,7 +19863,7 @@ optional: true
peerDependenciesMeta: pg-native: optional: true - checksum: 10c0/973e49b5e7327c42fc62806efa8c824159ab7a0b676cefe6eeb51a59b6e226587911ec27697f36c18d69e58a7f4f0b76d0829364087194d13ed431ab7c9c417a + checksum: 10c0/c13bc661cbdb115337bc8519254836faf4bd79106dfd7ed588c8ece8c8b2dd3b7376bfec9a9a2f7646fa095b0b310cec77a83c3ba2ea4872331446eb93fd9055 languageName: node linkType: hard@@ -19450,6 +19883,13 @@ checksum: 10c0/c63cdad2bf812ef0d66c8db29583802355d4ca67b9285d846f390cc15c2f6ccb94e8cb7eb6a6e97fc5990a6d3ad4ae42d86c84d3146e667c739a4234ed50d400
languageName: node linkType: hard +"picocolors@npm:^1.1.1": + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 + 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.1": version: 2.3.1 resolution: "picomatch@npm:2.3.1"@@ -19608,9 +20048,9 @@ checksum: 10c0/546601a933f696417074bfbfb1f2976556f28393bf5f5003ea439d8af2507b729be2b818ac8cc607a89087ab12b44457c59d768b4bd6e36a34876853dbc3040d
languageName: node linkType: hard -"pm2@npm:^5.4.2": - version: 5.4.2 - resolution: "pm2@npm:5.4.2" +"pm2@npm:^5.4.3": + version: 5.4.3 + resolution: "pm2@npm:5.4.3" dependencies: "@pm2/agent": "npm:~2.0.0" "@pm2/io": "npm:~6.0.1"@@ -19650,7 +20090,7 @@ pm2: bin/pm2
pm2-dev: bin/pm2-dev pm2-docker: bin/pm2-docker pm2-runtime: bin/pm2-runtime - checksum: 10c0/b0c9a050d9dfe3a3d476e4584c67fd85a4903a25bd87b421a988bbdbd7a308e0ae53e66d0c1d1493a58ea70f17ec38c3cfce043f07b84eac898de1b56327a206 + checksum: 10c0/9ee14bfb1636413e8a4baf5dff39f7cab33c83274051ffc5c326eecd083bebcbb4e2229409bd036b3189750a4024ebdc2ad74c1f52c34a5fbdad63e387eca783 languageName: node linkType: hard@@ -19758,6 +20198,17 @@ checksum: 10c0/c1828fc59e7ec1a3bf52b3a42f615dba53c67960ed82a81df6441b485fe43c20aba7f4e7c55425762fd99c594ecabbaaba8cf5b30fd79dfec5b52a9f63a2d690
languageName: node linkType: hard +"postcss@npm:^8.4.35": + version: 8.4.49 + resolution: "postcss@npm:8.4.49" + dependencies: + nanoid: "npm:^3.3.7" + picocolors: "npm:^1.1.1" + source-map-js: "npm:^1.2.1" + checksum: 10c0/f1b3f17aaf36d136f59ec373459f18129908235e65dbdc3aee5eef8eba0756106f52de5ec4682e29a2eab53eb25170e7e871b3e4b52a8f1de3d344a514306be3 + languageName: node + linkType: hard + "postgres-array@npm:~2.0.0": version: 2.0.0 resolution: "postgres-array@npm:2.0.0"@@ -20042,13 +20493,6 @@ checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9
languageName: node linkType: hard -"punycode@npm:^1.3.2": - version: 1.4.1 - resolution: "punycode@npm:1.4.1" - checksum: 10c0/354b743320518aef36f77013be6e15da4db24c2b4f62c5f1eb0529a6ed02fbaf1cb52925785f6ab85a962f2b590d9cd5ad730b70da72b5f180e2556b8bd3ca08 - languageName: node - linkType: hard - "pure-rand@npm:^6.0.0": version: 6.1.0 resolution: "pure-rand@npm:6.1.0"@@ -20069,22 +20513,6 @@ checksum: 10c0/2808a34779d1a7b3009a5114e97e1947d98f709ad88c380dfa28f4090456054e1f35803e0aabd95184b620d4345d0b7fcc01d233ccdccd8a0b8ff1436b7af5a9
languageName: node linkType: hard -"pvtsutils@npm:^1.3.2, pvtsutils@npm:^1.3.5": - version: 1.3.5 - resolution: "pvtsutils@npm:1.3.5" - dependencies: - tslib: "npm:^2.6.1" - checksum: 10c0/d425aed316907e0b447a459bfb97c55d22270c3cfdba5a07ec90da0737b0e40f4f1771a444636f85bb6a453de90ff8c6b5f4f6ddba7597977166af49974b4534 - languageName: node - linkType: hard - -"pvutils@npm:^1.1.3": - version: 1.1.3 - resolution: "pvutils@npm:1.1.3" - checksum: 10c0/23489e6b3c76b6afb6964a20f891d6bef092939f401c78bba186b2bfcdc7a13904a0af0a78f7933346510f8c1228d5ab02d3c80e968fd84d3c76ff98d8ec9aac - languageName: node - linkType: hard - "qs@npm:6.11.1": version: 6.11.1 resolution: "qs@npm:6.11.1"@@ -20251,11 +20679,11 @@ checksum: 10c0/1d2831d9c3b4f5c91f020076aeb6502437a4788077d0c438421e466eb9633d5dc2aacedf7b779a970b807d61cf87793c5ff76ee3190a185d71c90b5cfb367e96
languageName: node linkType: hard -"react-i18next@npm:^15.0.1": - version: 15.0.1 - resolution: "react-i18next@npm:15.0.1" +"react-i18next@npm:^15.1.1": + version: 15.1.1 + resolution: "react-i18next@npm:15.1.1" dependencies: - "@babel/runtime": "npm:^7.24.8" + "@babel/runtime": "npm:^7.25.0" html-parse-stringify: "npm:^3.0.1" peerDependencies: i18next: ">= 23.2.3"@@ -20265,7 +20693,7 @@ react-dom:
optional: true react-native: optional: true - checksum: 10c0/74ed8903cb0dbc4d05f8eef176eba2d60ffad65c48bf6695e8294d70dd035563ebdb52b012319ef2835010fe4ccfc95a3e431d5b22d2b0a264141299aa6beb30 + checksum: 10c0/c1e8af21422cdaa1a493b1d73502a496aab84c3318de1137bb56b1f2f37eae4ba5856cf079b0a0abe9f2a18e0457c986ad2e43e70875f7cd43d0efa2f70897a5 languageName: node linkType: hard@@ -21493,7 +21921,7 @@ checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d
languageName: node linkType: hard -"semver@npm:^7.2, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.3": +"semver@npm:^7.2, semver@npm:^7.3.5, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3": version: 7.6.3 resolution: "semver@npm:7.6.3" bin:@@ -21995,6 +22423,13 @@ checksum: 10c0/7e5f896ac10a3a50fe2898e5009c58ff0dc102dcb056ed27a354623a0ece8954d4b2649e1a1b2b52ef2e161d26f8859c7710350930751640e71e374fe2d321a4
languageName: node linkType: hard +"source-map-js@npm:^1.2.1": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf + languageName: node + linkType: hard + "source-map-resolve@npm:^0.5.0": version: 0.5.3 resolution: "source-map-resolve@npm:0.5.3"@@ -22596,7 +23031,7 @@ checksum: 10c0/ad4d870b3642b0e42ecc7be0e106dd14b7af11985e34fee8de34e5e38c3214bfc96fa7055acea86d75a3a59ddea3f6a8c6641001a66494d7df72d09685e3fadb
languageName: node linkType: hard -"styled-components@npm:^5.3.11": +"styled-components@npm:^5.2.1": version: 5.3.11 resolution: "styled-components@npm:5.3.11" dependencies:@@ -22787,21 +23222,7 @@ checksum: 10c0/a09199d21f8714bd729993ac49b6c8efcb808b544b89f23378ad6ffff6d1cb540878614ba9d4cfec11a64ef39e1a6f009a5398371491eb1fda606ffc7f70f718
languageName: node linkType: hard -"tar@npm:6.1.13": - version: 6.1.13 - resolution: "tar@npm:6.1.13" - dependencies: - chownr: "npm:^2.0.0" - fs-minipass: "npm:^2.0.0" - minipass: "npm:^4.0.0" - minizlib: "npm:^2.1.1" - mkdirp: "npm:^1.0.3" - yallist: "npm:^4.0.0" - checksum: 10c0/eee5f264f3f3c27cd8d4934f80c568470f92811c416144ab671bb36b45a8ed55fbfbbd31f0146f3eddaca91fd564c9a7ec4d2086940968b836f4a2c54146c060 - languageName: node - linkType: hard - -"tar@npm:^6.0.2, tar@npm:^6.1.11, tar@npm:^6.1.2, tar@npm:^6.2.1": +"tar@npm:6.2.1, tar@npm:^6.0.2, tar@npm:^6.1.11, tar@npm:^6.1.2, tar@npm:^6.2.1": version: 6.2.1 resolution: "tar@npm:6.2.1" dependencies:@@ -23125,12 +23546,12 @@ checksum: 10c0/4bf1db71e14fe3ff1c3adbe3c302f1fdb553b74d7591a37323a7badb32dc8e9c290738996cbb64f8b10dc5a3833645b5d8c26221aaaaa12e50d1251c9aba2fea
languageName: node linkType: hard -"ts-api-utils@npm:^1.0.1": - version: 1.3.0 - resolution: "ts-api-utils@npm:1.3.0" +"ts-api-utils@npm:^1.3.0": + version: 1.4.0 + resolution: "ts-api-utils@npm:1.4.0" peerDependencies: typescript: ">=4.2.0" - checksum: 10c0/f54a0ba9ed56ce66baea90a3fa087a484002e807f28a8ccb2d070c75e76bde64bd0f6dce98b3802834156306050871b67eec325cb4e918015a360a3f0868c77c + checksum: 10c0/1b2bfa50ea52771d564bb143bb69010d25cda03ed573095fbac9b86f717012426443af6647e00e3db70fca60360482a30c1be7cf73c3521c321f6bf5e3594ea0 languageName: node linkType: hard@@ -23214,7 +23635,7 @@ checksum: 10c0/69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2
languageName: node linkType: hard -"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0, tslib@npm:^2.6.1, tslib@npm:^2.6.2, tslib@npm:^2.6.3": +"tslib@npm:^2.0.0, tslib@npm:^2.0.1, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0, tslib@npm:^2.6.3": version: 2.7.0 resolution: "tslib@npm:2.7.0" checksum: 10c0/469e1d5bf1af585742128827000711efa61010b699cb040ab1800bcd3ccdd37f63ec30642c9e07c4439c1db6e46345582614275daca3e0f4abae29b0083f04a6@@ -23406,13 +23827,13 @@ checksum: 10c0/91ae3e6193d0ddb8656d4c418a033f0f75dec5e077ebbc2bd6d76439b93f35683936ee1bdc0e9cf94ec76863aa49f27159b5788219b50e1cd0cd6d110aa34b07
languageName: node linkType: hard -"typescript@npm:^5.5.4": - version: 5.5.4 - resolution: "typescript@npm:5.5.4" +"typescript@npm:^5.6.3": + version: 5.6.3 + resolution: "typescript@npm:5.6.3" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10c0/422be60f89e661eab29ac488c974b6cc0a660fb2228003b297c3d10c32c90f3bcffc1009b43876a082515a3c376b1eefcce823d6e78982e6878408b9a923199c + checksum: 10c0/44f61d3fb15c35359bc60399cb8127c30bae554cd555b8e2b46d68fa79d680354b83320ad419ff1b81a0bdf324197b29affe6cc28988cd6a74d4ac60c94f9799 languageName: node linkType: hard@@ -23426,13 +23847,13 @@ checksum: 10c0/062c1cee1990e6b9419ce8a55162b8dc917eb87f807e4de0327dbc1c2fa4e5f61bc0dd4e034d38ff541d1ed0479b53bcee8e4de3a4075c51a1724eb6216cb6f5
languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^5.5.4#optional!builtin<compat/typescript>": - version: 5.5.4 - resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>::version=5.5.4&hash=379a07" +"typescript@patch:typescript@npm%3A^5.6.3#optional!builtin<compat/typescript>": + version: 5.6.3 + resolution: "typescript@patch:typescript@npm%3A5.6.3#optional!builtin<compat/typescript>::version=5.6.3&hash=8c6c40" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10c0/73409d7b9196a5a1217b3aaad929bf76294d3ce7d6e9766dd880ece296ee91cf7d7db6b16c6c6c630ee5096eccde726c0ef17c7dfa52b01a243e57ae1f09ef07 + checksum: 10c0/7c9d2e07c81226d60435939618c91ec2ff0b75fbfa106eec3430f0fcf93a584bc6c73176676f532d78c3594fe28a54b36eb40b3d75593071a7ec91301533ace7 languageName: node linkType: hard@@ -23499,7 +23920,7 @@ checksum: 10c0/96c0466a5fbf395917974a921d5d4eee67bca4b30d3a31ce7e621e0228c479cf893e783a109af6e14329b52fe2f0cb4108665fad2b87b0018c0df6ac771261d5
languageName: node linkType: hard -"undici-types@npm:~6.19.2": +"undici-types@npm:~6.19.2, undici-types@npm:~6.19.8": version: 6.19.8 resolution: "undici-types@npm:6.19.8" checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344@@ -23736,13 +24157,6 @@ checksum: 10c0/43593f2a89bd54f2d5b5105ef4896ac5c5db66aef723759fbd15cd5eb1ea6cdae9d112e257eda9bbc3fb0cd90be6ac6e9689abe4ca69caa33114f42a27363531
languageName: node linkType: hard -"urlpattern-polyfill@npm:^8.0.0": - version: 8.0.2 - resolution: "urlpattern-polyfill@npm:8.0.2" - checksum: 10c0/5388bbe8459dbd8861ee7cb97904be915dd863a9789c2191c528056f16adad7836ec22762ed002fed44e8995d0f98bdfb75a606466b77233e70d0f61b969aaf9 - languageName: node - linkType: hard - "use-callback-ref@npm:^1.3.0": version: 1.3.2 resolution: "use-callback-ref@npm:1.3.2"@@ -23955,6 +24369,46 @@ checksum: 10c0/3c926f21b27379742a182c6594629ef5287fac2860e5f35ce744da35f35c3a967e822fb9b24d62a0f67a5fccca29b82d7982fbfc5208a58bfef31de7a8d499a4
languageName: node linkType: hard +"vite@npm:5.1.8": + version: 5.1.8 + resolution: "vite@npm:5.1.8" + dependencies: + esbuild: "npm:^0.19.3" + fsevents: "npm:~2.3.3" + postcss: "npm:^8.4.35" + rollup: "npm:^4.2.0" + peerDependencies: + "@types/node": ^18.0.0 || >=20.0.0 + less: "*" + lightningcss: ^1.21.0 + sass: "*" + stylus: "*" + sugarss: "*" + terser: ^5.4.0 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + "@types/node": + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + bin: + vite: bin/vite.js + checksum: 10c0/1e2087792b1a4fa3a18e37ecba590ab14b6e01d4632684827afef320e0951e8221eef1515f8c0fdf9fa9bb3fb814f1e96f2e32cda4ae81138374b3cc5588f144 + languageName: node + linkType: hard + "vizion@npm:~2.2.1": version: 2.2.1 resolution: "vizion@npm:2.2.1"@@ -24006,26 +24460,6 @@ resolution: "wcwidth@npm:1.0.1"
dependencies: defaults: "npm:^1.0.3" checksum: 10c0/5b61ca583a95e2dd85d7078400190efd452e05751a64accb8c06ce4db65d7e0b0cde9917d705e826a2e05cc2548f61efde115ffa374c3e436d04be45c889e5b4 - languageName: node - linkType: hard - -"web-streams-polyfill@npm:^3.2.1": - version: 3.3.3 - resolution: "web-streams-polyfill@npm:3.3.3" - checksum: 10c0/64e855c47f6c8330b5436147db1c75cb7e7474d924166800e8e2aab5eb6c76aac4981a84261dd2982b3e754490900b99791c80ae1407a9fa0dcff74f82ea3a7f - languageName: node - linkType: hard - -"webcrypto-core@npm:^1.8.0": - version: 1.8.0 - resolution: "webcrypto-core@npm:1.8.0" - dependencies: - "@peculiar/asn1-schema": "npm:^2.3.8" - "@peculiar/json-schema": "npm:^1.1.12" - asn1js: "npm:^3.0.1" - pvtsutils: "npm:^1.3.5" - tslib: "npm:^2.6.2" - checksum: 10c0/d4158af402500eb26d0de6e088baa0fbef41c43a3e3b5f53b8326c8c517e55037b3d8a17672cf48bdccfd13526599857544ea8485e2172bb14c9ee4561d706a5 languageName: node linkType: hard@@ -24602,9 +25036,9 @@ checksum: 10c0/a2c282c95ef5d8e1c27b335ae897b5eca00e85590d92a3fd69a437919b7b93ff36a69ea04145da55829d2164e724bc62202cdb5f4b208b425aba0807889375c7
languageName: node linkType: hard -"ws@npm:8.13.0": - version: 8.13.0 - resolution: "ws@npm:8.13.0" +"ws@npm:8.18.0, ws@npm:^8.12.0, ws@npm:^8.17.1": + version: 8.18.0 + resolution: "ws@npm:8.18.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2"@@ -24613,7 +25047,7 @@ bufferutil:
optional: true utf-8-validate: optional: true - checksum: 10c0/579817dbbab3ee46669129c220cfd81ba6cdb9ab5c3e9a105702dd045743c4ab72e33bb384573827c0c481213417cc880e41bc097e0fc541a0b79fa3eb38207d + checksum: 10c0/25eb33aff17edcb90721ed6b0eb250976328533ad3cd1a28a274bd263682e7296a6591ff1436d6cbc50fa67463158b062f9d1122013b361cec99a05f84680e06 languageName: node linkType: hard@@ -24629,21 +25063,6 @@ optional: true
utf-8-validate: optional: true checksum: 10c0/bd7d5f4aaf04fae7960c23dcb6c6375d525e00f795dd20b9385902bd008c40a94d3db3ce97d878acc7573df852056ca546328b27b39f47609f80fb22a0a9b61d - languageName: node - linkType: hard - -"ws@npm:^8.12.0, ws@npm:^8.17.1": - version: 8.18.0 - resolution: "ws@npm:8.18.0" - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true - checksum: 10c0/25eb33aff17edcb90721ed6b0eb250976328533ad3cd1a28a274bd263682e7296a6591ff1436d6cbc50fa67463158b062f9d1122013b361cec99a05f84680e06 languageName: node linkType: hard