fix: modified graphql files in dashboard users and teams module to match resolver changes (#50)
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
committed by
GitHub
parent
3df0492275
commit
5164315243
16
packages/hoppscotch-sh-admin/src/components.d.ts
vendored
16
packages/hoppscotch-sh-admin/src/components.d.ts
vendored
@@ -13,22 +13,6 @@ declare module '@vue/runtime-core' {
|
|||||||
AppModal: typeof import('./components/app/Modal.vue')['default']
|
AppModal: typeof import('./components/app/Modal.vue')['default']
|
||||||
AppSidebar: typeof import('./components/app/Sidebar.vue')['default']
|
AppSidebar: typeof import('./components/app/Sidebar.vue')['default']
|
||||||
AppToast: typeof import('./components/app/Toast.vue')['default']
|
AppToast: typeof import('./components/app/Toast.vue')['default']
|
||||||
HoppButtonPrimary: typeof import('@hoppscotch/ui')['HoppButtonPrimary']
|
|
||||||
HoppButtonSecondary: typeof import('@hoppscotch/ui')['HoppButtonSecondary']
|
|
||||||
HoppSmartAnchor: typeof import('@hoppscotch/ui')['HoppSmartAnchor']
|
|
||||||
HoppSmartConfirmModal: typeof import('@hoppscotch/ui')['HoppSmartConfirmModal']
|
|
||||||
HoppSmartItem: typeof import('@hoppscotch/ui')['HoppSmartItem']
|
|
||||||
IconLucideChevronDown: typeof import('~icons/lucide/chevron-down')['default']
|
|
||||||
IconLucideChevronLeft: typeof import('~icons/lucide/chevron-left')['default']
|
|
||||||
IconLucideChevronRight: typeof import('~icons/lucide/chevron-right')['default']
|
|
||||||
IconLucideInbox: typeof import('~icons/lucide/inbox')['default']
|
|
||||||
IconLucideLayoutDashboard: typeof import('~icons/lucide/layout-dashboard')['default']
|
|
||||||
IconLucideMenu: typeof import('~icons/lucide/menu')['default']
|
|
||||||
IconLucideMoreHorizontal: typeof import('~icons/lucide/more-horizontal')['default']
|
|
||||||
IconLucideSidebarClose: typeof import('~icons/lucide/sidebar-close')['default']
|
|
||||||
IconLucideSidebarOpen: typeof import('~icons/lucide/sidebar-open')['default']
|
|
||||||
IconLucideUser: typeof import('~icons/lucide/user')['default']
|
|
||||||
IconLucideUsers: typeof import('~icons/lucide/users')['default']
|
|
||||||
ProfilePicture: typeof import('./components/profile/Picture.vue')['default']
|
ProfilePicture: typeof import('./components/profile/Picture.vue')['default']
|
||||||
TeamsAddMembers: typeof import('./components/teams/AddMembers.vue')['default']
|
TeamsAddMembers: typeof import('./components/teams/AddMembers.vue')['default']
|
||||||
TeamsDetails: typeof import('./components/teams/Details.vue')['default']
|
TeamsDetails: typeof import('./components/teams/Details.vue')['default']
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export function usePagedQuery<
|
|||||||
query: string | TypedDocumentNode<Result, Vars> | DocumentNode,
|
query: string | TypedDocumentNode<Result, Vars> | DocumentNode,
|
||||||
getList: (result: Result) => ListItem[],
|
getList: (result: Result) => ListItem[],
|
||||||
getCursor: (value: ListItem) => string,
|
getCursor: (value: ListItem) => string,
|
||||||
|
itemsPerPage: number,
|
||||||
variables: Vars
|
variables: Vars
|
||||||
) {
|
) {
|
||||||
//Fetch All Users
|
//Fetch All Users
|
||||||
@@ -26,6 +27,7 @@ export function usePagedQuery<
|
|||||||
const result = await client
|
const result = await client
|
||||||
.query(query, {
|
.query(query, {
|
||||||
...variables,
|
...variables,
|
||||||
|
take: itemsPerPage,
|
||||||
cursor:
|
cursor:
|
||||||
list.value.length > 0 ? getCursor(list.value.at(-1)) : undefined,
|
list.value.length > 0 ? getCursor(list.value.at(-1)) : undefined,
|
||||||
})
|
})
|
||||||
@@ -33,7 +35,7 @@ export function usePagedQuery<
|
|||||||
|
|
||||||
const resultList = getList(result.data!);
|
const resultList = getList(result.data!);
|
||||||
|
|
||||||
if (resultList.length < 20) {
|
if (resultList.length < itemsPerPage) {
|
||||||
hasNextPage.value = false;
|
hasNextPage.value = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
mutation CreateTeam($userUid: String!, $name: String!) {
|
mutation CreateTeam($userUid: ID!, $name: String!) {
|
||||||
createTeamByAdmin(userUid: $userUid, name: $name) {
|
createTeamByAdmin(userUid: $userUid, name: $name) {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
mutation InviteNewUser($inviteeEmail: String!) {
|
||||||
|
inviteNewUser(inviteeEmail: $inviteeEmail) {
|
||||||
|
inviteeEmail
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
mutation InviteUserToSignIn($inviteeEmail: String!) {
|
|
||||||
inviteUserToSignin(inviteeEmail: $inviteeEmail) {
|
|
||||||
inviteeEmail
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
mutation MakeUserAdmin($uid: String!) {
|
mutation MakeUserAdmin($uid: ID!) {
|
||||||
makeUserAdmin(userUID: $uid)
|
makeUserAdmin(userUID: $uid)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
mutation RemoveUserAccountByAdmin($uid: String!) {
|
|
||||||
removeUserAccountByAdmin(userUID: $uid)
|
|
||||||
}
|
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
mutation RemoveUserAsAdmin($uid: String!) {
|
mutation RemoveUserAsAdmin($uid: ID!) {
|
||||||
removeUserAsAdmin(userUID: $uid)
|
removeUserAsAdmin(userUID: $uid)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
mutation RemoveUserByAdmin($uid: ID!) {
|
||||||
|
removeUserByAdmin(userUID: $uid)
|
||||||
|
}
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
query Me {
|
|
||||||
me {
|
|
||||||
uid
|
|
||||||
displayName
|
|
||||||
photoURL
|
|
||||||
isAdmin
|
|
||||||
createdOn
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +1,12 @@
|
|||||||
query UsersList($cursor: ID) {
|
# Write your query or mutation here
|
||||||
|
query UsersList($cursor: ID, $take: Int) {
|
||||||
admin {
|
admin {
|
||||||
allUsers(cursor: $cursor) {
|
allUsers(cursor: $cursor, take: $take) {
|
||||||
uid
|
uid
|
||||||
displayName
|
displayName
|
||||||
email
|
email
|
||||||
isAdmin
|
isAdmin
|
||||||
|
photoURL
|
||||||
createdOn
|
createdOn
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ const addTeam = async () => {
|
|||||||
|
|
||||||
if (data) {
|
if (data) {
|
||||||
name.value = '';
|
name.value = '';
|
||||||
goToTeamDetailsPage(data.createATeamByAdmin.id);
|
goToTeamDetailsPage(data.createTeamByAdmin.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td
|
<td
|
||||||
class="sm:p-3 py-2 px-1 md:table-cell hidden text-sky-300"
|
class="sm:p-3 py-2 px-1 md:table-cell text-sky-300"
|
||||||
@click="goToTeam(team.id)"
|
@click="goToTeam(team.id)"
|
||||||
>
|
>
|
||||||
<span class="hover:underline cursor-pointer">
|
<span class="hover:underline cursor-pointer">
|
||||||
@@ -175,7 +175,8 @@ const {
|
|||||||
TeamListDocument,
|
TeamListDocument,
|
||||||
(x) => x.admin.allTeams,
|
(x) => x.admin.allTeams,
|
||||||
(x) => x.id,
|
(x) => x.id,
|
||||||
{ cursor: undefined }
|
10,
|
||||||
|
{ cursor: undefined, take: 10 }
|
||||||
);
|
);
|
||||||
|
|
||||||
const goToTeam = (teamId: string) => {
|
const goToTeam = (teamId: string) => {
|
||||||
|
|||||||
@@ -144,7 +144,7 @@ import { useMutation } from '@urql/vue';
|
|||||||
import {
|
import {
|
||||||
MakeUserAdminDocument,
|
MakeUserAdminDocument,
|
||||||
UserInfoDocument,
|
UserInfoDocument,
|
||||||
RemoveUserAccountByAdminDocument,
|
RemoveUserByAdminDocument,
|
||||||
RemoveUserAsAdminDocument,
|
RemoveUserAsAdminDocument,
|
||||||
} from '../../helpers/backend/graphql';
|
} from '../../helpers/backend/graphql';
|
||||||
import { useClientHandle } from '@urql/vue';
|
import { useClientHandle } from '@urql/vue';
|
||||||
@@ -179,7 +179,7 @@ onMounted(async () => {
|
|||||||
|
|
||||||
// User Deletion
|
// User Deletion
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const userDeletion = useMutation(RemoveUserAccountByAdminDocument);
|
const userDeletion = useMutation(RemoveUserByAdminDocument);
|
||||||
const confirmDeletion = ref(false);
|
const confirmDeletion = ref(false);
|
||||||
const deleteUserUID = ref<string | null>(null);
|
const deleteUserUID = ref<string | null>(null);
|
||||||
|
|
||||||
|
|||||||
@@ -235,9 +235,9 @@
|
|||||||
import { onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
import { onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
||||||
import { useMutation } from '@urql/vue';
|
import { useMutation } from '@urql/vue';
|
||||||
import {
|
import {
|
||||||
InviteUserToSignInDocument,
|
InviteNewUserDocument,
|
||||||
MakeUserAdminDocument,
|
MakeUserAdminDocument,
|
||||||
RemoveUserAccountByAdminDocument,
|
RemoveUserByAdminDocument,
|
||||||
RemoveUserAsAdminDocument,
|
RemoveUserAsAdminDocument,
|
||||||
UsersListDocument,
|
UsersListDocument,
|
||||||
} from '../../helpers/backend/graphql';
|
} from '../../helpers/backend/graphql';
|
||||||
@@ -256,6 +256,7 @@ const getCreatedDate = (date: string) => format(new Date(date), 'dd-MM-yyyy');
|
|||||||
const getCreatedTime = (date: string) => format(new Date(date), 'hh:mm a');
|
const getCreatedTime = (date: string) => format(new Date(date), 'hh:mm a');
|
||||||
|
|
||||||
// Get Paginated Results of all the users in the infra
|
// Get Paginated Results of all the users in the infra
|
||||||
|
const usersPerPage = 20;
|
||||||
const {
|
const {
|
||||||
fetching,
|
fetching,
|
||||||
error,
|
error,
|
||||||
@@ -266,12 +267,13 @@ const {
|
|||||||
UsersListDocument,
|
UsersListDocument,
|
||||||
(x) => x.admin.allUsers,
|
(x) => x.admin.allUsers,
|
||||||
(x) => x.uid,
|
(x) => x.uid,
|
||||||
{ cursor: undefined }
|
usersPerPage,
|
||||||
|
{ cursor: undefined, take: usersPerPage }
|
||||||
);
|
);
|
||||||
|
|
||||||
// Send Invitation through Email
|
// Send Invitation through Email
|
||||||
const email = ref('');
|
const email = ref('');
|
||||||
const sendInvitation = useMutation(InviteUserToSignInDocument);
|
const sendInvitation = useMutation(InviteNewUserDocument);
|
||||||
const showInviteUserModal = ref(false);
|
const showInviteUserModal = ref(false);
|
||||||
|
|
||||||
const sendInvite = async () => {
|
const sendInvite = async () => {
|
||||||
@@ -321,7 +323,7 @@ watch(
|
|||||||
);
|
);
|
||||||
|
|
||||||
// User Deletion
|
// User Deletion
|
||||||
const userDeletion = useMutation(RemoveUserAccountByAdminDocument);
|
const userDeletion = useMutation(RemoveUserByAdminDocument);
|
||||||
const confirmDeletion = ref(false);
|
const confirmDeletion = ref(false);
|
||||||
const deleteUserUID = ref<string | null>(null);
|
const deleteUserUID = ref<string | null>(null);
|
||||||
|
|
||||||
|
|||||||
126
pnpm-lock.yaml
generated
126
pnpm-lock.yaml
generated
@@ -57,6 +57,7 @@ importers:
|
|||||||
'@nestjs/platform-express': ^9.2.1
|
'@nestjs/platform-express': ^9.2.1
|
||||||
'@nestjs/schematics': ^9.0.3
|
'@nestjs/schematics': ^9.0.3
|
||||||
'@nestjs/testing': ^9.2.1
|
'@nestjs/testing': ^9.2.1
|
||||||
|
'@nestjs/throttler': ^4.0.0
|
||||||
'@prisma/client': ^4.7.1
|
'@prisma/client': ^4.7.1
|
||||||
'@relmify/jest-fp-ts': ^2.0.2
|
'@relmify/jest-fp-ts': ^2.0.2
|
||||||
'@types/argon2': ^0.15.0
|
'@types/argon2': ^0.15.0
|
||||||
@@ -127,6 +128,7 @@ importers:
|
|||||||
'@nestjs/jwt': 10.0.1_@nestjs+common@9.2.1
|
'@nestjs/jwt': 10.0.1_@nestjs+common@9.2.1
|
||||||
'@nestjs/passport': 9.0.0_6o47igfla2pj7yzh7agpvpttka
|
'@nestjs/passport': 9.0.0_6o47igfla2pj7yzh7agpvpttka
|
||||||
'@nestjs/platform-express': 9.2.1_hjcqpoaebdr7gdo5hgc22hthbe
|
'@nestjs/platform-express': 9.2.1_hjcqpoaebdr7gdo5hgc22hthbe
|
||||||
|
'@nestjs/throttler': 4.0.0_dntc3uqqknzoduyjojusds5kla
|
||||||
'@prisma/client': 4.8.1_prisma@4.8.1
|
'@prisma/client': 4.8.1_prisma@4.8.1
|
||||||
apollo-server-express: 3.11.1_4mq2c443wwzwcb6dpxnwkfvrzm
|
apollo-server-express: 3.11.1_4mq2c443wwzwcb6dpxnwkfvrzm
|
||||||
apollo-server-plugin-base: 3.7.1_graphql@15.8.0
|
apollo-server-plugin-base: 3.7.1_graphql@15.8.0
|
||||||
@@ -498,7 +500,7 @@ importers:
|
|||||||
vite-plugin-inspect: 0.7.4_vite@3.1.4
|
vite-plugin-inspect: 0.7.4_vite@3.1.4
|
||||||
vite-plugin-pages: 0.26.0_vnheu5mvzzbfbuhqo4shkhdhei
|
vite-plugin-pages: 0.26.0_vnheu5mvzzbfbuhqo4shkhdhei
|
||||||
vite-plugin-pages-sitemap: 1.4.0
|
vite-plugin-pages-sitemap: 1.4.0
|
||||||
vite-plugin-pwa: 0.13.1_vite@3.1.4
|
vite-plugin-pwa: 0.13.1_bg4cnt4dy3xq3a47wkujd6ryzq
|
||||||
vite-plugin-vue-layouts: 0.7.0_oewzdqozxqnqgsrjzmwikx34vi
|
vite-plugin-vue-layouts: 0.7.0_oewzdqozxqnqgsrjzmwikx34vi
|
||||||
vite-plugin-windicss: 1.8.8_vite@3.1.4
|
vite-plugin-windicss: 1.8.8_vite@3.1.4
|
||||||
vue-tsc: 0.38.2_typescript@4.7.4
|
vue-tsc: 0.38.2_typescript@4.7.4
|
||||||
@@ -658,7 +660,7 @@ importers:
|
|||||||
vite-plugin-inspect: 0.7.4_vite@3.2.4
|
vite-plugin-inspect: 0.7.4_vite@3.2.4
|
||||||
vite-plugin-pages: 0.26.0_vite@3.2.4
|
vite-plugin-pages: 0.26.0_vite@3.2.4
|
||||||
vite-plugin-pages-sitemap: 1.4.0
|
vite-plugin-pages-sitemap: 1.4.0
|
||||||
vite-plugin-pwa: 0.13.1_vite@3.2.4
|
vite-plugin-pwa: 0.13.1_3kw35epztoiwny7qtfesjexvtu
|
||||||
vite-plugin-static-copy: 0.12.0_vite@3.2.4
|
vite-plugin-static-copy: 0.12.0_vite@3.2.4
|
||||||
vite-plugin-vue-layouts: 0.7.0_vite@3.2.4+vue@3.2.45
|
vite-plugin-vue-layouts: 0.7.0_vite@3.2.4+vue@3.2.45
|
||||||
vite-plugin-windicss: 1.8.8_vite@3.2.4
|
vite-plugin-windicss: 1.8.8_vite@3.2.4
|
||||||
@@ -965,7 +967,7 @@ importers:
|
|||||||
vite-plugin-inspect: 0.7.4_vite@3.2.4
|
vite-plugin-inspect: 0.7.4_vite@3.2.4
|
||||||
vite-plugin-pages: 0.26.0_vite@3.2.4
|
vite-plugin-pages: 0.26.0_vite@3.2.4
|
||||||
vite-plugin-pages-sitemap: 1.4.0
|
vite-plugin-pages-sitemap: 1.4.0
|
||||||
vite-plugin-pwa: 0.13.1_vite@3.2.4
|
vite-plugin-pwa: 0.13.1_3kw35epztoiwny7qtfesjexvtu
|
||||||
vite-plugin-static-copy: 0.12.0_vite@3.2.4
|
vite-plugin-static-copy: 0.12.0_vite@3.2.4
|
||||||
vite-plugin-vue-layouts: 0.7.0_vite@3.2.4+vue@3.2.45
|
vite-plugin-vue-layouts: 0.7.0_vite@3.2.4+vue@3.2.45
|
||||||
vite-plugin-windicss: 1.8.8_vite@3.2.4
|
vite-plugin-windicss: 1.8.8_vite@3.2.4
|
||||||
@@ -5140,8 +5142,8 @@ packages:
|
|||||||
vue-i18n:
|
vue-i18n:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/message-compiler': 9.3.0-beta.16
|
'@intlify/message-compiler': 9.3.0-beta.17
|
||||||
'@intlify/shared': 9.3.0-beta.16
|
'@intlify/shared': 9.3.0-beta.17
|
||||||
acorn: 8.8.2
|
acorn: 8.8.2
|
||||||
estree-walker: 2.0.2
|
estree-walker: 2.0.2
|
||||||
jsonc-eslint-parser: 1.4.1
|
jsonc-eslint-parser: 1.4.1
|
||||||
@@ -5161,8 +5163,8 @@ packages:
|
|||||||
vue-i18n:
|
vue-i18n:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/message-compiler': 9.3.0-beta.16
|
'@intlify/message-compiler': 9.3.0-beta.17
|
||||||
'@intlify/shared': 9.3.0-beta.16
|
'@intlify/shared': 9.3.0-beta.17
|
||||||
acorn: 8.8.2
|
acorn: 8.8.2
|
||||||
estree-walker: 2.0.2
|
estree-walker: 2.0.2
|
||||||
jsonc-eslint-parser: 1.4.1
|
jsonc-eslint-parser: 1.4.1
|
||||||
@@ -5193,11 +5195,11 @@ packages:
|
|||||||
'@intlify/shared': 9.2.2
|
'@intlify/shared': 9.2.2
|
||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
|
|
||||||
/@intlify/message-compiler/9.3.0-beta.16:
|
/@intlify/message-compiler/9.3.0-beta.17:
|
||||||
resolution: {integrity: sha512-CGQI3xRcs1ET75eDQ0DUy3MRYOqTauRIIgaMoISKiF83gqRWg93FqN8lGMKcpBqaF4tI0JhsfosCaGiBL9+dnw==}
|
resolution: {integrity: sha512-i7hvVIRk1Ax2uKa9xLRJCT57to08OhFMhFXXjWN07rmx5pWQYQ23MfX1xgggv9drnWTNhqEiD+u4EJeHoS5+Ww==}
|
||||||
engines: {node: '>= 14'}
|
engines: {node: '>= 14'}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/shared': 9.3.0-beta.16
|
'@intlify/shared': 9.3.0-beta.17
|
||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -5205,8 +5207,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==}
|
resolution: {integrity: sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==}
|
||||||
engines: {node: '>= 14'}
|
engines: {node: '>= 14'}
|
||||||
|
|
||||||
/@intlify/shared/9.3.0-beta.16:
|
/@intlify/shared/9.3.0-beta.17:
|
||||||
resolution: {integrity: sha512-kXbm4svALe3lX+EjdJxfnabOphqS4yQ1Ge/iIlR8tvUiYRCoNz3hig1M4336iY++Dfx5ytEQJPNjIcknNIuvig==}
|
resolution: {integrity: sha512-mscf7RQsUTOil35jTij4KGW1RC9SWQjYScwLxP53Ns6g24iEd5HN7ksbt9O6FvTmlQuX77u+MXpBdfJsGqizLQ==}
|
||||||
engines: {node: '>= 14'}
|
engines: {node: '>= 14'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -5226,7 +5228,7 @@ packages:
|
|||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/bundle-utils': 5.2.0_vue-i18n@9.2.2
|
'@intlify/bundle-utils': 5.2.0_vue-i18n@9.2.2
|
||||||
'@intlify/shared': 9.3.0-beta.16
|
'@intlify/shared': 9.3.0-beta.17
|
||||||
'@rollup/pluginutils': 4.2.1
|
'@rollup/pluginutils': 4.2.1
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
@@ -5253,12 +5255,12 @@ packages:
|
|||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/bundle-utils': 5.2.0
|
'@intlify/bundle-utils': 5.2.0
|
||||||
'@intlify/shared': 9.3.0-beta.16
|
'@intlify/shared': 9.3.0-beta.17
|
||||||
'@rollup/pluginutils': 4.2.1
|
'@rollup/pluginutils': 4.2.1
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
@@ -6206,6 +6208,19 @@ packages:
|
|||||||
tslib: 2.4.1
|
tslib: 2.4.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@nestjs/throttler/4.0.0_dntc3uqqknzoduyjojusds5kla:
|
||||||
|
resolution: {integrity: sha512-2T2S/hFhxROa/PZRZhHWFkrukxg3T8Db32Y04m6U6j6N2XqFGSKXhjfIbORO8kk/S2jswa9oTX/K12E120tgaQ==}
|
||||||
|
peerDependencies:
|
||||||
|
'@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0
|
||||||
|
'@nestjs/core': ^7.0.0 || ^8.0.0 || ^9.0.0
|
||||||
|
reflect-metadata: ^0.1.13
|
||||||
|
dependencies:
|
||||||
|
'@nestjs/common': 9.2.1_whg6pvy6vwu66ypq7idiq2suxq
|
||||||
|
'@nestjs/core': 9.2.1_ajc4cvdydchgvxyi4xnoij5t4i
|
||||||
|
md5: 2.3.0
|
||||||
|
reflect-metadata: 0.1.13
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@nodelib/fs.scandir/2.1.5:
|
/@nodelib/fs.scandir/2.1.5:
|
||||||
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
@@ -8020,7 +8035,7 @@ packages:
|
|||||||
magic-string: 0.26.7
|
magic-string: 0.26.7
|
||||||
regenerator-runtime: 0.13.10
|
regenerator-runtime: 0.13.10
|
||||||
systemjs: 6.13.0
|
systemjs: 6.13.0
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
|
|
||||||
/@vitejs/plugin-vue/3.1.0_vite@3.1.4+vue@3.2.37:
|
/@vitejs/plugin-vue/3.1.0_vite@3.1.4+vue@3.2.37:
|
||||||
resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==}
|
resolution: {integrity: sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==}
|
||||||
@@ -8040,7 +8055,7 @@ packages:
|
|||||||
vite: ^3.0.0
|
vite: ^3.0.0
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
vue: 3.2.45
|
vue: 3.2.45
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -8859,7 +8874,7 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
/after/0.8.2:
|
/after/0.8.2:
|
||||||
resolution: {integrity: sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==}
|
resolution: {integrity: sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/agent-base/6.0.2:
|
/agent-base/6.0.2:
|
||||||
@@ -9468,7 +9483,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
||||||
|
|
||||||
/base64-arraybuffer/0.1.4:
|
/base64-arraybuffer/0.1.4:
|
||||||
resolution: {integrity: sha512-a1eIFi4R9ySrbiMuyTGx5e92uRH5tQY6kArNcFaKBUleIoLjdjBg7Zxm3Mqm3Kmkf27HLR/1fnxX9q8GQ7Iavg==}
|
resolution: {integrity: sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=}
|
||||||
engines: {node: '>= 0.6.0'}
|
engines: {node: '>= 0.6.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@@ -9828,6 +9843,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
|
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/charenc/0.0.2:
|
||||||
|
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/charset/1.0.1:
|
/charset/1.0.1:
|
||||||
resolution: {integrity: sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==}
|
resolution: {integrity: sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==}
|
||||||
engines: {node: '>=4.0.0'}
|
engines: {node: '>=4.0.0'}
|
||||||
@@ -10092,14 +10111,14 @@ packages:
|
|||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/component-bind/1.0.0:
|
/component-bind/1.0.0:
|
||||||
resolution: {integrity: sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==}
|
resolution: {integrity: sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/component-emitter/1.3.0:
|
/component-emitter/1.3.0:
|
||||||
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
|
resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
|
||||||
|
|
||||||
/component-inherit/0.0.3:
|
/component-inherit/0.0.3:
|
||||||
resolution: {integrity: sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==}
|
resolution: {integrity: sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/concat-map/0.0.1:
|
/concat-map/0.0.1:
|
||||||
@@ -10383,6 +10402,10 @@ packages:
|
|||||||
'@types/node': 16.11.43
|
'@types/node': 16.11.43
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/crypt/0.0.2:
|
||||||
|
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/crypto-random-string/2.0.0:
|
/crypto-random-string/2.0.0:
|
||||||
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
|
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@@ -13388,7 +13411,7 @@ packages:
|
|||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/has-cors/1.1.0:
|
/has-cors/1.1.0:
|
||||||
resolution: {integrity: sha512-g5VNKdkFuUuVCP9gYfDJHjK2nqdQJ7aDLTnycnc2+RvsOQbuLdF5pm7vuE5J76SEBIQjs4kQY/BWq74JUmjbXA==}
|
resolution: {integrity: sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/has-flag/3.0.0:
|
/has-flag/3.0.0:
|
||||||
@@ -13781,7 +13804,7 @@ packages:
|
|||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
|
|
||||||
/indexof/0.0.1:
|
/indexof/0.0.1:
|
||||||
resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==}
|
resolution: {integrity: sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/inflight/1.0.6:
|
/inflight/1.0.6:
|
||||||
@@ -13970,6 +13993,10 @@ packages:
|
|||||||
call-bind: 1.0.2
|
call-bind: 1.0.2
|
||||||
has-tostringtag: 1.0.0
|
has-tostringtag: 1.0.0
|
||||||
|
|
||||||
|
/is-buffer/1.1.6:
|
||||||
|
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/is-callable/1.2.4:
|
/is-callable/1.2.4:
|
||||||
resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
|
resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
@@ -16096,6 +16123,14 @@ packages:
|
|||||||
uc.micro: 1.0.6
|
uc.micro: 1.0.6
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/md5/2.3.0:
|
||||||
|
resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
|
||||||
|
dependencies:
|
||||||
|
charenc: 0.0.2
|
||||||
|
crypt: 0.0.2
|
||||||
|
is-buffer: 1.1.6
|
||||||
|
dev: false
|
||||||
|
|
||||||
/mdurl/1.0.1:
|
/mdurl/1.0.1:
|
||||||
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
|
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -18391,6 +18426,7 @@ packages:
|
|||||||
chokidar: 3.5.3
|
chokidar: 3.5.3
|
||||||
immutable: 4.1.0
|
immutable: 4.1.0
|
||||||
source-map-js: 1.0.2
|
source-map-js: 1.0.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
/sax/1.2.4:
|
/sax/1.2.4:
|
||||||
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
|
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
|
||||||
@@ -19412,7 +19448,7 @@ packages:
|
|||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/to-array/0.1.4:
|
/to-array/0.1.4:
|
||||||
resolution: {integrity: sha512-LhVdShQD/4Mk4zXNroIQZJC+Ap3zgLcDuwEdcmLv9CCO73NWockQDwyUnW/m8VX/EElfL6FcYx7EeutN4HJA6A==}
|
resolution: {integrity: sha1-F+bBH3PdTz10zaek/zI46a2b+JA=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/to-fast-properties/2.0.0:
|
/to-fast-properties/2.0.0:
|
||||||
@@ -20312,7 +20348,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.8.0
|
acorn: 8.8.0
|
||||||
chokidar: 3.5.3
|
chokidar: 3.5.3
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
webpack-sources: 3.2.3
|
webpack-sources: 3.2.3
|
||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
|
|
||||||
@@ -20359,7 +20395,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.8.0
|
acorn: 8.8.0
|
||||||
chokidar: 3.5.3
|
chokidar: 3.5.3
|
||||||
vite: 3.2.4_sass@1.58.0
|
vite: 3.2.4
|
||||||
webpack-sources: 3.2.3
|
webpack-sources: 3.2.3
|
||||||
webpack-virtual-modules: 0.4.4
|
webpack-virtual-modules: 0.4.4
|
||||||
|
|
||||||
@@ -20673,7 +20709,7 @@ packages:
|
|||||||
vite: ^2.0.0 || ^3.0.0
|
vite: ^2.0.0 || ^3.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-html-config/1.0.10_vite@3.1.4:
|
/vite-plugin-html-config/1.0.10_vite@3.1.4:
|
||||||
@@ -20691,7 +20727,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: '>=2.0.0'
|
vite: '>=2.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-inspect/0.7.4_vite@3.1.4:
|
/vite-plugin-inspect/0.7.4_vite@3.1.4:
|
||||||
@@ -20723,7 +20759,7 @@ packages:
|
|||||||
kolorist: 1.5.1
|
kolorist: 1.5.1
|
||||||
sirv: 2.0.2
|
sirv: 2.0.2
|
||||||
ufo: 0.8.5
|
ufo: 0.8.5
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
@@ -20750,7 +20786,7 @@ packages:
|
|||||||
json5: 2.2.1
|
json5: 2.2.1
|
||||||
local-pkg: 0.4.2
|
local-pkg: 0.4.2
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4_sass@1.58.0
|
||||||
yaml: 2.1.1
|
yaml: 2.1.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -20803,10 +20839,29 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vite-plugin-pwa/0.13.1_vite@3.1.4:
|
/vite-plugin-pwa/0.13.1_3kw35epztoiwny7qtfesjexvtu:
|
||||||
resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==}
|
resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: ^3.1.0
|
vite: ^3.1.0
|
||||||
|
workbox-window: ^6.5.4
|
||||||
|
dependencies:
|
||||||
|
debug: 4.3.4
|
||||||
|
fast-glob: 3.2.11
|
||||||
|
pretty-bytes: 6.0.0
|
||||||
|
rollup: 2.79.1
|
||||||
|
vite: 3.2.4
|
||||||
|
workbox-build: 6.5.4
|
||||||
|
workbox-window: 6.5.4
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- '@types/babel__core'
|
||||||
|
- supports-color
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/vite-plugin-pwa/0.13.1_bg4cnt4dy3xq3a47wkujd6ryzq:
|
||||||
|
resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==}
|
||||||
|
peerDependencies:
|
||||||
|
vite: ^3.1.0
|
||||||
|
workbox-window: ^6.5.4
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
@@ -20824,6 +20879,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==}
|
resolution: {integrity: sha512-NR3dIa+o2hzlzo4lF4Gu0cYvoMjSw2DdRc6Epw1yjmCqWaGuN86WK9JqZie4arNlE1ZuWT3CLiMdiX5wcmmUmg==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vite: ^3.1.0
|
vite: ^3.1.0
|
||||||
|
workbox-window: ^6.5.4
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
@@ -20893,7 +20949,7 @@ packages:
|
|||||||
'@vue/compiler-sfc': 3.2.45
|
'@vue/compiler-sfc': 3.2.45
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
fast-glob: 3.2.11
|
fast-glob: 3.2.11
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4_sass@1.58.0
|
||||||
vue: 3.2.45
|
vue: 3.2.45
|
||||||
vue-router: 4.1.0_vue@3.2.45
|
vue-router: 4.1.0_vue@3.2.45
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
@@ -20922,7 +20978,7 @@ packages:
|
|||||||
'@windicss/plugin-utils': 1.8.8
|
'@windicss/plugin-utils': 1.8.8
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
kolorist: 1.5.1
|
kolorist: 1.5.1
|
||||||
vite: 3.2.4_sass@1.53.0
|
vite: 3.2.4
|
||||||
windicss: 3.5.6
|
windicss: 3.5.6
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
@@ -20986,7 +21042,6 @@ packages:
|
|||||||
rollup: 2.79.1
|
rollup: 2.79.1
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents: 2.3.2
|
fsevents: 2.3.2
|
||||||
dev: true
|
|
||||||
|
|
||||||
/vite/3.2.4_sass@1.53.0:
|
/vite/3.2.4_sass@1.53.0:
|
||||||
resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==}
|
resolution: {integrity: sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==}
|
||||||
@@ -21053,6 +21108,7 @@ packages:
|
|||||||
sass: 1.58.0
|
sass: 1.58.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents: 2.3.2
|
fsevents: 2.3.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
/vm2/3.9.14:
|
/vm2/3.9.14:
|
||||||
resolution: {integrity: sha512-HgvPHYHeQy8+QhzlFryvSteA4uQLBCOub02mgqdR+0bN/akRZ48TGB1v0aCv7ksyc0HXx16AZtMHKS38alc6TA==}
|
resolution: {integrity: sha512-HgvPHYHeQy8+QhzlFryvSteA4uQLBCOub02mgqdR+0bN/akRZ48TGB1v0aCv7ksyc0HXx16AZtMHKS38alc6TA==}
|
||||||
@@ -22211,7 +22267,7 @@ packages:
|
|||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/yeast/0.1.2:
|
/yeast/0.1.2:
|
||||||
resolution: {integrity: sha512-8HFIh676uyGYP6wP13R/j6OJ/1HwJ46snpvzE7aHAN3Ryqh2yX6Xox2B4CUmTwwOIzlG3Bs7ocsP5dZH/R1Qbg==}
|
resolution: {integrity: sha1-AI4G2AlDIMNy28L47XagymyKxBk=}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/yn/3.1.1:
|
/yn/3.1.1:
|
||||||
|
|||||||
Reference in New Issue
Block a user