chore(fe2): update to nuxt 3.12.2 (#2377)

This commit is contained in:
Kristaps Fabians Geikins
2024-06-17 16:37:28 +03:00
committed by GitHub
parent 01c9c3fa0e
commit 4092d0c8ad
4 changed files with 1800 additions and 526 deletions
@@ -1245,9 +1245,15 @@ export type Mutation = {
commitsDelete: Scalars['Boolean'];
/** Move a batch of commits to a new branch */
commitsMove: Scalars['Boolean'];
/** Delete a pending invite */
/**
* Delete a pending invite
* Note: The required scope to invoke this is not given out to app or personal access tokens
*/
inviteDelete: Scalars['Boolean'];
/** Re-send a pending invite */
/**
* Re-send a pending invite
* Note: The required scope to invoke this is not given out to app or personal access tokens
*/
inviteResend: Scalars['Boolean'];
modelMutations: ModelMutations;
objectCreate: Array<Maybe<Scalars['String']>>;
@@ -1256,6 +1262,7 @@ export type Mutation = {
requestVerification: Scalars['Boolean'];
requestVerificationByEmail: Scalars['Boolean'];
serverInfoUpdate?: Maybe<Scalars['Boolean']>;
/** Note: The required scope to invoke this is not given out to app or personal access tokens */
serverInviteBatchCreate: Scalars['Boolean'];
/** Invite a new user to the speckle server and return the invite ID */
serverInviteCreate: Scalars['Boolean'];
@@ -1268,10 +1275,17 @@ export type Mutation = {
/** Deletes an existing stream. */
streamDelete: Scalars['Boolean'];
streamFavorite?: Maybe<Stream>;
/** Note: The required scope to invoke this is not given out to app or personal access tokens */
streamInviteBatchCreate: Scalars['Boolean'];
/** Cancel a pending stream invite. Can only be invoked by a stream owner. */
/**
* Cancel a pending stream invite. Can only be invoked by a stream owner.
* Note: The required scope to invoke this is not given out to app or personal access tokens
*/
streamInviteCancel: Scalars['Boolean'];
/** Invite a new or registered user to the specified stream */
/**
* Invite a new or registered user to the specified stream
* Note: The required scope to invoke this is not given out to app or personal access tokens
*/
streamInviteCreate: Scalars['Boolean'];
/** Accept or decline a stream invite */
streamInviteUse: Scalars['Boolean'];
+1
View File
@@ -25,6 +25,7 @@ const buildSourceMaps = ['1', 'true', true, 1].includes(BUILD_SOURCEMAPS)
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
...(buildSourceMaps ? { sourcemap: true } : {}),
modulesDir: ['./node_modules'],
typescript: {
shim: false,
strict: true
+1 -1
View File
@@ -118,7 +118,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vuejs-accessibility": "^2.3.0",
"jest": "27",
"nuxt": "^3.11.1",
"nuxt": "^3.12.2",
"pino-pretty": "^10.0.1",
"postcss": "^8.4.31",
"postcss-custom-properties": "^12.1.9",
+1780 -521
View File
File diff suppressed because it is too large Load Diff