From 8ee5eff9a5f6572bbfa772dbad3f8a99835a2070 Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Wed, 14 Aug 2024 16:16:31 -0300
Subject: [PATCH 001/154] test: return values in resolver
---
packages/api/src/__generated__/schema.ts | 2 ++
packages/api/src/platforms/vtex/resolvers/product.ts | 3 ++-
packages/api/src/typeDefs/product.graphql | 4 ++++
packages/core/@generated/graphql.ts | 2 ++
packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts | 2 ++
5 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index d7d15951a0..756eaf4fc9 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -952,6 +952,8 @@ export type StoreProduct = {
brand: StoreBrand;
/** List of items consisting of chain linked web pages, ending with the current page. */
breadcrumbList: StoreBreadcrumbList;
+ /** Product categories. */
+ categoryId: Scalars['String'];
/** Product description. */
description: Scalars['String'];
/** Global Trade Item Number. */
diff --git a/packages/api/src/platforms/vtex/resolvers/product.ts b/packages/api/src/platforms/vtex/resolvers/product.ts
index db945e61f9..589d4e1418 100644
--- a/packages/api/src/platforms/vtex/resolvers/product.ts
+++ b/packages/api/src/platforms/vtex/resolvers/product.ts
@@ -44,7 +44,8 @@ export const StoreProduct: Record> & {
image: Resolver
} = {
- productID: ({ itemId }) => itemId,
+ productID: ({ itemId }) => itemId+`@44444444`,
+ categoryId: ({ isVariantOf: { categoryId }}) => categoryId,
name: ({ isVariantOf, name }) => name ?? isVariantOf.productName,
slug: ({ isVariantOf: { linkText }, itemId }) => getSlug(linkText, itemId),
description: ({ isVariantOf: { description } }) => description,
diff --git a/packages/api/src/typeDefs/product.graphql b/packages/api/src/typeDefs/product.graphql
index 1fb4613112..426d471aa5 100644
--- a/packages/api/src/typeDefs/product.graphql
+++ b/packages/api/src/typeDefs/product.graphql
@@ -31,6 +31,10 @@ type StoreProduct {
"""
description: String!
"""
+ Product categories.
+ """
+ categoryId: String!
+ """
Array of images.
"""
image(context: String = "generic", limit: Int = -1): [StoreImage!]!
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index 12eed73925..ea78c8d6b6 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -909,6 +909,8 @@ export type StoreProduct = {
brand: StoreBrand
/** List of items consisting of chain linked web pages, ending with the current page. */
breadcrumbList: StoreBreadcrumbList
+ /** Product categories. */
+ categoryId: Scalars['String']['output']
/** Product description. */
description: Scalars['String']['output']
/** Global Trade Item Number. */
diff --git a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
index f2afd30484..a0dfc1244e 100644
--- a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
@@ -24,6 +24,8 @@ export const useViewItemListEvent = ({
currency: { code },
} = useSession()
+ console.log(`products33333`, products)
+
const sendViewItemListEvent = useCallback(() => {
sendAnalyticsEvent>({
name: 'view_item_list',
From 3f3cc71e0cffecde71d8df95f73ee86a44e88c52 Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Wed, 14 Aug 2024 17:00:15 -0300
Subject: [PATCH 002/154] test: add in the gph
---
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 8 ++++++--
.../components/sections/ProductDetails/ProductDetails.tsx | 2 ++
3 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index e1340dcce6..6ba3337543 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -16,7 +16,7 @@ const documents = {
types.ProductSummary_ProductFragmentDoc,
'\n fragment Filter_facets on StoreFacet {\n ... on StoreFacetRange {\n key\n label\n\n min {\n selected\n absolute\n }\n\n max {\n selected\n absolute\n }\n\n __typename\n }\n ... on StoreFacetBoolean {\n key\n label\n values {\n label\n value\n selected\n quantity\n }\n\n __typename\n }\n }\n':
types.Filter_FacetsFragmentDoc,
- '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n':
+ '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n categoryId\n\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n':
types.ProductDetailsFragment_ProductFragmentDoc,
'\n fragment ClientManyProducts on Query {\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n }\n }\n }\n':
types.ClientManyProductsFragmentDoc,
@@ -76,7 +76,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n'
+ source: '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n categoryId\n\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n'
): typeof import('./graphql').ProductDetailsFragment_ProductFragmentDoc
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index ea78c8d6b6..cb5bc7889d 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -1157,6 +1157,7 @@ export type ProductDetailsFragment_ProductFragment = {
sku: string
name: string
gtin: string
+ categoryId: string
description: string
unitMultiplier: number | null
id: string
@@ -1243,6 +1244,7 @@ export type ServerProductQueryQuery = {
name: string
description: string
releaseDate: string
+ categoryId: string
unitMultiplier: number | null
id: string
seo: { title: string; description: string; canonical: string }
@@ -1498,6 +1500,7 @@ export type ClientProductQueryQuery = {
sku: string
name: string
gtin: string
+ categoryId: string
description: string
unitMultiplier: number | null
id: string
@@ -1779,6 +1782,7 @@ export const ProductDetailsFragment_ProductFragmentDoc =
sku
name
gtin
+ categoryId
description
unitMultiplier
isVariantOf {
@@ -2038,7 +2042,7 @@ export const ServerCollectionPageQueryDocument = {
export const ServerProductQueryDocument = {
__meta__: {
operationName: 'ServerProductQuery',
- operationHash: '46103bee661405bde706d72126fdbf9b0a0c9e6e',
+ operationHash: '517b4ec34753b76b9fca9e72f6ce0a9427d22a05',
},
} as unknown as TypedDocumentString<
ServerProductQueryQuery,
@@ -2083,7 +2087,7 @@ export const ClientProductGalleryQueryDocument = {
export const ClientProductQueryDocument = {
__meta__: {
operationName: 'ClientProductQuery',
- operationHash: '7d121ef8d4dc99174e64e4429a9b977b8bbebed8',
+ operationHash: '5839f2e715b02f93045c3aa76993ec1072e33f63',
},
} as unknown as TypedDocumentString<
ClientProductQueryQuery,
diff --git a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
index 62e262b11a..030ffb4cd1 100644
--- a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
+++ b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
@@ -271,6 +271,8 @@ export const fragment = gql(`
sku
name
gtin
+ categoryId
+
description
unitMultiplier
isVariantOf {
From f0ede4175928d31b1dcab04af08c6b3850e14dcd Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Wed, 14 Aug 2024 17:15:55 -0300
Subject: [PATCH 003/154] test: returning category id
---
packages/api/src/platforms/vtex/resolvers/product.ts | 2 +-
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 8 ++++++--
.../src/components/product/ProductCard/ProductCard.tsx | 1 +
4 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/packages/api/src/platforms/vtex/resolvers/product.ts b/packages/api/src/platforms/vtex/resolvers/product.ts
index 589d4e1418..979fdc287a 100644
--- a/packages/api/src/platforms/vtex/resolvers/product.ts
+++ b/packages/api/src/platforms/vtex/resolvers/product.ts
@@ -44,7 +44,7 @@ export const StoreProduct: Record> & {
image: Resolver
} = {
- productID: ({ itemId }) => itemId+`@44444444`,
+ productID: ({ itemId }) => itemId,
categoryId: ({ isVariantOf: { categoryId }}) => categoryId,
name: ({ isVariantOf, name }) => name ?? isVariantOf.productName,
slug: ({ isVariantOf: { linkText }, itemId }) => getSlug(linkText, itemId),
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 6ba3337543..de2dee99f5 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -12,7 +12,7 @@ import * as types from './graphql'
* Therefore it is highly recommended to use the babel or swc plugin for production.
*/
const documents = {
- '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
+ '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n categoryId\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
types.ProductSummary_ProductFragmentDoc,
'\n fragment Filter_facets on StoreFacet {\n ... on StoreFacetRange {\n key\n label\n\n min {\n selected\n absolute\n }\n\n max {\n selected\n absolute\n }\n\n __typename\n }\n ... on StoreFacetBoolean {\n key\n label\n values {\n label\n value\n selected\n quantity\n }\n\n __typename\n }\n }\n':
types.Filter_FacetsFragmentDoc,
@@ -64,7 +64,7 @@ const documents = {
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
+ source: '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n categoryId\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
): typeof import('./graphql').ProductSummary_ProductFragmentDoc
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index cb5bc7889d..43fa39ca15 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -1105,6 +1105,7 @@ export type ProductSummary_ProductFragment = {
sku: string
name: string
gtin: string
+ categoryId: string
id: string
brand: { name: string; brandName: string }
isVariantOf: { productGroupID: string; name: string }
@@ -1417,6 +1418,7 @@ export type ClientManyProductsQueryQuery = {
sku: string
name: string
gtin: string
+ categoryId: string
id: string
brand: { name: string; brandName: string }
isVariantOf: { productGroupID: string; name: string }
@@ -1550,6 +1552,7 @@ export type ClientSearchSuggestionsQueryQuery = {
sku: string
name: string
gtin: string
+ categoryId: string
id: string
brand: { name: string; brandName: string }
isVariantOf: { productGroupID: string; name: string }
@@ -1675,6 +1678,7 @@ export const ProductSummary_ProductFragmentDoc = new TypedDocumentString(
}
name
gtin
+ categoryId
isVariantOf {
productGroupID
name
@@ -2069,7 +2073,7 @@ export const SubscribeToNewsletterDocument = {
export const ClientManyProductsQueryDocument = {
__meta__: {
operationName: 'ClientManyProductsQuery',
- operationHash: '99012563e9885c3b27a716ca212a2c317e7ec12f',
+ operationHash: 'c1da168d1070355bd99268eb196c8479f5c714bb',
},
} as unknown as TypedDocumentString<
ClientManyProductsQueryQuery,
@@ -2096,7 +2100,7 @@ export const ClientProductQueryDocument = {
export const ClientSearchSuggestionsQueryDocument = {
__meta__: {
operationName: 'ClientSearchSuggestionsQuery',
- operationHash: '47af7b9c9e0fb18b01050767daf3e765f67819ac',
+ operationHash: '930191332cee0b0b30fef83f105855f965c241cf',
},
} as unknown as TypedDocumentString<
ClientSearchSuggestionsQueryQuery,
diff --git a/packages/core/src/components/product/ProductCard/ProductCard.tsx b/packages/core/src/components/product/ProductCard/ProductCard.tsx
index d9aa1e034e..f81f618cac 100644
--- a/packages/core/src/components/product/ProductCard/ProductCard.tsx
+++ b/packages/core/src/components/product/ProductCard/ProductCard.tsx
@@ -153,6 +153,7 @@ export const fragment = gql(`
}
name
gtin
+ categoryId
isVariantOf {
productGroupID
From b855d6701fc1ecd598a8402f261a3ffc93f97060 Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Wed, 14 Aug 2024 18:56:49 -0300
Subject: [PATCH 004/154] feat: return categories
---
packages/api/src/__generated__/schema.ts | 9 ++++++
.../src/platforms/vtex/resolvers/product.ts | 12 ++++++++
packages/api/src/typeDefs/categories.graphql | 10 +++++++
packages/api/src/typeDefs/product.graphql | 6 +++-
packages/core/@generated/gql.ts | 8 +++---
packages/core/@generated/graphql.ts | 28 ++++++++++++++++---
.../product/ProductCard/ProductCard.tsx | 3 ++
.../ProductDetails/ProductDetails.tsx | 3 ++
.../analytics/hooks/useViewItemListEvent.ts | 3 ++
.../core/src/utils/createCategoryObject.ts | 7 +++++
10 files changed, 80 insertions(+), 9 deletions(-)
create mode 100644 packages/api/src/typeDefs/categories.graphql
create mode 100644 packages/core/src/utils/createCategoryObject.ts
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index 756eaf4fc9..c0ab42a222 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -687,6 +687,13 @@ export type StoreCartMessage = {
text: Scalars['String'];
};
+/** Item of a Category. */
+export type StoreCategoryItem = {
+ __typename?: 'StoreCategoryItem';
+ /** Name of the Category. */
+ name: Scalars['String'];
+};
+
/** Product collection information. */
export type StoreCollection = {
__typename?: 'StoreCollection';
@@ -953,6 +960,8 @@ export type StoreProduct = {
/** List of items consisting of chain linked web pages, ending with the current page. */
breadcrumbList: StoreBreadcrumbList;
/** Product categories. */
+ categories: Array;
+ /** Product category Id. */
categoryId: Scalars['String'];
/** Product description. */
description: Scalars['String'];
diff --git a/packages/api/src/platforms/vtex/resolvers/product.ts b/packages/api/src/platforms/vtex/resolvers/product.ts
index 979fdc287a..09eadabd1b 100644
--- a/packages/api/src/platforms/vtex/resolvers/product.ts
+++ b/packages/api/src/platforms/vtex/resolvers/product.ts
@@ -46,6 +46,18 @@ export const StoreProduct: Record> & {
} = {
productID: ({ itemId }) => itemId,
categoryId: ({ isVariantOf: { categoryId }}) => categoryId,
+ categories: ({ isVariantOf: { categories }}) => {
+ const categoriesOnj = categories.reverse().map((categoryPath:string, index:number) => {
+ const splitted = categoryPath.split('/')
+ const name = splitted[splitted.length - 2]
+
+ return {
+ name,
+ position: index + 1,
+ }
+ })
+ return categoriesOnj
+ },
name: ({ isVariantOf, name }) => name ?? isVariantOf.productName,
slug: ({ isVariantOf: { linkText }, itemId }) => getSlug(linkText, itemId),
description: ({ isVariantOf: { description } }) => description,
diff --git a/packages/api/src/typeDefs/categories.graphql b/packages/api/src/typeDefs/categories.graphql
new file mode 100644
index 0000000000..9af5a01f68
--- /dev/null
+++ b/packages/api/src/typeDefs/categories.graphql
@@ -0,0 +1,10 @@
+"""
+Item of a Category.
+"""
+type StoreCategoryItem {
+ """
+ Name of the Category.
+ """
+ name: String!
+
+}
diff --git a/packages/api/src/typeDefs/product.graphql b/packages/api/src/typeDefs/product.graphql
index 426d471aa5..c050c1f511 100644
--- a/packages/api/src/typeDefs/product.graphql
+++ b/packages/api/src/typeDefs/product.graphql
@@ -31,9 +31,13 @@ type StoreProduct {
"""
description: String!
"""
- Product categories.
+ Product category Id.
"""
categoryId: String!
+ """
+ Product categories.
+ """
+ categories: [StoreCategoryItem!]!
"""
Array of images.
"""
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index de2dee99f5..5431c5e5dd 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -12,11 +12,11 @@ import * as types from './graphql'
* Therefore it is highly recommended to use the babel or swc plugin for production.
*/
const documents = {
- '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n categoryId\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
+ '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n categoryId\n categories {\n name\n }\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
types.ProductSummary_ProductFragmentDoc,
'\n fragment Filter_facets on StoreFacet {\n ... on StoreFacetRange {\n key\n label\n\n min {\n selected\n absolute\n }\n\n max {\n selected\n absolute\n }\n\n __typename\n }\n ... on StoreFacetBoolean {\n key\n label\n values {\n label\n value\n selected\n quantity\n }\n\n __typename\n }\n }\n':
types.Filter_FacetsFragmentDoc,
- '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n categoryId\n\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n':
+ '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n categoryId\n categories {\n name\n }\n\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n':
types.ProductDetailsFragment_ProductFragmentDoc,
'\n fragment ClientManyProducts on Query {\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n }\n }\n }\n':
types.ClientManyProductsFragmentDoc,
@@ -64,7 +64,7 @@ const documents = {
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n categoryId\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
+ source: '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n categoryId\n categories {\n name\n }\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
): typeof import('./graphql').ProductSummary_ProductFragmentDoc
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
@@ -76,7 +76,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n categoryId\n\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n'
+ source: '\n fragment ProductDetailsFragment_product on StoreProduct {\n id: productID\n sku\n name\n gtin\n categoryId\n categories {\n name\n }\n\n description\n unitMultiplier\n isVariantOf {\n name\n productGroupID\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n # Contains necessary info to add this item to cart\n ...CartProductItem\n }\n'
): typeof import('./graphql').ProductDetailsFragment_ProductFragmentDoc
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index 43fa39ca15..87d525bceb 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -667,6 +667,12 @@ export type StoreCartMessage = {
text: Scalars['String']['output']
}
+/** Item of a Category. */
+export type StoreCategoryItem = {
+ /** Name of the Category. */
+ name: Scalars['String']['output']
+}
+
/** Product collection information. */
export type StoreCollection = {
/** List of items consisting of chain linked web pages, ending with the current page. */
@@ -910,6 +916,8 @@ export type StoreProduct = {
/** List of items consisting of chain linked web pages, ending with the current page. */
breadcrumbList: StoreBreadcrumbList
/** Product categories. */
+ categories: Array
+ /** Product category Id. */
categoryId: Scalars['String']['output']
/** Product description. */
description: Scalars['String']['output']
@@ -1108,6 +1116,7 @@ export type ProductSummary_ProductFragment = {
categoryId: string
id: string
brand: { name: string; brandName: string }
+ categories: Array<{ name: string }>
isVariantOf: { productGroupID: string; name: string }
image: Array<{ url: string; alternateName: string }>
offers: {
@@ -1162,6 +1171,7 @@ export type ProductDetailsFragment_ProductFragment = {
description: string
unitMultiplier: number | null
id: string
+ categories: Array<{ name: string }>
isVariantOf: {
name: string
productGroupID: string
@@ -1280,6 +1290,7 @@ export type ServerProductQueryQuery = {
availableVariations: any | null
} | null
}
+ categories: Array<{ name: string }>
additionalProperty: Array<{
propertyID: string
name: string
@@ -1421,6 +1432,7 @@ export type ClientManyProductsQueryQuery = {
categoryId: string
id: string
brand: { name: string; brandName: string }
+ categories: Array<{ name: string }>
isVariantOf: { productGroupID: string; name: string }
image: Array<{ url: string; alternateName: string }>
offers: {
@@ -1506,6 +1518,7 @@ export type ClientProductQueryQuery = {
description: string
unitMultiplier: number | null
id: string
+ categories: Array<{ name: string }>
isVariantOf: {
name: string
productGroupID: string
@@ -1555,6 +1568,7 @@ export type ClientSearchSuggestionsQueryQuery = {
categoryId: string
id: string
brand: { name: string; brandName: string }
+ categories: Array<{ name: string }>
isVariantOf: { productGroupID: string; name: string }
image: Array<{ url: string; alternateName: string }>
offers: {
@@ -1679,6 +1693,9 @@ export const ProductSummary_ProductFragmentDoc = new TypedDocumentString(
name
gtin
categoryId
+ categories {
+ name
+ }
isVariantOf {
productGroupID
name
@@ -1787,6 +1804,9 @@ export const ProductDetailsFragment_ProductFragmentDoc =
name
gtin
categoryId
+ categories {
+ name
+ }
description
unitMultiplier
isVariantOf {
@@ -2046,7 +2066,7 @@ export const ServerCollectionPageQueryDocument = {
export const ServerProductQueryDocument = {
__meta__: {
operationName: 'ServerProductQuery',
- operationHash: '517b4ec34753b76b9fca9e72f6ce0a9427d22a05',
+ operationHash: 'b66995c497b41d1bd968b4cd66d1810a99037308',
},
} as unknown as TypedDocumentString<
ServerProductQueryQuery,
@@ -2073,7 +2093,7 @@ export const SubscribeToNewsletterDocument = {
export const ClientManyProductsQueryDocument = {
__meta__: {
operationName: 'ClientManyProductsQuery',
- operationHash: 'c1da168d1070355bd99268eb196c8479f5c714bb',
+ operationHash: 'd7e5f9d71b0c6b53defd32131b4334990aa8ec1d',
},
} as unknown as TypedDocumentString<
ClientManyProductsQueryQuery,
@@ -2091,7 +2111,7 @@ export const ClientProductGalleryQueryDocument = {
export const ClientProductQueryDocument = {
__meta__: {
operationName: 'ClientProductQuery',
- operationHash: '5839f2e715b02f93045c3aa76993ec1072e33f63',
+ operationHash: 'c3d5097bd0ee3df9f81802e5fd59348f3a6785df',
},
} as unknown as TypedDocumentString<
ClientProductQueryQuery,
@@ -2100,7 +2120,7 @@ export const ClientProductQueryDocument = {
export const ClientSearchSuggestionsQueryDocument = {
__meta__: {
operationName: 'ClientSearchSuggestionsQuery',
- operationHash: '930191332cee0b0b30fef83f105855f965c241cf',
+ operationHash: '87b5bfc88c26a2a0b236dc57ad6331e31565c642',
},
} as unknown as TypedDocumentString<
ClientSearchSuggestionsQueryQuery,
diff --git a/packages/core/src/components/product/ProductCard/ProductCard.tsx b/packages/core/src/components/product/ProductCard/ProductCard.tsx
index f81f618cac..628fd8b62d 100644
--- a/packages/core/src/components/product/ProductCard/ProductCard.tsx
+++ b/packages/core/src/components/product/ProductCard/ProductCard.tsx
@@ -154,6 +154,9 @@ export const fragment = gql(`
name
gtin
categoryId
+ categories {
+ name
+ }
isVariantOf {
productGroupID
diff --git a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
index 030ffb4cd1..744ab5c03a 100644
--- a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
+++ b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
@@ -272,6 +272,9 @@ export const fragment = gql(`
name
gtin
categoryId
+ categories {
+ name
+ }
description
unitMultiplier
diff --git a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
index a0dfc1244e..cccf9add65 100644
--- a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
@@ -7,6 +7,8 @@ import type { ProductSummary_ProductFragment } from '@generated/graphql'
import type { AnalyticsItem } from '../types'
+import { createCategoryObject } from '../../../utils/createCategoryObject'
+
type Props = {
products: Array<{ node: ProductSummary_ProductFragment }>
title: string
@@ -44,6 +46,7 @@ export const useViewItemListEvent = ({
currency: code as CurrencyCode,
item_variant_name: product.name,
product_reference_id: product.gtin,
+ // ...createCategoryObject(products.categories.map(item => item.name))
})),
},
})
diff --git a/packages/core/src/utils/createCategoryObject.ts b/packages/core/src/utils/createCategoryObject.ts
new file mode 100644
index 0000000000..985ad25c11
--- /dev/null
+++ b/packages/core/src/utils/createCategoryObject.ts
@@ -0,0 +1,7 @@
+export function createCategoryObject(array: string[]): Record {
+ const result: Record = {}
+ array.forEach((item, index) => {
+ result[`item_category${index + 1}`] = item
+ })
+ return result
+}
From 9ec147357d4a78ba54d832b2774b05372e29945a Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Wed, 14 Aug 2024 19:13:46 -0300
Subject: [PATCH 005/154] feat: event "useViewItemListEvent" returning
categories
---
packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts | 2 +-
packages/core/src/utils/createCategoryObject.ts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
index cccf9add65..6baafe42d4 100644
--- a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
@@ -46,7 +46,7 @@ export const useViewItemListEvent = ({
currency: code as CurrencyCode,
item_variant_name: product.name,
product_reference_id: product.gtin,
- // ...createCategoryObject(products.categories.map(item => item.name))
+ ...createCategoryObject(product.categories.map((item) => item.name)),
})),
},
})
diff --git a/packages/core/src/utils/createCategoryObject.ts b/packages/core/src/utils/createCategoryObject.ts
index 985ad25c11..c73897c1e3 100644
--- a/packages/core/src/utils/createCategoryObject.ts
+++ b/packages/core/src/utils/createCategoryObject.ts
@@ -1,7 +1,7 @@
export function createCategoryObject(array: string[]): Record {
const result: Record = {}
array.forEach((item, index) => {
- result[`item_category${index + 1}`] = item
+ result[`item_category${index ? index + 1 : ''}`] = item
})
return result
}
From ab2a4f2fdfa06e71e5054bc86d6ae5ad29579432 Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Thu, 15 Aug 2024 11:28:26 -0300
Subject: [PATCH 006/154] chore: update GA event "view_item"and "select_item
---
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 18 +++++++++++++++---
.../product/ProductCard/ProductCard.tsx | 7 ++++++-
.../sections/ProductDetails/ProductDetails.tsx | 6 ++++++
.../ui/ProductGallery/ProductGalleryPage.tsx | 2 +-
.../ui/ProductShelf/ProductShelf.tsx | 1 +
.../analytics/hooks/useViewItemListEvent.ts | 2 +-
packages/core/src/sdk/cart/index.ts | 3 +++
packages/core/src/sdk/cart/useBuyButton.ts | 2 ++
.../core/src/sdk/product/useProductLink.ts | 8 ++++++++
10 files changed, 45 insertions(+), 8 deletions(-)
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 5431c5e5dd..727bfc3320 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -38,7 +38,7 @@ const documents = {
types.ServerCollectionPageQueryDocument,
'\n query ServerProductQuery($locator: [IStoreSelectedFacet!]!) {\n ...ServerProduct\n product(locator: $locator) {\n id: productID\n\n seo {\n title\n description\n canonical\n }\n\n brand {\n name\n }\n\n sku\n gtin\n name\n description\n releaseDate\n\n breadcrumbList {\n itemListElement {\n item\n name\n position\n }\n }\n\n image {\n url\n alternateName\n }\n\n offers {\n lowPrice\n highPrice\n lowPriceWithTaxes\n priceCurrency\n offers {\n availability\n price\n priceValidUntil\n priceCurrency\n itemCondition\n seller {\n identifier\n }\n }\n }\n\n isVariantOf {\n productGroupID\n }\n\n ...ProductDetailsFragment_product\n }\n }\n':
types.ServerProductQueryDocument,
- '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
+ '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n categories {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
types.ValidateCartMutationDocument,
'\n mutation SubscribeToNewsletter($data: IPersonNewsletter!) {\n subscribeToNewsletter(data: $data) {\n id\n }\n }\n':
types.SubscribeToNewsletterDocument,
@@ -142,7 +142,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
+ source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n categories {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
): typeof import('./graphql').ValidateCartMutationDocument
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index 87d525bceb..c55b512b48 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -1323,6 +1323,7 @@ export type ValidateCartMutationMutation = {
gtin: string
image: Array<{ url: string; alternateName: string }>
brand: { name: string }
+ categories: Array<{ name: string }>
isVariantOf: {
productGroupID: string
name: string
@@ -1361,6 +1362,7 @@ export type CartItemFragment = {
gtin: string
image: Array<{ url: string; alternateName: string }>
brand: { name: string }
+ categories: Array<{ name: string }>
isVariantOf: {
productGroupID: string
name: string
@@ -1386,6 +1388,7 @@ export type CartProductItemFragment = {
gtin: string
image: Array<{ url: string; alternateName: string }>
brand: { name: string }
+ categories: Array<{ name: string }>
isVariantOf: {
productGroupID: string
name: string
@@ -1775,6 +1778,9 @@ export const CartProductItemFragmentDoc = new TypedDocumentString(
brand {
name
}
+ categories {
+ name
+ }
isVariantOf {
productGroupID
name
@@ -1858,6 +1864,9 @@ export const ProductDetailsFragment_ProductFragmentDoc =
brand {
name
}
+ categories {
+ name
+ }
isVariantOf {
productGroupID
name
@@ -2025,6 +2034,9 @@ export const CartItemFragmentDoc = new TypedDocumentString(
brand {
name
}
+ categories {
+ name
+ }
isVariantOf {
productGroupID
name
@@ -2066,7 +2078,7 @@ export const ServerCollectionPageQueryDocument = {
export const ServerProductQueryDocument = {
__meta__: {
operationName: 'ServerProductQuery',
- operationHash: 'b66995c497b41d1bd968b4cd66d1810a99037308',
+ operationHash: '95a15ae444251c9ab5d244a1deb1e45866aa0925',
},
} as unknown as TypedDocumentString<
ServerProductQueryQuery,
@@ -2075,7 +2087,7 @@ export const ServerProductQueryDocument = {
export const ValidateCartMutationDocument = {
__meta__: {
operationName: 'ValidateCartMutation',
- operationHash: '324471076994dca94a47adcaf1c6b8f7896e1b4f',
+ operationHash: '31351ee7997006c11e5b526e4e0377ba2589b508',
},
} as unknown as TypedDocumentString<
ValidateCartMutationMutation,
@@ -2111,7 +2123,7 @@ export const ClientProductGalleryQueryDocument = {
export const ClientProductQueryDocument = {
__meta__: {
operationName: 'ClientProductQuery',
- operationHash: 'c3d5097bd0ee3df9f81802e5fd59348f3a6785df',
+ operationHash: 'fe46ea558419c9762643e9af6307ddb4b7554da7',
},
} as unknown as TypedDocumentString<
ClientProductQueryQuery,
diff --git a/packages/core/src/components/product/ProductCard/ProductCard.tsx b/packages/core/src/components/product/ProductCard/ProductCard.tsx
index 628fd8b62d..44d536c965 100644
--- a/packages/core/src/components/product/ProductCard/ProductCard.tsx
+++ b/packages/core/src/components/product/ProductCard/ProductCard.tsx
@@ -46,6 +46,10 @@ export interface ProductCardProps {
* Specifies the button's label.
*/
buttonLabel?: string
+ /**
+ * Specifies item list name.
+ */
+ list_name?: string
/**
* Enables a DiscountBadge to the component.
*/
@@ -71,6 +75,7 @@ function ProductCard({
onButtonClick,
showDiscountBadge = true,
taxesConfiguration,
+ list_name,
...otherProps
}: ProductCardProps) {
const {
@@ -85,7 +90,7 @@ function ProductCard({
} = product
const linkProps = {
- ...useProductLink({ product, selectedOffer: 0, index }),
+ ...useProductLink({ product, selectedOffer: 0, index, list_name }),
as: NextLink,
passHref: true,
legacyBehavior: false,
diff --git a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
index 744ab5c03a..1ccaf4a56d 100644
--- a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
+++ b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
@@ -17,6 +17,8 @@ import { useOverrideComponents } from '../../../sdk/overrides/OverrideContext'
import { ProductDetailsDefaultComponents } from './DefaultComponents'
import { getOverridableSection } from '../../../sdk/overrides/getOverriddenSection'
+import { createCategoryObject } from '../../../utils/createCategoryObject'
+
export interface ProductDetailsProps {
productTitle: {
refNumber: boolean
@@ -131,6 +133,9 @@ function ProductDetails({
currency: currency.code as CurrencyCode,
item_variant_name: variantName,
product_reference_id: gtin,
+ ...createCategoryObject(
+ product.categories.map((item) => item.name)
+ ),
},
],
},
@@ -145,6 +150,7 @@ function ProductDetails({
currency.code,
variantName,
gtin,
+ product.categories,
])
const outOfStock = useMemo(
diff --git a/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx b/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx
index d27e22061a..31da0de3bb 100644
--- a/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx
+++ b/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx
@@ -10,7 +10,7 @@ interface Props {
title: string
productCard?: Pick<
ProductCardProps,
- 'showDiscountBadge' | 'bordered' | 'taxesConfiguration'
+ 'showDiscountBadge' | 'bordered' | 'taxesConfiguration' | 'list_name'
>
itemsPerPage: number
}
diff --git a/packages/core/src/components/ui/ProductShelf/ProductShelf.tsx b/packages/core/src/components/ui/ProductShelf/ProductShelf.tsx
index b372b1bed7..c499c8c5d1 100644
--- a/packages/core/src/components/ui/ProductShelf/ProductShelf.tsx
+++ b/packages/core/src/components/ui/ProductShelf/ProductShelf.tsx
@@ -110,6 +110,7 @@ function ProductShelf({
// Dynamic props shouldn't be overridable
// This decision can be reviewed later if needed
key={`${product.node.id}`}
+ list_name={title}
product={product.node}
index={idx + 1}
/>
diff --git a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
index 6baafe42d4..f08911ebe5 100644
--- a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
@@ -26,7 +26,7 @@ export const useViewItemListEvent = ({
currency: { code },
} = useSession()
- console.log(`products33333`, products)
+ //console.log(`products33333`, products)
const sendViewItemListEvent = useCallback(() => {
sendAnalyticsEvent>({
diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts
index 7764237ec0..5e10d0bc34 100644
--- a/packages/core/src/sdk/cart/index.ts
+++ b/packages/core/src/sdk/cart/index.ts
@@ -68,6 +68,9 @@ export const ValidateCartMutation = gql(`
brand {
name
}
+ categories {
+ name
+ }
isVariantOf {
productGroupID
name
diff --git a/packages/core/src/sdk/cart/useBuyButton.ts b/packages/core/src/sdk/cart/useBuyButton.ts
index 5317ed6e79..287849c319 100644
--- a/packages/core/src/sdk/cart/useBuyButton.ts
+++ b/packages/core/src/sdk/cart/useBuyButton.ts
@@ -23,6 +23,8 @@ export const useBuyButton = (item: CartItem | null) => {
return
}
+ console.log(`pdp item`, item)
+
sendAnalyticsEvent>({
name: 'add_to_cart',
params: {
diff --git a/packages/core/src/sdk/product/useProductLink.ts b/packages/core/src/sdk/product/useProductLink.ts
index 488b901a3d..00b52c6b05 100644
--- a/packages/core/src/sdk/product/useProductLink.ts
+++ b/packages/core/src/sdk/product/useProductLink.ts
@@ -7,16 +7,20 @@ import type { ProductSummary_ProductFragment } from '@generated/graphql'
import { useSession } from '../session'
import type { AnalyticsItem, SearchSelectItemEvent } from '../analytics/types'
+import { createCategoryObject } from '../../utils/createCategoryObject'
+
export type ProductLinkOptions = {
index: number
product: ProductSummary_ProductFragment
selectedOffer: number
+ list_name: string
}
export const useProductLink = ({
index,
product,
selectedOffer,
+ list_name,
}: ProductLinkOptions) => {
const { slug } = product
const {
@@ -33,6 +37,7 @@ export const useProductLink = ({
item_name: product.isVariantOf.name,
item_brand: product.brand.name,
item_variant: product.sku,
+ item_list_name: list_name ? list_name : '',
index,
price: product.offers.offers[selectedOffer].price,
discount:
@@ -41,6 +46,9 @@ export const useProductLink = ({
currency: code as CurrencyCode,
item_variant_name: product.name,
product_reference_id: product.gtin,
+ ...createCategoryObject(
+ product.categories.map((item) => item.name)
+ ),
},
],
},
From b897ed282cdb31549008f42f1a310ecdd0141232 Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Thu, 15 Aug 2024 15:40:54 -0300
Subject: [PATCH 007/154] feat: add categories to GA event "add_to_cart
---
packages/api/src/__generated__/schema.ts | 2 ++
packages/api/src/typeDefs/offer.graphql | 4 ++++
packages/api/src/typeDefs/product.graphql | 2 +-
packages/core/src/components/cart/CartItem/CartItem.tsx | 1 +
.../components/ui/ProductDetails/ProductDetailsSettings.tsx | 2 ++
packages/core/src/sdk/cart/index.ts | 6 +++++-
packages/core/src/sdk/cart/useBuyButton.ts | 5 +++++
7 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index c0ab42a222..1570aa5393 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -880,6 +880,8 @@ export type StoreOffer = {
__typename?: 'StoreOffer';
/** Offer item availability. */
availability: Scalars['String'];
+ /** Product categories. */
+ categories: Array;
/** Offer item condition. */
itemCondition: Scalars['String'];
/** Information on the item being offered. */
diff --git a/packages/api/src/typeDefs/offer.graphql b/packages/api/src/typeDefs/offer.graphql
index a77582feb6..76318e041e 100644
--- a/packages/api/src/typeDefs/offer.graphql
+++ b/packages/api/src/typeDefs/offer.graphql
@@ -50,6 +50,10 @@ type StoreOffer {
Number of items offered.
"""
quantity: Int!
+ """
+ Product categories.
+ """
+ categories: [StoreCategoryItem!]!
}
"""
diff --git a/packages/api/src/typeDefs/product.graphql b/packages/api/src/typeDefs/product.graphql
index c050c1f511..3c3bb7bfcc 100644
--- a/packages/api/src/typeDefs/product.graphql
+++ b/packages/api/src/typeDefs/product.graphql
@@ -34,7 +34,7 @@ type StoreProduct {
Product category Id.
"""
categoryId: String!
- """
+ """
Product categories.
"""
categories: [StoreCategoryItem!]!
diff --git a/packages/core/src/components/cart/CartItem/CartItem.tsx b/packages/core/src/components/cart/CartItem/CartItem.tsx
index bf69b115a5..6be2d11bd3 100644
--- a/packages/core/src/components/cart/CartItem/CartItem.tsx
+++ b/packages/core/src/components/cart/CartItem/CartItem.tsx
@@ -74,6 +74,7 @@ function CartItem({
useUnitMultiplier = false,
taxesConfiguration,
}: Props) {
+ console.log(`CartItem`, item)
const btnProps = useRemoveButton(item)
const { sendCartItemEvent } = useCartItemEvent()
diff --git a/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx b/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx
index 97d248ce19..655856a710 100644
--- a/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx
+++ b/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx
@@ -63,6 +63,7 @@ function ProductDetailsSettings({
isVariantOf: { skuVariants },
image: productImages,
additionalProperty,
+ categories,
offers: {
offers: [
{
@@ -85,6 +86,7 @@ function ProductDetailsSettings({
listPriceWithTaxes,
seller,
quantity,
+ categories,
itemOffered: {
sku,
name: variantName,
diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts
index 5e10d0bc34..6d199b114e 100644
--- a/packages/core/src/sdk/cart/index.ts
+++ b/packages/core/src/sdk/cart/index.ts
@@ -16,7 +16,9 @@ import { request } from '../graphql/request'
import { sessionStore } from '../session'
import { createValidationStore, useStore } from '../useStore'
-export interface CartItem extends SDKCartItem, CartItemFragment {}
+export interface CartItem extends SDKCartItem, CartItemFragment {
+ categories: Array<{ name: string }>
+}
export interface Cart extends SDKCart {
messages?: CartMessageFragment[]
@@ -172,6 +174,8 @@ export const useCart = (
const cart = useStore(cartStore)
const isValidating = useStore(validationStore)
+ console.log(`cartStore`, cart)
+
return useMemo(() => {
const cartTotals = cart.items.reduce(
(totals, curr) => {
diff --git a/packages/core/src/sdk/cart/useBuyButton.ts b/packages/core/src/sdk/cart/useBuyButton.ts
index 287849c319..a5ab23cea2 100644
--- a/packages/core/src/sdk/cart/useBuyButton.ts
+++ b/packages/core/src/sdk/cart/useBuyButton.ts
@@ -9,6 +9,8 @@ import { useSession } from '../session'
import { useUI } from '@faststore/ui'
import { cartStore } from './index'
+import { createCategoryObject } from '../../utils/createCategoryObject'
+
export const useBuyButton = (item: CartItem | null) => {
const { openCart } = useUI()
const {
@@ -44,6 +46,9 @@ export const useBuyButton = (item: CartItem | null) => {
currency: code as CurrencyCode,
item_variant_name: item.itemOffered.name,
product_reference_id: item.itemOffered.gtin,
+ ...createCategoryObject(
+ item.categories.map((item: any) => item.name)
+ ),
},
],
},
From 23ba6ce40bbc93b6e0d6e118350455c06ab25cdb Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Thu, 15 Aug 2024 15:48:09 -0300
Subject: [PATCH 008/154] feat: add categories to GA events "remove_from_cart"
and "view_cart
---
.../core/src/components/cart/CartSidebar/CartSidebar.tsx | 5 +++++
packages/core/src/sdk/cart/useRemoveButton.ts | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx b/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
index d20ac2ab23..fe61f49a97 100644
--- a/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
+++ b/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
@@ -15,6 +15,8 @@ import { useCart } from 'src/sdk/cart'
import { useCheckoutButton } from 'src/sdk/cart/useCheckoutButton'
import { useSession } from 'src/sdk/session'
+import { createCategoryObject } from '../../../utils/createCategoryObject'
+
import Gift from '../../ui/Gift'
import CartItem from '../CartItem'
import EmptyCart from '../EmptyCart'
@@ -44,6 +46,9 @@ function useViewCartEvent() {
currency: code as CurrencyCode,
item_variant_name: item.itemOffered.name,
product_reference_id: item.itemOffered.gtin,
+ ...createCategoryObject(
+ item.categories.map((cat: { name: any }) => cat.name)
+ ),
})),
},
})
diff --git a/packages/core/src/sdk/cart/useRemoveButton.ts b/packages/core/src/sdk/cart/useRemoveButton.ts
index f8f2b64511..86bbe70510 100644
--- a/packages/core/src/sdk/cart/useRemoveButton.ts
+++ b/packages/core/src/sdk/cart/useRemoveButton.ts
@@ -8,6 +8,8 @@ import { useSession } from '../session'
import { cartStore } from './index'
import type { CartItem } from '.'
+import { createCategoryObject } from '../../utils/createCategoryObject'
+
export const useRemoveButton = (item: CartItem | null) => {
const {
currency: { code },
@@ -38,6 +40,9 @@ export const useRemoveButton = (item: CartItem | null) => {
currency: code as CurrencyCode,
item_variant_name: item.itemOffered.name,
product_reference_id: item.itemOffered.gtin,
+ ...createCategoryObject(
+ item.categories.map((cat: { name: any }) => cat.name)
+ ),
},
],
},
From 64413451a7963fd0c25f9f97fdf88674d2bb613b Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Thu, 15 Aug 2024 15:51:26 -0300
Subject: [PATCH 009/154] chore: remove consoles
---
packages/core/src/components/cart/CartItem/CartItem.tsx | 1 -
packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts | 2 --
packages/core/src/sdk/cart/index.ts | 2 --
packages/core/src/sdk/cart/useBuyButton.ts | 2 --
4 files changed, 7 deletions(-)
diff --git a/packages/core/src/components/cart/CartItem/CartItem.tsx b/packages/core/src/components/cart/CartItem/CartItem.tsx
index 6be2d11bd3..bf69b115a5 100644
--- a/packages/core/src/components/cart/CartItem/CartItem.tsx
+++ b/packages/core/src/components/cart/CartItem/CartItem.tsx
@@ -74,7 +74,6 @@ function CartItem({
useUnitMultiplier = false,
taxesConfiguration,
}: Props) {
- console.log(`CartItem`, item)
const btnProps = useRemoveButton(item)
const { sendCartItemEvent } = useCartItemEvent()
diff --git a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
index f08911ebe5..df38fe22d9 100644
--- a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
@@ -26,8 +26,6 @@ export const useViewItemListEvent = ({
currency: { code },
} = useSession()
- //console.log(`products33333`, products)
-
const sendViewItemListEvent = useCallback(() => {
sendAnalyticsEvent>({
name: 'view_item_list',
diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts
index 6d199b114e..9f209f553d 100644
--- a/packages/core/src/sdk/cart/index.ts
+++ b/packages/core/src/sdk/cart/index.ts
@@ -174,8 +174,6 @@ export const useCart = (
const cart = useStore(cartStore)
const isValidating = useStore(validationStore)
- console.log(`cartStore`, cart)
-
return useMemo(() => {
const cartTotals = cart.items.reduce(
(totals, curr) => {
diff --git a/packages/core/src/sdk/cart/useBuyButton.ts b/packages/core/src/sdk/cart/useBuyButton.ts
index a5ab23cea2..bd5056cb10 100644
--- a/packages/core/src/sdk/cart/useBuyButton.ts
+++ b/packages/core/src/sdk/cart/useBuyButton.ts
@@ -25,8 +25,6 @@ export const useBuyButton = (item: CartItem | null) => {
return
}
- console.log(`pdp item`, item)
-
sendAnalyticsEvent>({
name: 'add_to_cart',
params: {
From bf42f940cfbec3d1d1f113e6aaed5bc7b9b0601d Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Thu, 15 Aug 2024 16:03:16 -0300
Subject: [PATCH 010/154] fix: parse search prop for GA event
---
.../components/search/SearchProductItem/SearchProductItem.tsx | 3 +++
1 file changed, 3 insertions(+)
diff --git a/packages/core/src/components/search/SearchProductItem/SearchProductItem.tsx b/packages/core/src/components/search/SearchProductItem/SearchProductItem.tsx
index 6a6f168f35..d2a990870a 100644
--- a/packages/core/src/components/search/SearchProductItem/SearchProductItem.tsx
+++ b/packages/core/src/components/search/SearchProductItem/SearchProductItem.tsx
@@ -30,10 +30,13 @@ function SearchProductItem({
values: { onSearchSelection },
} = useSearch()
+ const list_name = 'search'
+
const { href, onClick, ...baseLinkProps } = useProductLink({
product,
selectedOffer: 0,
index,
+ list_name,
})
const {
From 47d4f1a2ed1a88a31d2514bd466bac53ed9e1d29 Mon Sep 17 00:00:00 2001
From: Lucas Vyskubenko
Date: Thu, 15 Aug 2024 16:19:13 -0300
Subject: [PATCH 011/154] fix: list issues
---
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 25 ++++++++++---------------
packages/core/src/sdk/cart/index.ts | 6 +++---
3 files changed, 15 insertions(+), 20 deletions(-)
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 727bfc3320..f92b4089d1 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -38,7 +38,7 @@ const documents = {
types.ServerCollectionPageQueryDocument,
'\n query ServerProductQuery($locator: [IStoreSelectedFacet!]!) {\n ...ServerProduct\n product(locator: $locator) {\n id: productID\n\n seo {\n title\n description\n canonical\n }\n\n brand {\n name\n }\n\n sku\n gtin\n name\n description\n releaseDate\n\n breadcrumbList {\n itemListElement {\n item\n name\n position\n }\n }\n\n image {\n url\n alternateName\n }\n\n offers {\n lowPrice\n highPrice\n lowPriceWithTaxes\n priceCurrency\n offers {\n availability\n price\n priceValidUntil\n priceCurrency\n itemCondition\n seller {\n identifier\n }\n }\n }\n\n isVariantOf {\n productGroupID\n }\n\n ...ProductDetailsFragment_product\n }\n }\n':
types.ServerProductQueryDocument,
- '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n categories {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
+ '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n categories {\n name\n }\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
types.ValidateCartMutationDocument,
'\n mutation SubscribeToNewsletter($data: IPersonNewsletter!) {\n subscribeToNewsletter(data: $data) {\n id\n }\n }\n':
types.SubscribeToNewsletterDocument,
@@ -142,7 +142,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n categories {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
+ source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n categories {\n name\n }\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
): typeof import('./graphql').ValidateCartMutationDocument
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index c55b512b48..1083f5bfd7 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -841,6 +841,8 @@ export type StoreListItem = {
export type StoreOffer = {
/** Offer item availability. */
availability: Scalars['String']['output']
+ /** Product categories. */
+ categories: Array
/** Offer item condition. */
itemCondition: Scalars['String']['output']
/** Information on the item being offered. */
@@ -1316,6 +1318,7 @@ export type ValidateCartMutationMutation = {
listPrice: number
listPriceWithTaxes: number
seller: { identifier: string }
+ categories: Array<{ name: string }>
itemOffered: {
sku: string
name: string
@@ -1323,7 +1326,6 @@ export type ValidateCartMutationMutation = {
gtin: string
image: Array<{ url: string; alternateName: string }>
brand: { name: string }
- categories: Array<{ name: string }>
isVariantOf: {
productGroupID: string
name: string
@@ -1355,6 +1357,7 @@ export type CartItemFragment = {
listPrice: number
listPriceWithTaxes: number
seller: { identifier: string }
+ categories: Array<{ name: string }>
itemOffered: {
sku: string
name: string
@@ -1362,7 +1365,6 @@ export type CartItemFragment = {
gtin: string
image: Array<{ url: string; alternateName: string }>
brand: { name: string }
- categories: Array<{ name: string }>
isVariantOf: {
productGroupID: string
name: string
@@ -1388,7 +1390,6 @@ export type CartProductItemFragment = {
gtin: string
image: Array<{ url: string; alternateName: string }>
brand: { name: string }
- categories: Array<{ name: string }>
isVariantOf: {
productGroupID: string
name: string
@@ -1778,9 +1779,6 @@ export const CartProductItemFragmentDoc = new TypedDocumentString(
brand {
name
}
- categories {
- name
- }
isVariantOf {
productGroupID
name
@@ -1864,9 +1862,6 @@ export const ProductDetailsFragment_ProductFragmentDoc =
brand {
name
}
- categories {
- name
- }
isVariantOf {
productGroupID
name
@@ -2019,6 +2014,9 @@ export const CartItemFragmentDoc = new TypedDocumentString(
priceWithTaxes
listPrice
listPriceWithTaxes
+ categories {
+ name
+ }
itemOffered {
...CartProductItem
}
@@ -2034,9 +2032,6 @@ export const CartItemFragmentDoc = new TypedDocumentString(
brand {
name
}
- categories {
- name
- }
isVariantOf {
productGroupID
name
@@ -2078,7 +2073,7 @@ export const ServerCollectionPageQueryDocument = {
export const ServerProductQueryDocument = {
__meta__: {
operationName: 'ServerProductQuery',
- operationHash: '95a15ae444251c9ab5d244a1deb1e45866aa0925',
+ operationHash: 'b66995c497b41d1bd968b4cd66d1810a99037308',
},
} as unknown as TypedDocumentString<
ServerProductQueryQuery,
@@ -2087,7 +2082,7 @@ export const ServerProductQueryDocument = {
export const ValidateCartMutationDocument = {
__meta__: {
operationName: 'ValidateCartMutation',
- operationHash: '31351ee7997006c11e5b526e4e0377ba2589b508',
+ operationHash: 'dbc28779ac0f1e3cbaa0b85c28531029046eebe1',
},
} as unknown as TypedDocumentString<
ValidateCartMutationMutation,
@@ -2123,7 +2118,7 @@ export const ClientProductGalleryQueryDocument = {
export const ClientProductQueryDocument = {
__meta__: {
operationName: 'ClientProductQuery',
- operationHash: 'fe46ea558419c9762643e9af6307ddb4b7554da7',
+ operationHash: 'c3d5097bd0ee3df9f81802e5fd59348f3a6785df',
},
} as unknown as TypedDocumentString<
ClientProductQueryQuery,
diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts
index 9f209f553d..4a2866de54 100644
--- a/packages/core/src/sdk/cart/index.ts
+++ b/packages/core/src/sdk/cart/index.ts
@@ -54,6 +54,9 @@ export const ValidateCartMutation = gql(`
priceWithTaxes
listPrice
listPriceWithTaxes
+ categories {
+ name
+ }
itemOffered {
...CartProductItem
}
@@ -70,9 +73,6 @@ export const ValidateCartMutation = gql(`
brand {
name
}
- categories {
- name
- }
isVariantOf {
productGroupID
name
From ff12ccfdf1cc909dc708912fa5b0c95e6aaaef57 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 19 Aug 2024 20:47:32 -0300
Subject: [PATCH 012/154] Chore(deps): Bump braces from 3.0.2 to 3.0.3 (#2345)
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to
3.0.3.
Commits
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=braces&package-manager=npm_and_yarn&previous-version=3.0.2&new-version=3.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/vtex/faststore/network/alerts).
> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
yarn.lock | 47 ++++++++++++++++++++++++++++++++++++-----------
1 file changed, 36 insertions(+), 11 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 66c5c3fe07..2b4397868c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5577,11 +5577,11 @@ brace-expansion@^2.0.1:
balanced-match "^1.0.0"
braces@^3.0.2, braces@~3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
- integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
+ integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
dependencies:
- fill-range "^7.0.1"
+ fill-range "^7.1.1"
browserslist@^4.21.3, browserslist@^4.21.4:
version "4.21.4"
@@ -8996,10 +8996,10 @@ filelist@^1.0.4:
dependencies:
minimatch "^5.0.1"
-fill-range@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
- integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+fill-range@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
+ integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
dependencies:
to-regex-range "^5.0.1"
@@ -16987,7 +16987,7 @@ string-similarity@^4.0.1:
resolved "https://registry.yarnpkg.com/string-similarity/-/string-similarity-4.0.4.tgz#42d01ab0b34660ea8a018da8f56a3309bb8b2a5b"
integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==
-"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+"string-width-cjs@npm:string-width@^4.2.0":
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -17005,6 +17005,15 @@ string-width@^1.0.1:
is-fullwidth-code-point "^1.0.0"
strip-ansi "^3.0.0"
+"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
@@ -17099,7 +17108,7 @@ stringify-entities@^4.0.0:
character-entities-html4 "^2.0.0"
character-entities-legacy "^3.0.0"
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -17127,6 +17136,13 @@ strip-ansi@^5.1.0:
dependencies:
ansi-regex "^4.1.0"
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
strip-ansi@^7.0.1, strip-ansi@^7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
@@ -18829,7 +18845,7 @@ wordwrap@^1.0.0:
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -18863,6 +18879,15 @@ wrap-ansi@^6.0.1, wrap-ansi@^6.2.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
wrap-ansi@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
From f8acb467c49fad7ef64e577ed8d592b1a29a6d4a Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 21 Aug 2024 22:07:01 -0300
Subject: [PATCH 013/154] Chore(deps): Bump axios from 1.6.8 to 1.7.4 (#2418)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [axios](https://github.com/axios/axios) from 1.6.8 to 1.7.4.
Release notes
Sourced from axios's
releases .
Release v1.7.4
Release notes:
Bug Fixes
Contributors to this release
Release v1.7.3
Release notes:
Bug Fixes
adapter: fix progress event emitting; (#6518 )
(e3c76fc )
fetch: fix withCredentials request config (#6505 )
(85d4d0e )
xhr: return original config on errors from XHR
adapter (#6515 )
(8966ee7 )
Contributors to this release
Release v1.7.2
Release notes:
Bug Fixes
Contributors to this release
Release v1.7.1
Release notes:
Bug Fixes
fetch: fixed ReferenceError issue when TextEncoder
is not available in the environment; (#6410 )
(733f15f )
Contributors to this release
Release v1.7.0
Release notes:
Features
... (truncated)
Changelog
Sourced from axios's
changelog .
1.7.4
(2024-08-13)
Bug Fixes
Contributors to this release
1.7.3
(2024-08-01)
Bug Fixes
adapter: fix progress event emitting; (#6518 )
(e3c76fc )
fetch: fix withCredentials request config (#6505 )
(85d4d0e )
xhr: return original config on errors from XHR
adapter (#6515 )
(8966ee7 )
Contributors to this release
1.7.2
(2024-05-21)
Bug Fixes
Contributors to this release
1.7.1
(2024-05-20)
Bug Fixes
fetch: fixed ReferenceError issue when TextEncoder
is not available in the environment; (#6410 )
(733f15f )
Contributors to this release
... (truncated)
Commits
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.8&new-version=1.7.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/vtex/faststore/network/alerts).
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 2b4397868c..91f73b9573 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5315,9 +5315,9 @@ axe-core@^4.8.1:
integrity sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==
axios@^1.6.0:
- version "1.6.8"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.8.tgz#66d294951f5d988a00e87a0ffb955316a619ea66"
- integrity sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.4.tgz#4c8ded1b43683c8dd362973c393f3ede24052aa2"
+ integrity sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==
dependencies:
follow-redirects "^1.15.6"
form-data "^4.0.0"
From c87448153f3cd42850fcc8aa7666268c4256856f Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 22 Aug 2024 01:12:49 +0000
Subject: [PATCH 014/154] [no ci] Release: 3.0.94
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 14 +++++++-------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 7095ca9bab..54e2992ccc 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.89",
+ "version": "3.0.94",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.88",
- "@faststore/sdk": "^3.0.88",
- "@faststore/ui": "^3.0.89",
+ "@faststore/api": "^3.0.94",
+ "@faststore/sdk": "^3.0.94",
+ "@faststore/ui": "^3.0.94",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index aa0308fbd7..1d3a620948 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.93",
+ "version": "3.0.94",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 00f07030ee..048472d8ae 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.88",
+ "version": "3.0.94",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^2.6.0",
- "@faststore/eslint-config": "^3.0.88",
- "@faststore/shared": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
+ "@faststore/shared": "^3.0.94",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index b25cdcfaf1..69a49f2436 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.93 linux-x64 node-v18.20.4
+@faststore/cli/3.0.94 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.93/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 41edefe0c3..c5fc5ec15e 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.93",
+ "version": "3.0.94",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.93",
+ "@faststore/core": "^3.0.94",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -31,8 +31,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.88",
- "@faststore/shared": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
+ "@faststore/shared": "^3.0.94",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index ac6b81ff8f..75ea4aad1c 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.89",
+ "version": "3.0.94",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.88",
- "@faststore/shared": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
+ "@faststore/shared": "^3.0.94",
"@testing-library/react": "^14.3.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
diff --git a/packages/core/package.json b/packages/core/package.json
index 042080f291..36aa96d844 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.93",
+ "version": "3.0.94",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,11 +43,11 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.88",
- "@faststore/components": "^3.0.89",
- "@faststore/graphql-utils": "^3.0.88",
- "@faststore/sdk": "^3.0.88",
- "@faststore/ui": "^3.0.89",
+ "@faststore/api": "^3.0.94",
+ "@faststore/components": "^3.0.94",
+ "@faststore/graphql-utils": "^3.0.94",
+ "@faststore/sdk": "^3.0.94",
+ "@faststore/ui": "^3.0.94",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -88,7 +88,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
"@faststore/lighthouse": "^1.12.32",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index 080b3486dc..7911986c3c 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.88",
+ "version": "3.0.94",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index 8f14121e28..d13fe6b33c 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.88",
+ "version": "3.0.94",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.88",
- "@faststore/shared": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
+ "@faststore/shared": "^3.0.94",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 06cc0b3278..9233a69f53 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.88",
+ "version": "3.0.94",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.88",
- "@faststore/shared": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
+ "@faststore/shared": "^3.0.94",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 61ceccc3a5..e84a84f3cc 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.88",
+ "version": "3.0.94",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.88",
+ "@faststore/shared": "^3.0.94",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 4892a7c318..4e37e41ffc 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.88",
+ "version": "3.0.94",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 3c3a96465f..26bcf6afd3 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.89",
+ "version": "3.0.94",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.89",
+ "@faststore/components": "^3.0.94",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.88",
- "@faststore/shared": "^3.0.88",
+ "@faststore/eslint-config": "^3.0.94",
+ "@faststore/shared": "^3.0.94",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From 44234ba882579265220dd27d0060a6320d3c96d6 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Thu, 22 Aug 2024 16:22:28 -0300
Subject: [PATCH 015/154] metatag generated at (#2417)
## What's the purpose of this pull request?
create a metatag in build time in order to know when the build was
created.
## How it works?
using the faststore cli we generate a date and insert on store html
## How to test it?
finding the `data-generated-at` metatag on source code.
### Starters Deploy Preview
## References
---
packages/cli/src/commands/build.ts | 8 ++--
packages/cli/src/utils/commands.ts | 9 ++++-
packages/cli/src/utils/directory.ts | 3 +-
packages/cli/src/utils/generate.ts | 63 ++++++++++++++++++++++-------
packages/core/next-env.d.ts | 1 +
packages/core/next-seo.config.ts | 16 ++++++++
packages/core/src/pages/_app.tsx | 15 +++----
7 files changed, 83 insertions(+), 32 deletions(-)
create mode 100644 packages/core/next-seo.config.ts
diff --git a/packages/cli/src/commands/build.ts b/packages/cli/src/commands/build.ts
index 519a9124ba..c505bbaa16 100644
--- a/packages/cli/src/commands/build.ts
+++ b/packages/cli/src/commands/build.ts
@@ -3,17 +3,17 @@ import chalk from 'chalk'
import { spawnSync } from 'child_process'
import { existsSync } from 'fs'
import { copySync, moveSync, readdirSync, removeSync } from 'fs-extra'
+import { getPreferredPackageManager } from '../utils/commands'
import { withBasePath } from '../utils/directory'
import { generate } from '../utils/generate'
-import { getPreferredPackageManager } from '../utils/commands'
export default class Build extends Command {
-
static args = [
{
name: 'path',
- description: 'The path where the FastStore being built is. Defaults to cwd.',
- }
+ description:
+ 'The path where the FastStore being built is. Defaults to cwd.',
+ },
]
async run() {
diff --git a/packages/cli/src/utils/commands.ts b/packages/cli/src/utils/commands.ts
index 8dea84545c..35240cd616 100644
--- a/packages/cli/src/utils/commands.ts
+++ b/packages/cli/src/utils/commands.ts
@@ -1,8 +1,13 @@
-import { spawnSync } from "node:child_process"
+import { spawnSync } from 'node:child_process'
// Retrieves the package manager based on the developer lockfile, using `ni`.
export function getPreferredPackageManager() {
- const agent = spawnSync("na", ['\?'], { encoding: 'utf8', shell: true }).stdout.trim()
+ const agent = spawnSync('na', ['?'], {
+ encoding: 'utf8',
+ shell: true,
+ }).stdout.trim()
+
+ if (agent === '') return 'yarn' // Default to Yarn
return agent
}
diff --git a/packages/cli/src/utils/directory.ts b/packages/cli/src/utils/directory.ts
index f331c8ccf1..2c711b63a4 100644
--- a/packages/cli/src/utils/directory.ts
+++ b/packages/cli/src/utils/directory.ts
@@ -53,7 +53,8 @@ export const withBasePath = (basepath: string) => {
userThemesFileDir: path.join(userSrcDir, 'themes'),
userCMSDir: path.join(getRoot(), 'cms', 'faststore'),
userStoreConfigFile: path.join(getRoot(), 'faststore.config.js'),
-
+
+ tmpSeoConfig: path.join(tmpDir, 'next-seo.config.ts'),
tmpFolderName,
tmpDir,
tmpCustomizationsSrcDir: path.join(tmpDir, 'src', 'customizations', 'src'),
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index 7a2564f33f..55f9ee6db0 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -7,6 +7,7 @@ import {
readFileSync,
readdirSync,
removeSync,
+ writeFileSync,
writeJsonSync,
} from 'fs-extra'
import path from 'path'
@@ -65,7 +66,7 @@ const TS_CONFIG_STRICT_RULES_ENABLED = ['noImplicitAny'] as const
/**
* Modify TypeScript compilation settings (tsconfig.json) to disable specific strict
- * type checking rules when files are moved to the .faststore folder.
+ * type checking rules when files are moved to the .faststore folder.
* TODO: The idea is to change the strict to false when all strict rules are migrated.
*/
function disableTsConfigStrictRules(basePath: string) {
@@ -76,7 +77,7 @@ function disableTsConfigStrictRules(basePath: string) {
const coreTsConfigFile = readFileSync(coreTsConfigPath, 'utf8')
const tsConfig = JSON.parse(coreTsConfigFile)
- TS_CONFIG_STRICT_RULES_ENABLED.forEach(strictRule => {
+ TS_CONFIG_STRICT_RULES_ENABLED.forEach((strictRule) => {
tsConfig.compilerOptions[strictRule] = false
})
@@ -138,12 +139,16 @@ async function copyCypressFiles(basePath: string) {
try {
// Cypress 9.x config file
if (existsSync(`${userDir}/cypress.json`)) {
- copySync(`${userDir}/cypress.json`, `${tmpDir}/cypress.json`, { dereference: true })
+ copySync(`${userDir}/cypress.json`, `${tmpDir}/cypress.json`, {
+ dereference: true,
+ })
}
// Cypress 12.x config file
if (existsSync(`${userDir}/cypress.config.ts`)) {
- copySync(`${userDir}/cypress.config.ts`, `${tmpDir}/cypress.config.ts`, { dereference: true })
+ copySync(`${userDir}/cypress.config.ts`, `${tmpDir}/cypress.config.ts`, {
+ dereference: true,
+ })
}
const userStoreConfig = await import(path.resolve(userStoreConfigFile))
@@ -155,7 +160,7 @@ async function copyCypressFiles(basePath: string) {
) {
copySync(`${userDir}/cypress`, `${tmpDir}/cypress`, {
overwrite: true,
- dereference: true
+ dereference: true,
})
console.log(`${chalk.green('success')} - Cypress test files copied`)
@@ -175,7 +180,12 @@ async function copyCypressFiles(basePath: string) {
}
function copyUserStarterToCustomizations(basePath: string) {
- const { userSrcDir, tmpCustomizationsSrcDir, userStoreConfigFile, tmpStoreConfigFile } = withBasePath(basePath)
+ const {
+ userSrcDir,
+ tmpCustomizationsSrcDir,
+ userStoreConfigFile,
+ tmpStoreConfigFile,
+ } = withBasePath(basePath)
try {
if (existsSync(userSrcDir) && readdirSync(userSrcDir).length > 0) {
@@ -203,11 +213,7 @@ async function createCmsWebhookUrlsJsonFile(basePath: string) {
const { webhookUrls } = userStoreConfig?.vtexHeadlessCms
try {
- writeJsonSync(
- tmpCMSWebhookUrlsFile,
- { urls: webhookUrls },
- { spaces: 2 }
- )
+ writeJsonSync(tmpCMSWebhookUrlsFile, { urls: webhookUrls }, { spaces: 2 })
console.log(`${chalk.green('success')} - CMS webhook URLs file created`)
} catch (err) {
console.error(`${chalk.red('error')} - ${err}`)
@@ -218,7 +224,11 @@ async function createCmsWebhookUrlsJsonFile(basePath: string) {
}
async function copyTheme(basePath: string) {
- const { userStoreConfigFile, userThemesFileDir, tmpThemesCustomizationsFile } = withBasePath(basePath)
+ const {
+ userStoreConfigFile,
+ userThemesFileDir,
+ tmpThemesCustomizationsFile,
+ } = withBasePath(basePath)
const storeConfig = await import(path.resolve(userStoreConfigFile))
if (storeConfig.theme) {
const customTheme = path.join(
@@ -229,7 +239,8 @@ async function copyTheme(basePath: string) {
try {
copyFileSync(customTheme, tmpThemesCustomizationsFile)
console.log(
- `${chalk.green('success')} - ${storeConfig.theme
+ `${chalk.green('success')} - ${
+ storeConfig.theme
} theme has been applied`
)
} catch (err) {
@@ -237,8 +248,10 @@ async function copyTheme(basePath: string) {
}
} else {
console.info(
- `${chalk.blue('info')} - The ${storeConfig.theme
- } theme was added to the config file but the ${storeConfig.theme
+ `${chalk.blue('info')} - The ${
+ storeConfig.theme
+ } theme was added to the config file but the ${
+ storeConfig.theme
}.scss file does not exist in the themes folder. Read more: https://www.faststore.dev/docs/themes/overview`
)
}
@@ -254,6 +267,25 @@ async function copyTheme(basePath: string) {
}
}
+function updateBuildTime(basePath: string) {
+ try {
+ const { tmpSeoConfig } = withBasePath(basePath)
+ let config = readFileSync(tmpSeoConfig, 'utf8')
+ const newBuildTime = new Date().toISOString()
+
+ config = config.replace(
+ /const buildTime = .*?;/,
+ `const buildTime = '${newBuildTime}';`
+ )
+
+ writeFileSync(tmpSeoConfig, config)
+
+ console.log(`${chalk.green('success')} - Build time updated`, newBuildTime)
+ } catch (error) {
+ console.error(`${chalk.red('error')} - Updating build time:`, error)
+ }
+}
+
export async function generate(options: GenerateOptions) {
const { basePath, setup = false } = options
@@ -270,6 +302,7 @@ export async function generate(options: GenerateOptions) {
await Promise.all([
setupPromise,
+ updateBuildTime(basePath),
copyUserStarterToCustomizations(basePath),
copyTheme(basePath),
createCmsWebhookUrlsJsonFile(basePath),
diff --git a/packages/core/next-env.d.ts b/packages/core/next-env.d.ts
index 4f11a03dc6..fd36f9494e 100644
--- a/packages/core/next-env.d.ts
+++ b/packages/core/next-env.d.ts
@@ -1,5 +1,6 @@
///
///
+///
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
diff --git a/packages/core/next-seo.config.ts b/packages/core/next-seo.config.ts
new file mode 100644
index 0000000000..d6c0066d51
--- /dev/null
+++ b/packages/core/next-seo.config.ts
@@ -0,0 +1,16 @@
+import { DefaultSeoProps } from 'next-seo'
+import storeConfig from './faststore.config'
+
+const buildTime = new Date().toISOString()
+
+const config: DefaultSeoProps = {
+ norobots: storeConfig.experimental.noRobots,
+ additionalMetaTags: [
+ {
+ name: 'generated-at',
+ content: buildTime,
+ },
+ ],
+}
+
+export default config
diff --git a/packages/core/src/pages/_app.tsx b/packages/core/src/pages/_app.tsx
index baf6f53fec..4335056e0d 100644
--- a/packages/core/src/pages/_app.tsx
+++ b/packages/core/src/pages/_app.tsx
@@ -1,17 +1,12 @@
-// FastStore UI's base styles
-import '../styles/global/index.scss'
-
-import '../customizations/src/themes/index.scss'
-
+import { UIProvider } from '@faststore/ui'
import type { AppProps } from 'next/app'
import NextNProgress from 'nextjs-progressbar'
-
-import { UIProvider } from '@faststore/ui'
import Layout from 'src/Layout'
import AnalyticsHandler from 'src/sdk/analytics'
import ErrorBoundary from 'src/sdk/error/ErrorBoundary'
-
-import storeConfig from '../../faststore.config'
+import SEO from '../../next-seo.config'
+import '../customizations/src/themes/index.scss'
+import '../styles/global/index.scss'
import { DefaultSeo } from 'next-seo'
@@ -24,7 +19,7 @@ function App({ Component, pageProps }: AppProps) {
options={{ showSpinner: false }}
/>
-
+
From a548fc594acace26d628d4b7cd0f2c1098782ca5 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Thu, 22 Aug 2024 22:57:54 -0300
Subject: [PATCH 016/154] release: FastStore core v3.0.94 (#2421)
#2417 follow-up.
Adds generated-at metatag on source code to identify when the build was
created.
---
packages/core/next-env.d.ts | 1 -
1 file changed, 1 deletion(-)
diff --git a/packages/core/next-env.d.ts b/packages/core/next-env.d.ts
index fd36f9494e..4f11a03dc6 100644
--- a/packages/core/next-env.d.ts
+++ b/packages/core/next-env.d.ts
@@ -1,6 +1,5 @@
///
///
-///
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
From 75f7614df6bfaa0441500d45dc1fe7fb31242558 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 23 Aug 2024 02:03:22 +0000
Subject: [PATCH 017/154] [no ci] Release: 3.0.95
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 14 +++++++-------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 54e2992ccc..8b06a5813a 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.94",
+ "version": "3.0.95",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.94",
- "@faststore/sdk": "^3.0.94",
- "@faststore/ui": "^3.0.94",
+ "@faststore/api": "^3.0.95",
+ "@faststore/sdk": "^3.0.95",
+ "@faststore/ui": "^3.0.95",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 1d3a620948..cf652a0a05 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.94",
+ "version": "3.0.95",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 048472d8ae..bf96861457 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.94",
+ "version": "3.0.95",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^2.6.0",
- "@faststore/eslint-config": "^3.0.94",
- "@faststore/shared": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
+ "@faststore/shared": "^3.0.95",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 69a49f2436..a85011b8b6 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.94 linux-x64 node-v18.20.4
+@faststore/cli/3.0.95 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.94/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index c5fc5ec15e..e246bec766 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.94",
+ "version": "3.0.95",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.94",
+ "@faststore/core": "^3.0.95",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -31,8 +31,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.94",
- "@faststore/shared": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
+ "@faststore/shared": "^3.0.95",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 75ea4aad1c..8ae400e522 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.94",
+ "version": "3.0.95",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.94",
- "@faststore/shared": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
+ "@faststore/shared": "^3.0.95",
"@testing-library/react": "^14.3.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
diff --git a/packages/core/package.json b/packages/core/package.json
index 36aa96d844..1715427c05 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.94",
+ "version": "3.0.95",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,11 +43,11 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.94",
- "@faststore/components": "^3.0.94",
- "@faststore/graphql-utils": "^3.0.94",
- "@faststore/sdk": "^3.0.94",
- "@faststore/ui": "^3.0.94",
+ "@faststore/api": "^3.0.95",
+ "@faststore/components": "^3.0.95",
+ "@faststore/graphql-utils": "^3.0.95",
+ "@faststore/sdk": "^3.0.95",
+ "@faststore/ui": "^3.0.95",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -88,7 +88,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
"@faststore/lighthouse": "^1.12.32",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index 7911986c3c..6983428d74 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.94",
+ "version": "3.0.95",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index d13fe6b33c..18b102a3b3 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.94",
+ "version": "3.0.95",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.94",
- "@faststore/shared": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
+ "@faststore/shared": "^3.0.95",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 9233a69f53..c6debfda0b 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.94",
+ "version": "3.0.95",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.94",
- "@faststore/shared": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
+ "@faststore/shared": "^3.0.95",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index e84a84f3cc..5007c04caf 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.94",
+ "version": "3.0.95",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.94",
+ "@faststore/shared": "^3.0.95",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 4e37e41ffc..efb3f0db7c 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.94",
+ "version": "3.0.95",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 26bcf6afd3..a451920deb 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.94",
+ "version": "3.0.95",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.94",
+ "@faststore/components": "^3.0.95",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.94",
- "@faststore/shared": "^3.0.94",
+ "@faststore/eslint-config": "^3.0.95",
+ "@faststore/shared": "^3.0.95",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From af0de616b37fbe6a1511fb17ba01e9ae38e65efd Mon Sep 17 00:00:00 2001
From: ataideverton <56592231+ataideverton@users.noreply.github.com>
Date: Mon, 2 Sep 2024 11:18:53 -0300
Subject: [PATCH 018/154] Feat: Adds Card Component (#2398)
## What's the purpose of this pull request?
- To add the card component. The card component is integral part of the
B2B Self Management design but it's also a generic component and
according to the design team, will be used on things like MyAccount in
the future.
![image](https://github.com/user-attachments/assets/897c55b5-63be-40c6-a8ec-51153c098d81)
[Figma](https://www.figma.com/proto/r3swf1BAZB3yJa9FrgcyXx/Buyer-Organizations-%C2%B7-2024?node-id=128-37169&t=SCMy7ME6H9mqtsiN-0&scaling=min-zoom&page-id=128%3A31910)
## How to test it?
### Starters Deploy Preview
[Preview](https://sfj-8b4430d--b2bfaststoredev.preview.vtex.app/self-management)
[PR on
Starter](https://github.com/vtex-sites/b2bfaststoredev.store/pull/88)
---
apps/site/pages/components/molecules/card.mdx | 197 ++++++++++++++++++
packages/components/src/index.ts | 7 +
.../components/src/molecules/Card/Card.tsx | 54 +++++
.../components/src/molecules/Card/index.ts | 2 +
.../src/components/molecules/Card/styles.scss | 47 +++++
packages/ui/src/styles/components.scss | 2 +
6 files changed, 309 insertions(+)
create mode 100644 apps/site/pages/components/molecules/card.mdx
create mode 100644 packages/components/src/molecules/Card/Card.tsx
create mode 100644 packages/components/src/molecules/Card/index.ts
create mode 100644 packages/ui/src/components/molecules/Card/styles.scss
diff --git a/apps/site/pages/components/molecules/card.mdx b/apps/site/pages/components/molecules/card.mdx
new file mode 100644
index 0000000000..74999d4356
--- /dev/null
+++ b/apps/site/pages/components/molecules/card.mdx
@@ -0,0 +1,197 @@
+---
+description: Display some information divided into a body and a header.
+---
+
+import path from 'path'
+import { useSSG } from 'nextra/ssg'
+import { Tab, Tabs } from 'nextra-theme-docs'
+import PropsSection from 'site/components/PropsSection'
+import { TokenTable, TokenRow, TokenDivider } from 'site/components/Tokens'
+import { OverviewSection } from 'site/components/OverviewSection'
+import { Card } from '@faststore/ui'
+import { getComponentPropsFrom } from 'site/components/utilities/propsSection'
+
+export const getStaticProps = () => {
+ const cardPath = path.resolve(__filename)
+ const components = ['Card.tsx']
+ const [cardProps] = getComponentPropsFrom(cardPath, components)
+ return {
+ props: {
+ // We add an `ssg` field to the page props,
+ // which will be provided to the Nextra `useSSG` hook.
+ ssg: {
+ cardProps,
+ },
+ },
+ }
+}
+
+export const CardPropsSection = ({ component }) => {
+ // Get the data from SSG, and render it as a component.
+ const { cardProps } = useSSG()
+ return {
+ Card: ,
+ }[component]
+}
+
+
+
+# Card
+
+Card displays some information divided into a body and a header.
+
+
+
+## Overview
+
+
+
+
+
+ First Product
+
+ Second Product
+
+
+
+
+
+ Message
+
+
+
+
+ ```tsx
+
+ First Product
+
+ Second Product
+
+ ```
+
+ ```tsx
+
+ Message
+
+ ```
+
+
+ Code Example
+
+
+
+
+---
+
+## Import
+
+Import the component from [@faststore/ui](/../components)
+
+```tsx
+import { Card } from '@faststore/ui'
+```
+
+### Import Styles into your FastStore project
+
+To apply the styles of this component in your FastStore project, import the following into your stylesheet:
+
+```scss copy
+@import '@faststore/ui/src/components/molecules/Card/styles.scss';
+```
+
+Follow the instructions in the [Importing FastStore UI component styles](/docs/customizing/importing-styles-to-faststore-ui-components) tutorial.
+
+---
+
+## Usage
+
+
+
+ First Product
+
+ Second Product
+
+
+```tsx
+
+ First Product
+
+ Second Product
+
+```
+
+---
+
+## Props
+
+
+
+---
+
+## Design Tokens
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+---
+
+## Customization
+
+For further customization, you can use the following data attributes:
+
+`data-fs-card`
+
+`data-fs-card-header`
+
+`data-fs-card-title`
+
+`data-fs-card-body`
+
+---
diff --git a/packages/components/src/index.ts b/packages/components/src/index.ts
index fbe63d3f5b..3764572943 100644
--- a/packages/components/src/index.ts
+++ b/packages/components/src/index.ts
@@ -67,6 +67,13 @@ export type {
CarouselBulletsProps,
} from './molecules/Carousel'
+export {
+ default as Card
+} from './molecules/Card'
+export type {
+ CardProps
+} from './molecules/Card'
+
export {
default as CartItem,
CartItemImage,
diff --git a/packages/components/src/molecules/Card/Card.tsx b/packages/components/src/molecules/Card/Card.tsx
new file mode 100644
index 0000000000..e275e998fc
--- /dev/null
+++ b/packages/components/src/molecules/Card/Card.tsx
@@ -0,0 +1,54 @@
+import type { HTMLAttributes } from "react";
+import React, { forwardRef } from 'react'
+
+import { IconButton, Icon } from '../..'
+
+export interface CardProps extends Omit, 'role'> {
+ /**
+ * Specifies the text to be loaded into the header.
+ */
+ title: string
+ /**
+ * ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
+ */
+ testId?: string
+ /**
+ * Specifies the card max width.
+ */
+ maxWidth?: string
+ /**
+ * Specifies what icon to use following the FastStore Icon sheet.
+ */
+ iconName?: string
+ /**
+ * Function that should be executed when the icon is clicked
+ */
+ iconAction?: () => void
+}
+
+const Card = forwardRef(function Card({
+ title,
+ maxWidth,
+ testId = 'fs-card',
+ iconName,
+ iconAction,
+ children,
+ ...otherProps
+}, ref) {
+ return (
+
+
+
{title}
+ {iconName && (
+
}
+ aria-label={`${title} action`} onClick={iconAction} />
+ )}
+
+
+ {children}
+
+
+ )
+})
+
+export default Card
diff --git a/packages/components/src/molecules/Card/index.ts b/packages/components/src/molecules/Card/index.ts
new file mode 100644
index 0000000000..e081cabffb
--- /dev/null
+++ b/packages/components/src/molecules/Card/index.ts
@@ -0,0 +1,2 @@
+export { default } from './Card'
+export type { CardProps } from './Card'
diff --git a/packages/ui/src/components/molecules/Card/styles.scss b/packages/ui/src/components/molecules/Card/styles.scss
new file mode 100644
index 0000000000..8143013873
--- /dev/null
+++ b/packages/ui/src/components/molecules/Card/styles.scss
@@ -0,0 +1,47 @@
+[data-fs-card] {
+ // --------------------------------------------------------
+ // Design Tokens for Card
+ // --------------------------------------------------------
+
+ // Default properties
+ --fs-card-border-radius : var(--fs-border-radius);
+ --fs-card-border-width : var(--fs-border-width);
+ --fs-card-border-color : var(--fs-border-color-light);
+
+ // Header
+ --fs-card-header-padding : var(--fs-spacing-3);
+ --fs-card-header-bkg-color : var(--fs-color-neutral-bkg);
+ --fs-card-header-font-weight : var(--fs-text-weight-bold);
+ --fs-card-header-icon-color : var(--fs-color-main-2);
+
+ // Body
+ --fs-card-body-padding : var(--fs-spacing-3);
+
+ // --------------------------------------------------------
+ // Structural Styles
+ // --------------------------------------------------------
+ border: var(--fs-card-border-width) solid var(--fs-card-border-color);
+ border-radius: var(--fs-card-border-radius);
+
+ [data-fs-card-header] {
+ border-top-left-radius: var(--fs-card-border-radius);
+ border-top-right-radius: var(--fs-card-border-radius);
+ padding: var(--fs-card-header-padding);
+ background-color: var(--fs-card-header-bkg-color);
+ font-weight: var(--fs-card-header-font-weight);
+ display: flex;
+ justify-content: space-between;
+
+ [data-fs-button]{
+ --fs-button-height: var(--fs-spacing-4);
+ }
+
+ [data-fs-icon]{
+ color: var(--fs-card-header-icon-color);
+ }
+ }
+
+ [data-fs-card-body] {
+ padding: var(--fs-card-body-padding);
+ }
+}
diff --git a/packages/ui/src/styles/components.scss b/packages/ui/src/styles/components.scss
index 5ac5d88155..798238e2ee 100644
--- a/packages/ui/src/styles/components.scss
+++ b/packages/ui/src/styles/components.scss
@@ -21,6 +21,7 @@
@import "../components/molecules/Alert/styles";
@import "../components/molecules/Breadcrumb/styles";
@import "../components/molecules/BuyButton/styles";
+@import "../components/molecules/Card/styles";
@import "../components/molecules/Carousel/styles";
@import "../components/molecules/CartItem/styles";
@import "../components/molecules/CheckboxField/styles";
@@ -55,6 +56,7 @@
@import "../components/molecules/Toggle/styles";
@import "../components/molecules/ToggleField/styles";
+
// Organisms
@import "../components/organisms/BannerText/styles";
@import "../components/organisms/BannerNewsletter/styles";
From dbcdb34361a930d5bcb15cacb605985ac592704f Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 2 Sep 2024 14:24:38 +0000
Subject: [PATCH 019/154] [no ci] Release: 3.0.96
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/components/package.json | 2 +-
packages/core/package.json | 6 +++---
packages/ui/package.json | 4 ++--
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 8b06a5813a..d71920fca6 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.95",
+ "version": "3.0.96",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -12,7 +12,7 @@
"dependencies": {
"@faststore/api": "^3.0.95",
"@faststore/sdk": "^3.0.95",
- "@faststore/ui": "^3.0.95",
+ "@faststore/ui": "^3.0.96",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index cf652a0a05..dac33c8b06 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.95",
+ "version": "3.0.96",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index a85011b8b6..459db17a4a 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.95 linux-x64 node-v18.20.4
+@faststore/cli/3.0.96 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.95/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index e246bec766..6c013de325 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.95",
+ "version": "3.0.96",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.95",
+ "@faststore/core": "^3.0.96",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/components/package.json b/packages/components/package.json
index 8ae400e522..7264010cc8 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.95",
+ "version": "3.0.96",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
diff --git a/packages/core/package.json b/packages/core/package.json
index 1715427c05..9754c267e3 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.95",
+ "version": "3.0.96",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -44,10 +44,10 @@
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
"@faststore/api": "^3.0.95",
- "@faststore/components": "^3.0.95",
+ "@faststore/components": "^3.0.96",
"@faststore/graphql-utils": "^3.0.95",
"@faststore/sdk": "^3.0.95",
- "@faststore/ui": "^3.0.95",
+ "@faststore/ui": "^3.0.96",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
diff --git a/packages/ui/package.json b/packages/ui/package.json
index a451920deb..88d61c678a 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.95",
+ "version": "3.0.96",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.95",
+ "@faststore/components": "^3.0.96",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
From e405d0589a131c60fb999c8691cc201bf2639cac Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lar=C3=ADcia=20Mota?=
Date: Tue, 3 Sep 2024 12:15:27 -0300
Subject: [PATCH 020/154] Fix: duplicated queries due to
hasOnlyDefaultSalesChannel (#2429)
## What's the purpose of this pull request?
The `ClientManyProductsQuery` was being fetched twice with almost the
same parameters, the only difference was the
`hasOnlyDefaultSalesChannel` introduced on this
[PR](https://github.com/vtex/faststore/pull/2282) and used only by the
`useAuth` hook.
It doesn't need to be sent on the `ClientManyProductsQuery`, only on the
`ValidateSession` mutation.
These other queries were also being affected:
`ClientSearchSuggestionsQuery`, `ClientProductGalleryQuery` and
`ClientProductQuery`.
## How it works?
It filters the `hasOnlyDefaultSalesChannel` key out of the `channel`
object in the `useSession` before sending it on the query.
## How to test it?
Running `yarn dev` and checking on the PDP that the
`ClientManyProductsQuery` is not duplicated and is not sending the
`hasOnlyDefaultSalesChannel` on `channel`.
| Before | After |
| -|-|
|
|
|
|
| |
### Starters Deploy Preview
## References
- [Slack
thread](https://vtex.slack.com/archives/C051B6LL91U/p1725284216284089)
---
packages/core/src/sdk/auth/index.ts | 6 +++-
.../src/sdk/product/useLocalizedVariables.ts | 4 +--
packages/core/src/sdk/session/index.ts | 28 +++++++++++++++++--
3 files changed, 32 insertions(+), 6 deletions(-)
diff --git a/packages/core/src/sdk/auth/index.ts b/packages/core/src/sdk/auth/index.ts
index 37d405afaf..b1d090d13d 100644
--- a/packages/core/src/sdk/auth/index.ts
+++ b/packages/core/src/sdk/auth/index.ts
@@ -1,7 +1,11 @@
import { useSession } from '../session'
export const useAuth = () => {
- const { person, isValidating, channel: channelJson } = useSession()
+ const {
+ person,
+ isValidating,
+ channel: channelJson,
+ } = useSession({ filter: false })
const channel = JSON.parse(channelJson) as {
salesChannel: number
diff --git a/packages/core/src/sdk/product/useLocalizedVariables.ts b/packages/core/src/sdk/product/useLocalizedVariables.ts
index ae1ebd93ae..73ca339c41 100644
--- a/packages/core/src/sdk/product/useLocalizedVariables.ts
+++ b/packages/core/src/sdk/product/useLocalizedVariables.ts
@@ -1,7 +1,7 @@
-import { useMemo } from 'react'
import { ClientManyProductsQueryQueryVariables } from '@generated/graphql'
-import { useSession } from '../session'
+import { useMemo } from 'react'
import { ITEMS_PER_SECTION } from 'src/constants'
+import { useSession } from '../session'
const toArray = (x: T[] | T | undefined) =>
Array.isArray(x) ? x : x ? [x] : []
diff --git a/packages/core/src/sdk/session/index.ts b/packages/core/src/sdk/session/index.ts
index aa7c22e22a..aa5c45153e 100644
--- a/packages/core/src/sdk/session/index.ts
+++ b/packages/core/src/sdk/session/index.ts
@@ -69,15 +69,37 @@ export const sessionStore = {
},
}
-export const useSession = () => {
- const session = useStore(sessionStore)
+interface SessionOptions {
+ filter?: boolean
+}
+
+/**
+ * This custom hook is used to retrieve the session data and filter the channel object.
+ * The channel object filtering removes the hasOnlyDefaultSalesChannel key.
+ * This key is used only in the useAuth hook and is only required to send on the ValidateSession mutation,
+ * so we remove it from the session's channel object to avoid unnecessary cache invalidations and query executions.
+ *
+ * @param options - Optional configuration for the hook.
+ * @param options.filter - A boolean value indicating whether to filter the channel object or not. Default is true.
+ * @returns An object containing the session data, channel object, and a flag indicating whether the session is being validated.
+ */
+
+export const useSession = ({ filter }: SessionOptions = { filter: true }) => {
+ let { channel, ...session } = useStore(sessionStore)
const isValidating = useStore(validationStore)
+ if (filter) {
+ const { hasOnlyDefaultSalesChannel, ...filteredChannel } =
+ JSON.parse(channel)
+ channel = JSON.stringify(filteredChannel)
+ }
+
return useMemo(
() => ({
...session,
+ channel,
isValidating,
}),
- [isValidating, session]
+ [isValidating, session, channel]
)
}
From 22f2107c8cea05da8aaa411a7e61731130b4a5f3 Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 3 Sep 2024 12:16:48 -0300
Subject: [PATCH 021/154] Fix: Rollback fuzzy params in PLP (#2427)
## What's the purpose of this pull request?
This PR reverts the following PRs:
- https://github.com/vtex/faststore/pull/2307
- https://github.com/vtex/faststore/pull/2204
Also, it resolves the conflicts from the current main branch.
## How it works?
We are removing the reload issue caused by the use of fuzzy logic and
operators in handling IS requests.
The team will try another approach to address the usage of fuzzy logic
and operators in IS requests allowing the search engine decide the best
parameters for the search.
## How to test it?
You can run the project locally and double-check if the PLP/Search page
just loads once.
Also, you can use the preview URL from starter PR:
PLP: https://sfj-728d5af--starter.preview.vtex.app/office
Search:
https://sfj-728d5af--starter.preview.vtex.app/s?q=shirt&sort=score_desc&page=0
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/517
## References
---
packages/api/mocks/AllProductsQuery.ts | 22 +++----
packages/api/mocks/ProductQuery.ts | 6 +-
packages/api/mocks/RedirectQuery.ts | 62 +++++++++---------
packages/api/mocks/SearchQuery.ts | 18 +++---
packages/api/mocks/ValidateCartMutation.ts | 4 +-
packages/api/src/__generated__/schema.ts | 2 -
.../platforms/vtex/clients/search/index.ts | 56 ++---------------
.../platforms/vtex/resolvers/searchResult.ts | 12 ++--
.../api/src/platforms/vtex/utils/facets.ts | 22 ++-----
packages/api/src/typeDefs/query.graphql | 4 --
packages/core/@generated/gql.ts | 12 +---
packages/core/@generated/graphql.ts | 20 ++----
.../src/sdk/product/useProductGalleryQuery.ts | 63 +++++--------------
packages/core/src/sdk/search/state.ts | 7 +--
14 files changed, 96 insertions(+), 214 deletions(-)
diff --git a/packages/api/mocks/AllProductsQuery.ts b/packages/api/mocks/AllProductsQuery.ts
index 3b2becaff4..437b2426b2 100644
--- a/packages/api/mocks/AllProductsQuery.ts
+++ b/packages/api/mocks/AllProductsQuery.ts
@@ -78,7 +78,7 @@ export const AllProductsQueryFirst5 = `query AllProducts {
`
export const productSearchPage1Count5Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=5&query=&sort=&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
@@ -86,8 +86,8 @@ export const productSearchPage1Count5Fetch = {
{
cacheId: 'sp-99995946',
productId: '99995946',
- description: '4k Philips Monitor 27"',
- productName: '4k Philips Monitor 27"',
+ description: '4k Philips Monitor 27\"',
+ productName: '4k Philips Monitor 27\"',
linkText: '4k-philips-monitor',
brand: 'adidas',
brandId: 2000004,
@@ -209,7 +209,7 @@ export const productSearchPage1Count5Fetch = {
],
itemId: '99988213',
name: 'Monitor 27',
- nameComplete: '4k Philips Monitor 27" Monitor 27',
+ nameComplete: '4k Philips Monitor 27\" Monitor 27',
complementName: '',
referenceId: [
{
@@ -831,36 +831,36 @@ export const productSearchPage1Count5Fetch = {
current: {
index: 1,
proxyUrl:
- 'search/trade-policy/1?page=1&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&operator=and',
},
before: [],
after: [
{
index: 2,
proxyUrl:
- 'search/trade-policy/1?page=2&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=2&count=5&query=&sort=&fuzzy=auto&operator=and',
},
{
index: 3,
proxyUrl:
- 'search/trade-policy/1?page=3&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=3&count=5&query=&sort=&fuzzy=auto&operator=and',
},
{
index: 4,
proxyUrl:
- 'search/trade-policy/1?page=4&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=4&count=5&query=&sort=&fuzzy=auto&operator=and',
},
{
index: 5,
proxyUrl:
- 'search/trade-policy/1?page=5&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=5&count=5&query=&sort=&fuzzy=auto&operator=and',
},
],
perPage: 5,
next: {
index: 2,
proxyUrl:
- 'search/trade-policy/1?page=2&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=2&count=5&query=&sort=&fuzzy=auto&operator=and',
},
previous: {
index: 0,
@@ -871,7 +871,7 @@ export const productSearchPage1Count5Fetch = {
last: {
index: 50,
proxyUrl:
- 'search/trade-policy/1?page=50&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=50&count=5&query=&sort=&fuzzy=auto&operator=and',
},
},
},
diff --git a/packages/api/mocks/ProductQuery.ts b/packages/api/mocks/ProductQuery.ts
index d49629599e..19d9c13fd2 100644
--- a/packages/api/mocks/ProductQuery.ts
+++ b/packages/api/mocks/ProductQuery.ts
@@ -63,7 +63,7 @@ export const ProductByIdQuery = `query ProductQuery {
`
export const productSearchFetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A64953394&sort=&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A64953394&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
@@ -229,7 +229,7 @@ export const productSearchFetch = {
correction: {
misspelled: true,
},
- fuzzy: '0',
+ fuzzy: 'auto',
operator: 'and',
translated: false,
pagination: {
@@ -237,7 +237,7 @@ export const productSearchFetch = {
current: {
index: 1,
proxyUrl:
- 'search/trade-policy/1?page=1&count=1&query=sku:64953394&sort=&locale=en-US&hide-unavailable-items=false&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=1&count=1&query=sku:64953394&sort=&fuzzy=auto&operator=and',
},
before: [],
after: [],
diff --git a/packages/api/mocks/RedirectQuery.ts b/packages/api/mocks/RedirectQuery.ts
index 322cbb41f5..485bf99123 100644
--- a/packages/api/mocks/RedirectQuery.ts
+++ b/packages/api/mocks/RedirectQuery.ts
@@ -6,36 +6,36 @@ export const RedirectQueryTermTech = `query RedirectSearch {
`
export const redirectTermTechFetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=2&count=1&query=tech&sort=&locale=en-US&hideUnavailableItems=false',
- init: undefined,
- options: { storeCookies: expect.any(Function) },
- result: {
- products: [],
- recordsFiltered: 0,
- fuzzy: 'auto',
- operator: 'and',
- redirect: '/technology',
- translated: false,
- pagination: {
- count: 1,
- current: {
- index: 0,
- },
- before: [],
- after: [],
- perPage: 0,
- next: {
- index: 0,
- },
- previous: {
- index: 0,
- },
- first: {
- index: 0,
- },
- last: {
- index: 0,
- },
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=2&count=1&query=tech&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
+ init: undefined,
+ options: { storeCookies: expect.any(Function) },
+ result: {
+ products: [],
+ recordsFiltered: 0,
+ fuzzy: 'auto',
+ operator: 'and',
+ redirect: '/technology',
+ translated: false,
+ pagination: {
+ count: 1,
+ current: {
+ index: 0,
+ },
+ before: [],
+ after: [],
+ perPage: 0,
+ next: {
+ index: 0,
+ },
+ previous: {
+ index: 0,
+ },
+ first: {
+ index: 0,
+ },
+ last: {
+ index: 0,
+ },
+ },
},
- },
}
diff --git a/packages/api/mocks/SearchQuery.ts b/packages/api/mocks/SearchQuery.ts
index 8b648cbe8d..cab1117ff7 100644
--- a/packages/api/mocks/SearchQuery.ts
+++ b/packages/api/mocks/SearchQuery.ts
@@ -101,7 +101,7 @@ export const SearchQueryFirst5Products = `query SearchQuery {
}`
export const productSearchCategory1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
@@ -1348,36 +1348,36 @@ export const productSearchCategory1Fetch = {
current: {
index: 1,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&operator=and',
},
before: [],
after: [
{
index: 2,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=2&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=2&count=5&query=&sort=&fuzzy=auto&operator=and',
},
{
index: 3,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=3&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=3&count=5&query=&sort=&fuzzy=auto&operator=and',
},
{
index: 4,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=4&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=4&count=5&query=&sort=&fuzzy=auto&operator=and',
},
{
index: 5,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=5&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=5&count=5&query=&sort=&fuzzy=auto&operator=and',
},
],
perPage: 5,
next: {
index: 2,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=2&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=2&count=5&query=&sort=&fuzzy=auto&operator=and',
},
previous: {
index: 0,
@@ -1388,14 +1388,14 @@ export const productSearchCategory1Fetch = {
last: {
index: 50,
proxyUrl:
- 'search/category-1/office/trade-policy/1?page=50&count=5&query=&sort=&operator=and&fuzzy=0',
+ 'search/category-1/office/trade-policy/1?page=50&count=5&query=&sort=&fuzzy=auto&operator=and',
},
},
},
}
export const attributeSearchCategory1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/facets/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/facets/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/mocks/ValidateCartMutation.ts b/packages/api/mocks/ValidateCartMutation.ts
index 2520a208e7..c61cb8cf55 100644
--- a/packages/api/mocks/ValidateCartMutation.ts
+++ b/packages/api/mocks/ValidateCartMutation.ts
@@ -347,7 +347,7 @@ export const checkoutOrderFormCustomDataInvalidFetch = {
}
export const productSearchPage1Count1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A2737806&sort=&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A2737806&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
@@ -523,7 +523,7 @@ export const productSearchPage1Count1Fetch = {
current: {
index: 1,
proxyUrl:
- 'search/trade-policy/1?page=1&count=1&query=sku:2737806&sort=&locale=en-US&hide-unavailable-items=false&operator=and&fuzzy=0',
+ 'search/trade-policy/1?page=1&count=1&query=sku:2737806&sort=&fuzzy=auto&operator=and',
},
before: [],
after: [],
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index d7d15951a0..61a55df546 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -509,8 +509,6 @@ export type QueryShippingArgs = {
/** Search result. */
export type SearchMetadata = {
__typename?: 'SearchMetadata';
- /** Indicates how the search engine corrected the misspelled word by using fuzzy logic. */
- fuzzy: Scalars['String'];
/** Indicates if the search term was misspelled. */
isTermMisspelled: Scalars['Boolean'];
/** Logical operator used to run the search. */
diff --git a/packages/api/src/platforms/vtex/clients/search/index.ts b/packages/api/src/platforms/vtex/clients/search/index.ts
index 9d2160423c..66e6fad8c4 100644
--- a/packages/api/src/platforms/vtex/clients/search/index.ts
+++ b/packages/api/src/platforms/vtex/clients/search/index.ts
@@ -1,11 +1,7 @@
import { fetchAPI } from '../fetch'
import type { IStoreSelectedFacet } from '../../../../__generated__/schema'
import type { Context, Options } from '../../'
-import type {
- SelectedFacet,
- FuzzyFacet,
- OperatorFacet,
-} from '../../utils/facets'
+import type { SelectedFacet } from '../../utils/facets'
import type {
Facet,
FacetValueBoolean,
@@ -43,38 +39,14 @@ export interface ProductLocator {
value: string
}
-// channel keys
const POLICY_KEY = 'trade-policy'
const REGION_KEY = 'region-id'
-
-// search parameters
-const FUZZY_KEY = 'fuzzy'
-const OPERATOR_KEY = 'operator'
-
-const EXTRA_FACETS_KEYS = new Set([
- POLICY_KEY,
- REGION_KEY,
- FUZZY_KEY,
- OPERATOR_KEY,
-])
+const CHANNEL_KEYS = new Set([POLICY_KEY, REGION_KEY])
export const isFacetBoolean = (
facet: Facet
): facet is Facet => facet.type === 'TEXT'
-const isFuzzyFacet = (facet: SelectedFacet): facet is FuzzyFacet => {
- return (
- facet.key === 'fuzzy' &&
- (facet.value === '0' || facet.value === '1' || facet.value === 'auto')
- )
-}
-
-const isOperatorFacet = (facet: SelectedFacet): facet is OperatorFacet => {
- return (
- facet.key === 'operator' && (facet.value === 'and' || facet.value === 'or')
- )
-}
-
export const IntelligentSearch = (
{ account, environment, hideUnavailableItems }: Options,
ctx: Context
@@ -113,9 +85,7 @@ export const IntelligentSearch = (
}
const addDefaultFacets = (facets: SelectedFacet[]) => {
- const withDefaultFacets = facets.filter(
- ({ key }) => !EXTRA_FACETS_KEYS.has(key)
- )
+ const withDefaultFacets = facets.filter(({ key }) => !CHANNEL_KEYS.has(key))
const policyFacet =
facets.find(({ key }) => key === POLICY_KEY) ?? getPolicyFacet()
@@ -134,22 +104,6 @@ export const IntelligentSearch = (
return withDefaultFacets
}
- const addSearchParamsFacets = (
- facets: SelectedFacet[],
- params: URLSearchParams
- ) => {
- const fuzzyFacet = facets.find(({ key }) => key === FUZZY_KEY) ?? null
- const operatorFacet = facets.find(({ key }) => key === OPERATOR_KEY) ?? null
-
- if (fuzzyFacet && isFuzzyFacet(fuzzyFacet)) {
- params.append(FUZZY_KEY, fuzzyFacet.value)
- }
-
- if (operatorFacet && isOperatorFacet(operatorFacet)) {
- params.append(OPERATOR_KEY, operatorFacet.value)
- }
- }
-
const search = ({
query = '',
page,
@@ -157,12 +111,14 @@ export const IntelligentSearch = (
sort = '',
selectedFacets = [],
type,
+ fuzzy = 'auto',
}: SearchArgs): Promise => {
const params = new URLSearchParams({
page: (page + 1).toString(),
count: count.toString(),
query,
sort,
+ fuzzy,
locale: ctx.storage.locale,
})
@@ -174,8 +130,6 @@ export const IntelligentSearch = (
.map(({ key, value }) => `${key}/${value}`)
.join('/')
- addSearchParamsFacets(selectedFacets, params)
-
return fetchAPI(
`${base}/_v/api/intelligent-search/${type}/${pathname}?${params.toString()}`,
undefined,
diff --git a/packages/api/src/platforms/vtex/resolvers/searchResult.ts b/packages/api/src/platforms/vtex/resolvers/searchResult.ts
index dc6a9c78c9..e1e47131c5 100644
--- a/packages/api/src/platforms/vtex/resolvers/searchResult.ts
+++ b/packages/api/src/platforms/vtex/resolvers/searchResult.ts
@@ -14,8 +14,8 @@ const isRootFacet = (facet: Facet, isDepartment: boolean, isBrand: boolean) =>
isDepartment
? facet.key === 'category-1'
: isBrand
- ? facet.key === 'brand'
- : false
+ ? facet.key === 'brand'
+ : false
export const StoreSearchResult: Record> = {
suggestions: async (root, _, ctx) => {
@@ -117,12 +117,16 @@ export const StoreSearchResult: Record> = {
return filteredFacets
},
- metadata: async ({ productSearchPromise }) => {
+ metadata: async ({ searchArgs, productSearchPromise }) => {
+ if (!searchArgs.query) {
+ return null
+ }
+
const productSearchResult = await productSearchPromise
+
return {
isTermMisspelled: productSearchResult.correction?.misspelled ?? false,
logicalOperator: productSearchResult.operator,
- fuzzy: productSearchResult.fuzzy,
}
},
}
diff --git a/packages/api/src/platforms/vtex/utils/facets.ts b/packages/api/src/platforms/vtex/utils/facets.ts
index 8bc06ad153..2291f5c2f2 100644
--- a/packages/api/src/platforms/vtex/utils/facets.ts
+++ b/packages/api/src/platforms/vtex/utils/facets.ts
@@ -6,28 +6,18 @@ export interface SelectedFacet {
value: string
}
-export type FuzzyFacet = {
- key: 'fuzzy'
- value: '0' | '1' | 'auto'
-}
-
-export type OperatorFacet = {
- key: 'operator'
- value: 'and' | 'or'
-}
-
export interface CrossSellingFacet {
key: keyof typeof FACET_CROSS_SELLING_MAP
value: string
}
export const FACET_CROSS_SELLING_MAP = {
- buy: 'whoboughtalsobought',
- view: 'whosawalsosaw',
- similars: 'similars',
- viewAndBought: 'whosawalsobought',
- accessories: 'accessories',
- suggestions: 'suggestions',
+ buy: "whoboughtalsobought",
+ view: "whosawalsosaw",
+ similars: "similars",
+ viewAndBought: "whosawalsobought",
+ accessories: "accessories",
+ suggestions: "suggestions",
} as const
/**
diff --git a/packages/api/src/typeDefs/query.graphql b/packages/api/src/typeDefs/query.graphql
index 3334a2e71c..0e38c291b2 100644
--- a/packages/api/src/typeDefs/query.graphql
+++ b/packages/api/src/typeDefs/query.graphql
@@ -160,10 +160,6 @@ type SearchMetadata {
Logical operator used to run the search.
"""
logicalOperator: String!
- """
- Indicates how the search engine corrected the misspelled word by using fuzzy logic.
- """
- fuzzy: String!
}
"""
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index e1340dcce6..7364cd0d25 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -44,10 +44,8 @@ const documents = {
types.SubscribeToNewsletterDocument,
'\n query ClientManyProductsQuery(\n $first: Int!\n $after: String\n $sort: StoreSort!\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]!\n ) {\n ...ClientManyProducts\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n edges {\n node {\n ...ProductSummary_product\n }\n }\n }\n }\n }\n':
types.ClientManyProductsQueryDocument,
- '\n query ClientProductGalleryQuery(\n $first: Int!\n $after: String!\n $sort: StoreSort!\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]!\n ) {\n ...ClientProductGallery\n redirect(term: $term, selectedFacets: $selectedFacets) {\n url\n }\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n }\n facets {\n ...Filter_facets\n }\n metadata {\n ...SearchEvent_metadata\n }\n }\n }\n':
+ '\n query ClientProductGalleryQuery(\n $first: Int!\n $after: String!\n $sort: StoreSort!\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]!\n ) {\n ...ClientProductGallery\n redirect(term: $term, selectedFacets: $selectedFacets) {\n url\n }\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n }\n facets {\n ...Filter_facets\n }\n metadata {\n ...SearchEvent_metadata\n }\n }\n }\n\n fragment SearchEvent_metadata on SearchMetadata {\n isTermMisspelled\n logicalOperator\n }\n':
types.ClientProductGalleryQueryDocument,
- '\n fragment SearchEvent_metadata on SearchMetadata {\n isTermMisspelled\n logicalOperator\n fuzzy\n }\n':
- types.SearchEvent_MetadataFragmentDoc,
'\n query ClientProductQuery($locator: [IStoreSelectedFacet!]!) {\n ...ClientProduct\n product(locator: $locator) {\n ...ProductDetailsFragment_product\n }\n }\n':
types.ClientProductQueryDocument,
'\n query ClientSearchSuggestionsQuery(\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]\n ) {\n ...ClientSearchSuggestions\n search(first: 5, term: $term, selectedFacets: $selectedFacets) {\n suggestions {\n terms {\n value\n }\n products {\n ...ProductSummary_product\n }\n }\n products {\n pageInfo {\n totalCount\n }\n }\n metadata {\n ...SearchEvent_metadata\n }\n }\n }\n':
@@ -160,14 +158,8 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n query ClientProductGalleryQuery(\n $first: Int!\n $after: String!\n $sort: StoreSort!\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]!\n ) {\n ...ClientProductGallery\n redirect(term: $term, selectedFacets: $selectedFacets) {\n url\n }\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n }\n facets {\n ...Filter_facets\n }\n metadata {\n ...SearchEvent_metadata\n }\n }\n }\n'
+ source: '\n query ClientProductGalleryQuery(\n $first: Int!\n $after: String!\n $sort: StoreSort!\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]!\n ) {\n ...ClientProductGallery\n redirect(term: $term, selectedFacets: $selectedFacets) {\n url\n }\n search(\n first: $first\n after: $after\n sort: $sort\n term: $term\n selectedFacets: $selectedFacets\n ) {\n products {\n pageInfo {\n totalCount\n }\n }\n facets {\n ...Filter_facets\n }\n metadata {\n ...SearchEvent_metadata\n }\n }\n }\n\n fragment SearchEvent_metadata on SearchMetadata {\n isTermMisspelled\n logicalOperator\n }\n'
): typeof import('./graphql').ClientProductGalleryQueryDocument
-/**
- * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
- */
-export function gql(
- source: '\n fragment SearchEvent_metadata on SearchMetadata {\n isTermMisspelled\n logicalOperator\n fuzzy\n }\n'
-): typeof import('./graphql').SearchEvent_MetadataFragmentDoc
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index 12eed73925..b3d289130b 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -503,8 +503,6 @@ export type QueryShippingArgs = {
/** Search result. */
export type SearchMetadata = {
- /** Indicates how the search engine corrected the misspelled word by using fuzzy logic. */
- fuzzy: Scalars['String']['output']
/** Indicates if the search term was misspelled. */
isTermMisspelled: Scalars['Boolean']['output']
/** Logical operator used to run the search. */
@@ -1473,18 +1471,13 @@ export type ClientProductGalleryQueryQuery = {
max: { selected: number; absolute: number }
}
>
- metadata: {
- isTermMisspelled: boolean
- logicalOperator: string
- fuzzy: string
- } | null
+ metadata: { isTermMisspelled: boolean; logicalOperator: string } | null
}
}
export type SearchEvent_MetadataFragment = {
isTermMisspelled: boolean
logicalOperator: string
- fuzzy: string
}
export type ClientProductQueryQueryVariables = Exact<{
@@ -1570,11 +1563,7 @@ export type ClientSearchSuggestionsQueryQuery = {
}>
}
products: { pageInfo: { totalCount: number } }
- metadata: {
- isTermMisspelled: boolean
- logicalOperator: string
- fuzzy: string
- } | null
+ metadata: { isTermMisspelled: boolean; logicalOperator: string } | null
}
}
@@ -2019,7 +2008,6 @@ export const SearchEvent_MetadataFragmentDoc = new TypedDocumentString(
fragment SearchEvent_metadata on SearchMetadata {
isTermMisspelled
logicalOperator
- fuzzy
}
`,
{ fragmentName: 'SearchEvent_metadata' }
@@ -2072,7 +2060,7 @@ export const ClientManyProductsQueryDocument = {
export const ClientProductGalleryQueryDocument = {
__meta__: {
operationName: 'ClientProductGalleryQuery',
- operationHash: 'bfc40da32b60f9404a4adb96b0856e3fbb04b076',
+ operationHash: '177fe68cb385737b0901fc9e105f0a4813e18a20',
},
} as unknown as TypedDocumentString<
ClientProductGalleryQueryQuery,
@@ -2090,7 +2078,7 @@ export const ClientProductQueryDocument = {
export const ClientSearchSuggestionsQueryDocument = {
__meta__: {
operationName: 'ClientSearchSuggestionsQuery',
- operationHash: '47af7b9c9e0fb18b01050767daf3e765f67819ac',
+ operationHash: '71809c86cb940861f01bcc57dbaf57e6f41cb378',
},
} as unknown as TypedDocumentString<
ClientSearchSuggestionsQueryQuery,
diff --git a/packages/core/src/sdk/product/useProductGalleryQuery.ts b/packages/core/src/sdk/product/useProductGalleryQuery.ts
index 1f09972f24..701d576e5e 100644
--- a/packages/core/src/sdk/product/useProductGalleryQuery.ts
+++ b/packages/core/src/sdk/product/useProductGalleryQuery.ts
@@ -1,18 +1,17 @@
import { sendAnalyticsEvent } from '@faststore/sdk'
-import { useSearch, setFacet } from '@faststore/sdk'
import { gql } from '@generated'
import { useQuery } from 'src/sdk/graphql/useQuery'
-import { useLocalizedVariables } from './useLocalizedVariables'
import { useSession } from 'src/sdk/session'
+import { useLocalizedVariables } from './useLocalizedVariables'
+import { Facet } from '@faststore/sdk/dist/types'
import type {
ClientManyProductsQueryQueryVariables,
ClientProductGalleryQueryQuery as Query,
ClientProductGalleryQueryQueryVariables as Variables,
} from '@generated/graphql'
import type { IntelligentSearchQueryEvent } from 'src/sdk/analytics/types'
-import type { Facet } from '@faststore/sdk/dist/types'
/**
* This query is run on the browser and contains
@@ -52,13 +51,10 @@ export const query = gql(`
}
}
}
-`)
-export const fragment = gql(`
fragment SearchEvent_metadata on SearchMetadata {
isTermMisspelled
logicalOperator
- fuzzy
}
`)
@@ -76,8 +72,6 @@ export const useProductGalleryQuery = ({
itemsPerPage,
}: ProductGalleryQueryOptions) => {
const { locale } = useSession()
- const { state, setState } = useSearch()
-
const localizedVariables = useLocalizedVariables({
first: itemsPerPage,
after: '0',
@@ -86,49 +80,20 @@ export const useProductGalleryQuery = ({
selectedFacets,
})
- const findFacetValue = (
- facets: Facet[],
- searchParam: string
- ): string | null => {
- const facet = facets.find(({ key }) => key === searchParam)
- return facet?.value ?? null
- }
-
return useQuery(query, localizedVariables, {
onSuccess: (data) => {
- if (data) {
- // Cancel query onSuccess event when redirecting
- if (data?.redirect?.url) {
- return
- }
-
- const fuzzyFacetValue = findFacetValue(selectedFacets, 'fuzzy')
- const operatorFacetValue = findFacetValue(selectedFacets, 'operator')
-
- if (!fuzzyFacetValue && !operatorFacetValue) {
- setState({
- ...state,
- selectedFacets: [
- ...selectedFacets,
- { key: 'fuzzy', value: data.search.metadata?.fuzzy },
- { key: 'operator', value: data.search.metadata?.logicalOperator },
- ],
- })
- }
-
- if (term) {
- sendAnalyticsEvent({
- name: 'intelligent_search_query',
- params: {
- locale,
- term,
- url: window.location.href,
- logicalOperator: data.search.metadata?.logicalOperator ?? 'and',
- isTermMisspelled: data.search.metadata?.isTermMisspelled ?? false,
- totalCount: data.search.products.pageInfo.totalCount,
- },
- })
- }
+ if (data && term) {
+ sendAnalyticsEvent({
+ name: 'intelligent_search_query',
+ params: {
+ locale,
+ term,
+ url: window.location.href,
+ logicalOperator: data.search.metadata?.logicalOperator ?? 'and',
+ isTermMisspelled: data.search.metadata?.isTermMisspelled ?? false,
+ totalCount: data.search.products.pageInfo.totalCount,
+ },
+ })
}
},
})
diff --git a/packages/core/src/sdk/search/state.ts b/packages/core/src/sdk/search/state.ts
index cbae36b491..01080c1ee9 100644
--- a/packages/core/src/sdk/search/state.ts
+++ b/packages/core/src/sdk/search/state.ts
@@ -5,12 +5,7 @@ export const useApplySearchState = () => {
const router = useRouter()
return useCallback(
- (url: URL) => {
- const newUrl = `${url.pathname}${url.search}`
- return url.searchParams.has('fuzzy') && url.searchParams.has('operator')
- ? router.replace(newUrl)
- : router.push(newUrl)
- },
+ (url: URL) => router.push(`${url.pathname}${url.search}`),
[router]
)
}
From df0e2d3d8c4f09d7782013f7ba25d73e51d3b7a1 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 3 Sep 2024 15:22:00 +0000
Subject: [PATCH 022/154] [no ci] Release: 3.0.97
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 14 +++++++-------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index d71920fca6..7f4ce73a1b 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.96",
+ "version": "3.0.97",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.95",
- "@faststore/sdk": "^3.0.95",
- "@faststore/ui": "^3.0.96",
+ "@faststore/api": "^3.0.97",
+ "@faststore/sdk": "^3.0.97",
+ "@faststore/ui": "^3.0.97",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index dac33c8b06..637bcf71ee 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.96",
+ "version": "3.0.97",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index bf96861457..83b867eda3 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.95",
+ "version": "3.0.97",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^2.6.0",
- "@faststore/eslint-config": "^3.0.95",
- "@faststore/shared": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
+ "@faststore/shared": "^3.0.97",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 459db17a4a..6241ea998b 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.96 linux-x64 node-v18.20.4
+@faststore/cli/3.0.97 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.96/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 6c013de325..6ee7a7880b 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.96",
+ "version": "3.0.97",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.96",
+ "@faststore/core": "^3.0.97",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -31,8 +31,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.95",
- "@faststore/shared": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
+ "@faststore/shared": "^3.0.97",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 7264010cc8..921d1f82e2 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.96",
+ "version": "3.0.97",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.95",
- "@faststore/shared": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
+ "@faststore/shared": "^3.0.97",
"@testing-library/react": "^14.3.0",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
diff --git a/packages/core/package.json b/packages/core/package.json
index 9754c267e3..3bb5cec89f 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.96",
+ "version": "3.0.97",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,11 +43,11 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.95",
- "@faststore/components": "^3.0.96",
- "@faststore/graphql-utils": "^3.0.95",
- "@faststore/sdk": "^3.0.95",
- "@faststore/ui": "^3.0.96",
+ "@faststore/api": "^3.0.97",
+ "@faststore/components": "^3.0.97",
+ "@faststore/graphql-utils": "^3.0.97",
+ "@faststore/sdk": "^3.0.97",
+ "@faststore/ui": "^3.0.97",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -88,7 +88,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
"@faststore/lighthouse": "^1.12.32",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index 6983428d74..8ba46a6c3f 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.95",
+ "version": "3.0.97",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index 18b102a3b3..ef5e05cb40 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.95",
+ "version": "3.0.97",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.95",
- "@faststore/shared": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
+ "@faststore/shared": "^3.0.97",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index c6debfda0b..265bf2db75 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.95",
+ "version": "3.0.97",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.95",
- "@faststore/shared": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
+ "@faststore/shared": "^3.0.97",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 5007c04caf..6795031e28 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.95",
+ "version": "3.0.97",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.95",
+ "@faststore/shared": "^3.0.97",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index efb3f0db7c..2da2bebf92 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.95",
+ "version": "3.0.97",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 88d61c678a..0706e1d060 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.96",
+ "version": "3.0.97",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.96",
+ "@faststore/components": "^3.0.97",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.95",
- "@faststore/shared": "^3.0.95",
+ "@faststore/eslint-config": "^3.0.97",
+ "@faststore/shared": "^3.0.97",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From 2857b66d52a1f6cf17a2e5da9d5aa3e16f658a3c Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Wed, 4 Sep 2024 20:28:48 -0300
Subject: [PATCH 023/154] Fix: Add 'show-invisible-items' parameter to
IntelligentSearch API (#2431)
In this PR we add the `show-invisible-items` param to IS api in order to
enhance the invisible SKU
---
packages/api/mocks/ValidateCartMutation.ts | 2 +-
packages/api/src/platforms/vtex/clients/search/index.ts | 6 ++++++
packages/api/src/platforms/vtex/loaders/sku.ts | 6 +++++-
packages/api/src/platforms/vtex/resolvers/validateCart.ts | 4 ++--
4 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/packages/api/mocks/ValidateCartMutation.ts b/packages/api/mocks/ValidateCartMutation.ts
index c61cb8cf55..f46b8b327b 100644
--- a/packages/api/mocks/ValidateCartMutation.ts
+++ b/packages/api/mocks/ValidateCartMutation.ts
@@ -347,7 +347,7 @@ export const checkoutOrderFormCustomDataInvalidFetch = {
}
export const productSearchPage1Count1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A2737806&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A2737806&sort=&fuzzy=auto&locale=en-US&show-invisible-items=true&hideUnavailableItems=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/src/platforms/vtex/clients/search/index.ts b/packages/api/src/platforms/vtex/clients/search/index.ts
index 66e6fad8c4..d2c9e7834b 100644
--- a/packages/api/src/platforms/vtex/clients/search/index.ts
+++ b/packages/api/src/platforms/vtex/clients/search/index.ts
@@ -32,6 +32,7 @@ export interface SearchArgs {
selectedFacets?: SelectedFacet[]
fuzzy?: '0' | '1' | 'auto'
hideUnavailableItems?: boolean
+ showInvisibleItems?: boolean
}
export interface ProductLocator {
@@ -112,6 +113,7 @@ export const IntelligentSearch = (
selectedFacets = [],
type,
fuzzy = 'auto',
+ showInvisibleItems,
}: SearchArgs): Promise => {
const params = new URLSearchParams({
page: (page + 1).toString(),
@@ -122,6 +124,10 @@ export const IntelligentSearch = (
locale: ctx.storage.locale,
})
+ if (showInvisibleItems) {
+ params.append('show-invisible-items', 'true')
+ }
+
if (hideUnavailableItems !== undefined) {
params.append('hideUnavailableItems', hideUnavailableItems.toString())
}
diff --git a/packages/api/src/platforms/vtex/loaders/sku.ts b/packages/api/src/platforms/vtex/loaders/sku.ts
index e68e530f06..c8bfb1a0ab 100644
--- a/packages/api/src/platforms/vtex/loaders/sku.ts
+++ b/packages/api/src/platforms/vtex/loaders/sku.ts
@@ -7,11 +7,15 @@ import type { Options } from '..'
import type { Clients } from '../clients'
export const getSkuLoader = (_: Options, clients: Clients) => {
- const loader = async (skuIds: readonly string[]) => {
+ const loader = async (keys: readonly string[]) => {
+ const skuIds = keys.map((key) => key.split('-')[0]);
+ const showInvisibleItems = keys.some((key) => key.split('-')[1] === 'invisibleItems')
+
const { products } = await clients.search.products({
query: `sku:${skuIds.join(';')}`,
page: 0,
count: skuIds.length,
+ showInvisibleItems
})
const skuBySkuId = products.reduce((acc, product) => {
diff --git a/packages/api/src/platforms/vtex/resolvers/validateCart.ts b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
index b376f522cb..66b0d23cc1 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateCart.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
@@ -156,7 +156,7 @@ const orderFormToCart = async (
orderNumber: form.orderFormId,
acceptedOffer: form.items.map(async (item) => ({
...item,
- product: await skuLoader.load(item.id),
+ product: await skuLoader.load(`${item.id}-invisibleItems`),
})),
},
messages: form.messages.map(({ text, status }) => ({
@@ -316,7 +316,7 @@ export const validateCart = async (
const orderNumber = order?.orderNumber
? order.orderNumber
: getCookieCheckoutOrderNumber(ctx.headers.cookie, 'checkout.vtex.com')
-
+
const { acceptedOffer, shouldSplitItem } = order
const {
clients: { commerce },
From 8493dc04b0b2d3a420fb8796ca40bf25a5a4079d Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 4 Sep 2024 23:33:59 +0000
Subject: [PATCH 024/154] [no ci] Release: 3.0.98
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 7f4ce73a1b..b109f65900 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.97",
+ "version": "3.0.98",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.97",
+ "@faststore/api": "^3.0.98",
"@faststore/sdk": "^3.0.97",
"@faststore/ui": "^3.0.97",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index 637bcf71ee..c0f9da2540 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.97",
+ "version": "3.0.98",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 83b867eda3..5173696627 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.97",
+ "version": "3.0.98",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 6241ea998b..5bfee2683c 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.97 linux-x64 node-v18.20.4
+@faststore/cli/3.0.98 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.97/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 6ee7a7880b..8cecc3e508 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.97",
+ "version": "3.0.98",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.97",
+ "@faststore/core": "^3.0.98",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 3bb5cec89f..faa309dacf 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.97",
+ "version": "3.0.98",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.97",
+ "@faststore/api": "^3.0.98",
"@faststore/components": "^3.0.97",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/sdk": "^3.0.97",
From 73d540e863c5b130dbac4d50552da918bedd3c20 Mon Sep 17 00:00:00 2001
From: JoelsonFerreiraM3 <121126786+JoelsonFerreiraM3@users.noreply.github.com>
Date: Thu, 5 Sep 2024 13:02:07 -0300
Subject: [PATCH 025/154] fix: validateCart mutation merging orderForm items
with assemply options (#2401)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
Fix the validateCart mutation resolver that is overriding the orderForm
for items that should be splitted.
## How it works?
When adding different assembly options for the same product, it must be
kept separate in the orderForm. To prevent this merge, the
parentItemIndex field is checked to see if that item is associated with
the assembly of another item.
## How to test it?
In https://devjoelson--jwpepperdev.myvtex.com/1309475/p
Add different combinations to your cart, for example:
![image](https://github.com/user-attachments/assets/b86c9367-f025-4fae-a221-350e94f5ee7a)
![image](https://github.com/user-attachments/assets/48792798-a636-4c01-990a-25522570f267)
As a result, we will have the same product duplicated in the cart:
![image](https://github.com/user-attachments/assets/c8a95ca8-481b-475b-bf94-5994b5b4ddc8)
When we copy and paste the cookie from orderForm to faststore, it should
not change the cart as it does in this example:
![image](https://github.com/user-attachments/assets/1bd4c6b9-bd2b-4a49-bb37-6bc7e1df1a62)
and then, when updating the cart in IO, we have the change that
shouldn't happen:
![image](https://github.com/user-attachments/assets/54b97ec6-01ac-454e-aef9-d5d989bf2d83)
---------
Co-authored-by: Lucas Feijó
---
.../platforms/vtex/resolvers/validateCart.ts | 21 +++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
diff --git a/packages/api/src/platforms/vtex/resolvers/validateCart.ts b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
index 66b0d23cc1..4b5a96d0c6 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateCart.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
@@ -109,10 +109,20 @@ const equals = (storeOrder: IStoreOrder, orderForm: OrderForm) => {
return isSameOrder && orderItemsAreSync
}
+function hasChildItem(items: OrderFormItem[], itemId: string) {
+ return items?.some(item => item.parentItemIndex && items[item.parentItemIndex].id === itemId)
+}
+
+function hasParentItem(items: OrderFormItem[], itemId: string) {
+ return items?.some(item => item.id === itemId && item.parentItemIndex !== null)
+}
+
const joinItems = (form: OrderForm) => {
const itemsById = form.items.reduce(
- (acc, item) => {
- const id = getId(orderFormItemToOffer(item))
+ (acc, item, idx) => {
+ const id = hasParentItem(form.items, item.id) || hasChildItem(form.items, item.id) ?
+ `${getId(orderFormItemToOffer(item))}::${idx}` :
+ getId(orderFormItemToOffer(item))
if (!acc[id]) {
acc[id] = []
@@ -377,6 +387,13 @@ export const validateCart = async (
// Update existing items
const [head, ...tail] = maybeOriginItem
+
+ if(hasParentItem(orderForm.items, head.itemOffered.sku) || hasChildItem(orderForm.items, head.itemOffered.sku)) {
+ acc.itemsToUpdate.push(head)
+
+ return acc
+ }
+
const totalQuantity = items.reduce((acc, curr) => acc + curr.quantity, 0)
// set total quantity to first item
From c37b1d1e9dd1965d309fdf4bd52e176ee3e4eecc Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 5 Sep 2024 16:08:54 +0000
Subject: [PATCH 026/154] [no ci] Release: 3.0.99
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index b109f65900..1401e75264 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.98",
+ "version": "3.0.99",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.98",
+ "@faststore/api": "^3.0.99",
"@faststore/sdk": "^3.0.97",
"@faststore/ui": "^3.0.97",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index c0f9da2540..510a38644b 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.98",
+ "version": "3.0.99",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 5173696627..dcea58df66 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.98",
+ "version": "3.0.99",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 5bfee2683c..9d4b4eed71 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.98 linux-x64 node-v18.20.4
+@faststore/cli/3.0.99 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.98/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 8cecc3e508..c3f04d2bd9 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.98",
+ "version": "3.0.99",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.98",
+ "@faststore/core": "^3.0.99",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index faa309dacf..9ae828ac72 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.98",
+ "version": "3.0.99",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.98",
+ "@faststore/api": "^3.0.99",
"@faststore/components": "^3.0.97",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/sdk": "^3.0.97",
From 0917e4e6e0350688352ddc1c6c71009ab1b1c6bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lar=C3=ADcia=20Mota?=
Date: Tue, 10 Sep 2024 10:41:46 -0300
Subject: [PATCH 027/154] Feat: Make simulationBehavior search param
configurable (#2439)
## What's the purpose of this pull request?
Make the `simulationBehavior` param from IS configurable through the
faststore.config file.
## How it works?
When the `simulationBehavior` is present on the config file it'll be
used on the IS fetch, example:
`https://{{account}}.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=12&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip`
Otherwise, if it's not present, it'll continue working as it already
was:
`https://{{account}}.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=12&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false`
## How to test it?
Run `yarn dev` and ensure it's working as expected. Then, add the
`simulationBehavior` param to the `faststore.config.default.js` file
inside the `api` object. Use one of the following values: `default`,
`skip` or `only1P`. Also, ensure it's working as expected.
### Starters Deploy Preview
I've set the `simulationBehavior` to `skip` on
[this](https://github.com/vtex-sites/starter.store/pull/524/files)
preview: https://sfj-2fb19ff--starter.preview.vtex.app/
And in this
[one](https://github.com/vtex-sites/starter.store/pull/525/files) there
isn't a `simulationBehavior` being set on faststore.config:
https://sfj-e8d957e--starter.preview.vtex.app/
One visible difference is that the Magic Mouse product when the
`simulationBehavior` is `skip`, IS returns an `AvailableQuantity` of
`10000` while when the `simulationBehavior` isn't configured it returns
`0`. I've confirmed using the IS API directly:
-
`https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/productClusterIds/140/trade-policy/1?page=1&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&count=10&query=`
and
-
`https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/productClusterIds/140/trade-policy/1?page=1&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip&count=10&query=`
Here are the screenshots showing the previews and the IS return:
| SimulationBehavior = skip | SimulationBehavior not on config |
| ---- | ---- |
|
| |
| |
|
## References
- [Slack
thread](https://vtex.slack.com/archives/C03L3CRCDC4/p1725470335934909)
---
packages/api/mocks/AllProductsQuery.ts | 2 +-
packages/api/mocks/ProductQuery.ts | 2 +-
packages/api/mocks/RedirectQuery.ts | 62 +++++++++----------
packages/api/mocks/SearchQuery.ts | 4 +-
.../platforms/vtex/clients/search/index.ts | 14 +++--
packages/api/src/platforms/vtex/index.ts | 11 ++--
packages/api/test/mutations.test.ts | 6 +-
packages/api/test/queries.test.ts | 59 +++++++++---------
packages/core/src/server/options.ts | 2 +
9 files changed, 85 insertions(+), 77 deletions(-)
diff --git a/packages/api/mocks/AllProductsQuery.ts b/packages/api/mocks/AllProductsQuery.ts
index 437b2426b2..3e23e96b9d 100644
--- a/packages/api/mocks/AllProductsQuery.ts
+++ b/packages/api/mocks/AllProductsQuery.ts
@@ -78,7 +78,7 @@ export const AllProductsQueryFirst5 = `query AllProducts {
`
export const productSearchPage1Count5Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/mocks/ProductQuery.ts b/packages/api/mocks/ProductQuery.ts
index 19d9c13fd2..b9b72a4cbc 100644
--- a/packages/api/mocks/ProductQuery.ts
+++ b/packages/api/mocks/ProductQuery.ts
@@ -63,7 +63,7 @@ export const ProductByIdQuery = `query ProductQuery {
`
export const productSearchFetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A64953394&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A64953394&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/mocks/RedirectQuery.ts b/packages/api/mocks/RedirectQuery.ts
index 485bf99123..1a1b1f1c21 100644
--- a/packages/api/mocks/RedirectQuery.ts
+++ b/packages/api/mocks/RedirectQuery.ts
@@ -6,36 +6,36 @@ export const RedirectQueryTermTech = `query RedirectSearch {
`
export const redirectTermTechFetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=2&count=1&query=tech&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
- init: undefined,
- options: { storeCookies: expect.any(Function) },
- result: {
- products: [],
- recordsFiltered: 0,
- fuzzy: 'auto',
- operator: 'and',
- redirect: '/technology',
- translated: false,
- pagination: {
- count: 1,
- current: {
- index: 0,
- },
- before: [],
- after: [],
- perPage: 0,
- next: {
- index: 0,
- },
- previous: {
- index: 0,
- },
- first: {
- index: 0,
- },
- last: {
- index: 0,
- },
- },
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=2&count=1&query=tech&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
+ init: undefined,
+ options: { storeCookies: expect.any(Function) },
+ result: {
+ products: [],
+ recordsFiltered: 0,
+ fuzzy: 'auto',
+ operator: 'and',
+ redirect: '/technology',
+ translated: false,
+ pagination: {
+ count: 1,
+ current: {
+ index: 0,
+ },
+ before: [],
+ after: [],
+ perPage: 0,
+ next: {
+ index: 0,
+ },
+ previous: {
+ index: 0,
+ },
+ first: {
+ index: 0,
+ },
+ last: {
+ index: 0,
+ },
},
+ },
}
diff --git a/packages/api/mocks/SearchQuery.ts b/packages/api/mocks/SearchQuery.ts
index cab1117ff7..1d426b9c04 100644
--- a/packages/api/mocks/SearchQuery.ts
+++ b/packages/api/mocks/SearchQuery.ts
@@ -101,7 +101,7 @@ export const SearchQueryFirst5Products = `query SearchQuery {
}`
export const productSearchCategory1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
@@ -1395,7 +1395,7 @@ export const productSearchCategory1Fetch = {
}
export const attributeSearchCategory1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/facets/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/facets/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/src/platforms/vtex/clients/search/index.ts b/packages/api/src/platforms/vtex/clients/search/index.ts
index d2c9e7834b..e8331c9f2b 100644
--- a/packages/api/src/platforms/vtex/clients/search/index.ts
+++ b/packages/api/src/platforms/vtex/clients/search/index.ts
@@ -1,17 +1,17 @@
-import { fetchAPI } from '../fetch'
-import type { IStoreSelectedFacet } from '../../../../__generated__/schema'
import type { Context, Options } from '../../'
+import type { IStoreSelectedFacet } from '../../../../__generated__/schema'
+import { getStoreCookie } from '../../utils/cookies'
import type { SelectedFacet } from '../../utils/facets'
+import { fetchAPI } from '../fetch'
import type {
Facet,
- FacetValueBoolean,
FacetSearchResult,
+ FacetValueBoolean,
} from './types/FacetSearchResult'
import type {
ProductSearchResult,
Suggestion,
} from './types/ProductSearchResult'
-import { getStoreCookie } from '../../utils/cookies'
export type Sort =
| 'price:desc'
@@ -49,7 +49,7 @@ export const isFacetBoolean = (
): facet is Facet => facet.type === 'TEXT'
export const IntelligentSearch = (
- { account, environment, hideUnavailableItems }: Options,
+ { account, environment, hideUnavailableItems, simulationBehavior }: Options,
ctx: Context
) => {
const base = `https://${account}.${environment}.com.br/api/io`
@@ -132,6 +132,10 @@ export const IntelligentSearch = (
params.append('hideUnavailableItems', hideUnavailableItems.toString())
}
+ if (simulationBehavior !== undefined) {
+ params.append('simulationBehavior', simulationBehavior.toString())
+ }
+
const pathname = addDefaultFacets(selectedFacets)
.map(({ key, value }) => `${key}/${value}`)
.join('/')
diff --git a/packages/api/src/platforms/vtex/index.ts b/packages/api/src/platforms/vtex/index.ts
index a815793d4e..ba26455b95 100644
--- a/packages/api/src/platforms/vtex/index.ts
+++ b/packages/api/src/platforms/vtex/index.ts
@@ -1,4 +1,7 @@
+import type { Clients } from './clients'
import { getClients } from './clients'
+import type { SearchArgs } from './clients/search'
+import type { Loaders } from './loaders'
import { getLoaders } from './loaders'
import { StoreAggregateOffer } from './resolvers/aggregateOffer'
import { StoreAggregateRating } from './resolvers/aggregateRating'
@@ -6,7 +9,7 @@ import { StoreCollection } from './resolvers/collection'
import {
StoreFacet,
StoreFacetBoolean,
- StoreFacetRange,
+ StoreFacetRange
} from './resolvers/facet'
import { StoreFacetValueBoolean } from './resolvers/faceValue'
import { Mutation } from './resolvers/mutation'
@@ -21,11 +24,8 @@ import { StoreSearchResult } from './resolvers/searchResult'
import { StoreSeo } from './resolvers/seo'
import { ShippingSLA } from './resolvers/shippingSLA'
import { SkuVariants } from './resolvers/skuVariations'
-import ChannelMarshal from './utils/channel'
-import type { Loaders } from './loaders'
-import type { Clients } from './clients'
import type { Channel } from './utils/channel'
-import type { SearchArgs } from './clients/search'
+import ChannelMarshal from './utils/channel'
export interface Options {
platform: 'vtex'
@@ -36,6 +36,7 @@ export interface Options {
channel: string
locale: string
hideUnavailableItems: boolean
+ simulationBehavior?: 'default' | 'skip' | 'only1P'
incrementAddress: boolean
flags?: FeatureFlags
}
diff --git a/packages/api/test/mutations.test.ts b/packages/api/test/mutations.test.ts
index 4a94d6eade..09dc13ccd9 100644
--- a/packages/api/test/mutations.test.ts
+++ b/packages/api/test/mutations.test.ts
@@ -1,5 +1,6 @@
import { execute, parse } from 'graphql'
+import { salesChannelStaleFetch } from '../mocks/salesChannel'
import {
checkoutOrderFormCustomDataInvalidFetch,
checkoutOrderFormCustomDataStaleFetch,
@@ -14,9 +15,8 @@ import {
ValidateCartMutation,
ValidCart,
} from '../mocks/ValidateCartMutation'
-import { getContextFactory, getSchema } from '../src'
-import { salesChannelStaleFetch } from '../mocks/salesChannel'
import type { Options } from '../src'
+import { getContextFactory, getSchema } from '../src'
const apiOptions = {
platform: 'vtex',
@@ -106,7 +106,7 @@ test('`validateCart` mutation should return `null` when a valid cart is passed',
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
diff --git a/packages/api/test/queries.test.ts b/packages/api/test/queries.test.ts
index 677d2946fd..78e4f772b5 100644
--- a/packages/api/test/queries.test.ts
+++ b/packages/api/test/queries.test.ts
@@ -1,44 +1,44 @@
import { execute, parse } from 'graphql'
-import type { Options } from '../src'
-import { getSchema, getContextFactory } from '../src'
+import {
+ AllCollectionsQueryFirst5,
+ catalogBrandListFetch,
+ catalogCategory3Fetch,
+ catalogPageTypeAcer,
+ catalogPageTypeAdidas,
+ catalogPageTypeBrand,
+ catalogPageTypeIRobot,
+ catalogPageTypeSkechers
+} from '../mocks/AllCollectionsQuery'
import {
AllProductsQueryFirst5,
- productSearchPage1Count5Fetch,
+ productSearchPage1Count5Fetch
} from '../mocks/AllProductsQuery'
import {
CollectionDesksQuery,
pageTypeDesksFetch,
pageTypeOfficeDesksFetch,
- pageTypeOfficeFetch,
+ pageTypeOfficeFetch
} from '../mocks/CollectionQuery'
import { ProductByIdQuery, productSearchFetch } from '../mocks/ProductQuery'
import {
- AllCollectionsQueryFirst5,
- catalogBrandListFetch,
- catalogCategory3Fetch,
- catalogPageTypeAcer,
- catalogPageTypeAdidas,
- catalogPageTypeBrand,
- catalogPageTypeIRobot,
- catalogPageTypeSkechers,
-} from '../mocks/AllCollectionsQuery'
+ RedirectQueryTermTech,
+ redirectTermTechFetch
+} from '../mocks/RedirectQuery'
+import { salesChannelStaleFetch } from '../mocks/salesChannel'
import {
- SearchQueryFirst5Products,
- productSearchCategory1Fetch,
attributeSearchCategory1Fetch,
+ productSearchCategory1Fetch,
+ SearchQueryFirst5Products
} from '../mocks/SearchQuery'
-import { salesChannelStaleFetch } from '../mocks/salesChannel'
+import { regionFetch, SellersQueryResult } from '../mocks/SellersQuery'
import {
- shippingSimulationFetch,
addressFetch,
- ShippingSimulationQueryResult,
+ shippingSimulationFetch,
+ ShippingSimulationQueryResult
} from '../mocks/ShippingQuery'
-import {
- RedirectQueryTermTech,
- redirectTermTechFetch,
-} from '../mocks/RedirectQuery'
-import { SellersQueryResult, regionFetch } from '../mocks/SellersQuery'
+import type { Options } from '../src'
+import { getContextFactory, getSchema } from '../src'
const apiOptions = {
platform: 'vtex',
@@ -48,6 +48,7 @@ const apiOptions = {
locale: 'en-US',
subDomainPrefix: ['www'],
hideUnavailableItems: false,
+ simulationBehavior: 'skip',
incrementAddress: false,
flags: {
enableOrderFormSync: true,
@@ -128,7 +129,7 @@ test('`collection` query', async () => {
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
@@ -150,7 +151,7 @@ test('`product` query', async () => {
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
@@ -180,7 +181,7 @@ test('`allCollections` query', async () => {
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
@@ -202,7 +203,7 @@ test('`allProducts` query', async () => {
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
@@ -228,7 +229,7 @@ test('`search` query', async () => {
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
@@ -293,7 +294,7 @@ test('`sellers` query', async () => {
expect(mockedFetch).toHaveBeenCalledWith(
fetchAPICall.info,
fetchAPICall.init,
- fetchAPICall.options,
+ fetchAPICall.options
)
})
expect(response).toMatchSnapshot()
diff --git a/packages/core/src/server/options.ts b/packages/core/src/server/options.ts
index 5d75d8bed6..b40e7e3654 100644
--- a/packages/core/src/server/options.ts
+++ b/packages/core/src/server/options.ts
@@ -8,6 +8,8 @@ export const apiOptions: APIOptions = {
environment: storeConfig.api.environment as APIOptions['environment'],
subDomainPrefix: storeConfig.api.subDomainPrefix ?? ['www'],
hideUnavailableItems: storeConfig.api.hideUnavailableItems,
+ simulationBehavior: (storeConfig.api as Record)
+ .simulationBehavior,
incrementAddress: storeConfig.api.incrementAddress,
channel: storeConfig.session.channel,
locale: storeConfig.session.locale,
From 3670e7871aaf7ada1b32287e890b076c7f81c54f Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 10 Sep 2024 13:46:59 +0000
Subject: [PATCH 028/154] [no ci] Release: 3.0.100
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 1401e75264..6854b23a08 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.99",
+ "version": "3.0.100",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.99",
+ "@faststore/api": "^3.0.100",
"@faststore/sdk": "^3.0.97",
"@faststore/ui": "^3.0.97",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index 510a38644b..70d1c4190e 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.99",
+ "version": "3.0.100",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index dcea58df66..e79d36acfd 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.99",
+ "version": "3.0.100",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 9d4b4eed71..349d19269c 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.99 linux-x64 node-v18.20.4
+@faststore/cli/3.0.100 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.99/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index c3f04d2bd9..5d6a57c5a7 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.99",
+ "version": "3.0.100",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.99",
+ "@faststore/core": "^3.0.100",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 9ae828ac72..bd3c002f30 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.99",
+ "version": "3.0.100",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.99",
+ "@faststore/api": "^3.0.100",
"@faststore/components": "^3.0.97",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/sdk": "^3.0.97",
From f25908c7c87daf99f307f463fb7ec09c8ee16f5a Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 10 Sep 2024 17:45:50 -0300
Subject: [PATCH 029/154] fix: adds optional icon to icon prop (#2443)
## What's the purpose of this pull request?
This PR attempts to fix type errors related to this component in some
customer's stores.
```
./src/components/region/RegionModal/RegionModal.tsx:76:10
Type error: Right operand of ?? is unreachable because the left operand is never nullish.
```
## How it works?
## How to test it?
### Starters Deploy Preview
## References
---
.../core/src/components/region/RegionModal/RegionModal.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/core/src/components/region/RegionModal/RegionModal.tsx b/packages/core/src/components/region/RegionModal/RegionModal.tsx
index 2f001ae91c..40213fd5de 100644
--- a/packages/core/src/components/region/RegionModal/RegionModal.tsx
+++ b/packages/core/src/components/region/RegionModal/RegionModal.tsx
@@ -22,7 +22,7 @@ interface RegionModalProps {
text?: string
to?: string
icon?: {
- icon: string
+ icon?: string
alt: string
}
}
@@ -73,7 +73,7 @@ function RegionModal({
children: (
<>
{idkPostalCodeLinkText}
- {!!idkPostalCodeLinkIcon ?? (
+ {!!idkPostalCodeLinkIcon && (
Date: Tue, 10 Sep 2024 20:51:19 +0000
Subject: [PATCH 030/154] [no ci] Release: 3.0.101
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 70d1c4190e..be9953fc5b 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.100",
+ "version": "3.0.101",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 349d19269c..b1cfc3636a 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.100 linux-x64 node-v18.20.4
+@faststore/cli/3.0.101 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.100/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 5d6a57c5a7..4ef4ffe0c1 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.100",
+ "version": "3.0.101",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.100",
+ "@faststore/core": "^3.0.101",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index bd3c002f30..e85a20f2ad 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.100",
+ "version": "3.0.101",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 3cfc1989745e3b97cd346dc7ac49a3f2806b9358 Mon Sep 17 00:00:00 2001
From: JoelsonFerreiraM3 <121126786+JoelsonFerreiraM3@users.noreply.github.com>
Date: Tue, 10 Sep 2024 21:27:42 -0300
Subject: [PATCH 031/154] Fix: Custom theme import priority (#2442)
## What's the purpose of this pull request?
Fix custom theme import priority
---------
Co-authored-by: Fanny Chien
---
packages/core/src/pages/_app.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/packages/core/src/pages/_app.tsx b/packages/core/src/pages/_app.tsx
index 4335056e0d..97fef596f3 100644
--- a/packages/core/src/pages/_app.tsx
+++ b/packages/core/src/pages/_app.tsx
@@ -5,8 +5,10 @@ import Layout from 'src/Layout'
import AnalyticsHandler from 'src/sdk/analytics'
import ErrorBoundary from 'src/sdk/error/ErrorBoundary'
import SEO from '../../next-seo.config'
-import '../customizations/src/themes/index.scss'
+
+// FastStore UI's base styles
import '../styles/global/index.scss'
+import '../customizations/src/themes/index.scss'
import { DefaultSeo } from 'next-seo'
From ea149271ded00f5820d598babb39d79585c43e4f Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 11 Sep 2024 00:32:54 +0000
Subject: [PATCH 032/154] [no ci] Release: 3.0.102
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index be9953fc5b..b2c6896c71 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.101",
+ "version": "3.0.102",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index b1cfc3636a..9e8aa91237 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.101 linux-x64 node-v18.20.4
+@faststore/cli/3.0.102 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.101/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 4ef4ffe0c1..624e23bd3a 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.101",
+ "version": "3.0.102",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.101",
+ "@faststore/core": "^3.0.102",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index e85a20f2ad..3204f7dffe 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.101",
+ "version": "3.0.102",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From cd93d30b62a254758a63de2a696d5ff25267a7ad Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Thu, 12 Sep 2024 10:18:04 -0300
Subject: [PATCH 033/154] Feat: Adds jest-axe and Card component test (#2440)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
- Setup `@testing-library/jest-dom` to help to test our components when
checking an element's attributes, its text content, its css classes...
- Adds `Card` component tests
- Introduces accessibility tests: This won't guarantee that what we're
building is accessible, but it's a first step towards it. 🥳
- Updates `CheckboxField` component test
TODO: Document
## How it works?
Currently, our components library do not have tests, but we want to
introduce them for upcoming components. For existing components, we will
gradually add tests retroactively.
## How to test it?
1. navigate to `packages/components` -> run `yarn install`
2. run `yarn test`, you will be able to see the tests running
_____
3. removing `` component from `CheckboxField`, when running the
step 2, you will get:
## References
https://testing-library.com/docs/ecosystem-jest-dom
https://github.com/testing-library/jest-dom/issues/546
https://github.com/nickcolley/jest-axe/issues/79
---
apps/site/pages/components/molecules/card.mdx | 20 +-
packages/components/jest.config.js | 2 +
packages/components/jest.setup.ts | 3 +
packages/components/package.json | 3 +
.../test/molecules/Card/Card.test.tsx | 55 +
.../CheckboxField/CheckboxField.test.tsx | 44 +-
packages/components/tsconfig.json | 5 +-
yarn.lock | 5606 ++++++++---------
8 files changed, 2735 insertions(+), 3003 deletions(-)
create mode 100644 packages/components/jest.setup.ts
create mode 100644 packages/components/test/molecules/Card/Card.test.tsx
diff --git a/apps/site/pages/components/molecules/card.mdx b/apps/site/pages/components/molecules/card.mdx
index 74999d4356..086b42a026 100644
--- a/apps/site/pages/components/molecules/card.mdx
+++ b/apps/site/pages/components/molecules/card.mdx
@@ -51,9 +51,9 @@ Card displays some information divided into a body and a header.
iconName="PlusCircle"
title="Card with Icon"
style={{width: '300px'}}>
- First Product
+ First Product
- Second Product
+ Second Product
@@ -61,7 +61,7 @@ Card displays some information divided into a body and a header.
- Message
+ Message
@@ -71,9 +71,9 @@ Card displays some information divided into a body and a header.
iconName="PlusCircle"
title="Card with Icon"
style={{width: '300px'}}>
- First Product
+ First Product
- Second Product
+ Second Product
```
@@ -81,7 +81,7 @@ Card displays some information divided into a body and a header.
- Message
+ Message
```
@@ -120,9 +120,9 @@ Follow the instructions in the [Importing FastStore UI component styles](/docs/c
iconName="PlusCircle"
title="Product List"
style={{width: '300px'}}>
- First Product
+ First Product
- Second Product
+ Second Product
```tsx
@@ -130,9 +130,9 @@ Follow the instructions in the [Importing FastStore UI component styles](/docs/c
iconName="PlusCircle"
title="Product List"
style={{width: '300px'}}>
- First Product
+ First Product
- Second Product
+ Second Product
```
diff --git a/packages/components/jest.config.js b/packages/components/jest.config.js
index 56463ece26..d9173cbfc9 100644
--- a/packages/components/jest.config.js
+++ b/packages/components/jest.config.js
@@ -2,5 +2,7 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'jest-environment-jsdom',
+ setupFilesAfterEnv: ['/jest.setup.ts'],
}
+
diff --git a/packages/components/jest.setup.ts b/packages/components/jest.setup.ts
new file mode 100644
index 0000000000..008306dadb
--- /dev/null
+++ b/packages/components/jest.setup.ts
@@ -0,0 +1,3 @@
+import '@testing-library/jest-dom';
+import '@testing-library/jest-dom/jest-globals';
+
diff --git a/packages/components/package.json b/packages/components/package.json
index 921d1f82e2..c6a6c5f60c 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -37,11 +37,14 @@
"devDependencies": {
"@faststore/eslint-config": "^3.0.97",
"@faststore/shared": "^3.0.97",
+ "@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
+ "@types/jest-axe": "^3.5.9",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"eslint": "7.32.0",
"jest": "^29.7.0",
+ "jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.8.4"
diff --git a/packages/components/test/molecules/Card/Card.test.tsx b/packages/components/test/molecules/Card/Card.test.tsx
new file mode 100644
index 0000000000..58dc57241f
--- /dev/null
+++ b/packages/components/test/molecules/Card/Card.test.tsx
@@ -0,0 +1,55 @@
+import { describe, expect, it } from '@jest/globals'
+import '@testing-library/jest-dom'
+import { render, screen } from '@testing-library/react'
+import { axe, toHaveNoViolations } from 'jest-axe'
+
+import React from 'react'
+
+import { Card } from '../../../src/index'
+
+expect.extend(toHaveNoViolations)
+
+describe('Card', () => {
+ const mockIconAction = jest.fn()
+ it('renders with title', () => {
+ render( )
+
+ const cardTitle = screen.getByText('Test Card')
+ expect(cardTitle).toBeInTheDocument()
+ })
+
+ it('renders with custom max width', () => {
+ render( )
+
+ const card = screen.getByTestId('fs-card')
+ expect(card).toHaveStyle('max-width: 500px')
+ })
+
+ it('renders with icon', () => {
+ render( )
+
+ const iconButton = screen.getByLabelText(
+ 'Test Card action'
+ ) as HTMLButtonElement
+ expect(iconButton).toBeInTheDocument()
+ })
+
+ it('executes the icon action when clicked', () => {
+ render(
+
+ )
+
+ const iconButton = screen.getByLabelText(
+ 'Test Card action'
+ ) as HTMLButtonElement
+ iconButton.click()
+ expect(mockIconAction).toHaveBeenCalled()
+ })
+
+ it('should not fail any accessibility tests', async () => {
+ const { container } = render(
+
+ )
+ expect(await axe(container)).toHaveNoViolations()
+ })
+})
diff --git a/packages/components/test/molecules/CheckboxField/CheckboxField.test.tsx b/packages/components/test/molecules/CheckboxField/CheckboxField.test.tsx
index 9228f58b60..d8dabec56f 100644
--- a/packages/components/test/molecules/CheckboxField/CheckboxField.test.tsx
+++ b/packages/components/test/molecules/CheckboxField/CheckboxField.test.tsx
@@ -1,16 +1,39 @@
-import { describe, it, expect } from '@jest/globals'
+import { describe, expect, it } from '@jest/globals'
import { render, screen } from '@testing-library/react'
+import { axe, toHaveNoViolations } from 'jest-axe'
+
import React from 'react'
import { CheckboxField } from '../../../src/index'
+expect.extend(toHaveNoViolations)
+
describe('CheckboxField', () => {
- it('renders all examples from the documentation', () => {
+ it('renders the default state', () => {
render( )
+
+ const input = screen.getByLabelText('Default') as HTMLInputElement
+
+ expect(input.checked).toBe(false)
+ })
+
+ it('renders the checked state', () => {
render( )
+
+ const input = screen.getByLabelText('Checked') as HTMLInputElement
+ expect(input.checked).toBe(true)
+ })
+
+ it('renders the disabled state', () => {
render(
)
+
+ const input = screen.getByLabelText('Disabled') as HTMLInputElement
+ expect(input.disabled).toBe(true)
+ })
+
+ it('renders the checked/partial state', () => {
render(
{
partial
/>
)
+
+ const input = screen.getByLabelText('Checked & Partial') as HTMLInputElement
+ expect(input.checked).toBe(true)
})
describe('#checked', () => {
it('should allow the checked property to be passed', () => {
render( )
- const input = screen.getByLabelText('Label') as HTMLInputElement
+ const input = screen.getByLabelText('Label') as HTMLInputElement
expect(input.checked).toBe(true)
})
- it('should not be checked if the `checked `prop is not passed', () => {
+ it('should not be checked if the `checked` prop is not passed', () => {
render( )
- const input = screen.getByLabelText('Label') as HTMLInputElement
+ const input = screen.getByLabelText('Label') as HTMLInputElement
expect(input.checked).toBe(false)
})
})
+
+ it('should not fail any accessibility tests', async () => {
+ const { container } = render(
+
+ )
+
+ expect(await axe(container)).toHaveNoViolations()
+ })
})
diff --git a/packages/components/tsconfig.json b/packages/components/tsconfig.json
index 62cbf3b95a..9cd349a9fd 100644
--- a/packages/components/tsconfig.json
+++ b/packages/components/tsconfig.json
@@ -1,7 +1,8 @@
{
"extends": "@faststore/shared/tsconfig.json",
"compilerOptions": {
- "outDir": "dist"
+ "outDir": "dist",
+ "types": ["@testing-library/jest-dom/jest-globals"]
},
"include": ["src"],
"exclude": [
@@ -9,6 +10,6 @@
"src/**/*.test.tsx",
"src/**/*.stories.ts",
"src/**/*.stories.tsx",
- "src/typings/utils.d.ts",
+ "src/typings/utils.d.ts"
]
}
diff --git a/yarn.lock b/yarn.lock
index 91f73b9573..557bcdbfe8 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,30 +2,27 @@
# yarn lockfile v1
-"@ampproject/remapping@^2.1.0":
+"@adobe/css-tools@^4.4.0":
+ version "4.4.0"
+ resolved "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.0.tgz"
+ integrity sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==
+
+"@ampproject/remapping@^2.2.0":
version "2.2.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
+ resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@ampproject/remapping@^2.2.0":
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
- integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==
- dependencies:
- "@jridgewell/gen-mapping" "^0.3.0"
- "@jridgewell/trace-mapping" "^0.3.9"
-
"@antfu/ni@^0.21.12":
version "0.21.12"
- resolved "https://registry.yarnpkg.com/@antfu/ni/-/ni-0.21.12.tgz#54d33cf0e6d35cb2ec12ab3d5092e4904540b7c0"
+ resolved "https://registry.npmjs.org/@antfu/ni/-/ni-0.21.12.tgz"
integrity sha512-2aDL3WUv8hMJb2L3r/PIQWsTLyq7RQr3v9xD16fiz6O8ys1xEyLhhTOv8gxtZvJiTzjTF5pHoArvRdesGL1DMQ==
"@ardatan/relay-compiler@12.0.0":
version "12.0.0"
- resolved "https://registry.yarnpkg.com/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz#2e4cca43088e807adc63450e8cab037020e91106"
+ resolved "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz"
integrity sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==
dependencies:
"@babel/core" "^7.14.0"
@@ -48,94 +45,68 @@
"@ardatan/sync-fetch@^0.0.1":
version "0.0.1"
- resolved "https://registry.yarnpkg.com/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz#3385d3feedceb60a896518a1db857ec1e945348f"
+ resolved "https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz"
integrity sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==
dependencies:
node-fetch "^2.6.1"
"@babel/code-frame@7.12.11":
version "7.12.11"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
+ resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz"
+ integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==
+ dependencies:
+ "@babel/highlight" "^7.24.7"
+ picocolors "^1.0.0"
+
+"@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.2":
version "7.24.2"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae"
+ resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz"
integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==
dependencies:
"@babel/highlight" "^7.24.2"
picocolors "^1.0.0"
-"@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.22.5":
- version "7.22.13"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
- integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
- dependencies:
- "@babel/highlight" "^7.22.13"
- chalk "^2.4.2"
-
-"@babel/compat-data@^7.20.5":
- version "7.20.10"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.10.tgz#9d92fa81b87542fff50e848ed585b4212c1d34ec"
- integrity sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==
-
-"@babel/compat-data@^7.22.9":
- version "7.22.9"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
- integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
+"@babel/compat-data@^7.20.5", "@babel/compat-data@^7.25.2":
+ version "7.25.4"
+ resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz"
+ integrity sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==
"@babel/compat-data@^7.23.5":
version "7.24.4"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a"
+ resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz"
integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==
-"@babel/core@^7.0.1", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.7.5":
- version "7.20.12"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d"
- integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.7"
- "@babel/helper-compilation-targets" "^7.20.7"
- "@babel/helper-module-transforms" "^7.20.11"
- "@babel/helpers" "^7.20.7"
- "@babel/parser" "^7.20.7"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.12"
- "@babel/types" "^7.20.7"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.2"
- semver "^6.3.0"
-
-"@babel/core@^7.11.6":
- version "7.22.9"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.9.tgz#bd96492c68822198f33e8a256061da3cf391f58f"
- integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==
+"@babel/core@^7.0.1", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.7.5":
+ version "7.25.2"
+ resolved "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz"
+ integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
dependencies:
"@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.22.5"
- "@babel/generator" "^7.22.9"
- "@babel/helper-compilation-targets" "^7.22.9"
- "@babel/helper-module-transforms" "^7.22.9"
- "@babel/helpers" "^7.22.6"
- "@babel/parser" "^7.22.7"
- "@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.8"
- "@babel/types" "^7.22.5"
- convert-source-map "^1.7.0"
+ "@babel/code-frame" "^7.24.7"
+ "@babel/generator" "^7.25.0"
+ "@babel/helper-compilation-targets" "^7.25.2"
+ "@babel/helper-module-transforms" "^7.25.2"
+ "@babel/helpers" "^7.25.0"
+ "@babel/parser" "^7.25.0"
+ "@babel/template" "^7.25.0"
+ "@babel/traverse" "^7.25.2"
+ "@babel/types" "^7.25.2"
+ convert-source-map "^2.0.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
- json5 "^2.2.2"
+ json5 "^2.2.3"
semver "^6.3.1"
"@babel/core@^7.22.9":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.5.tgz#15ab5b98e101972d171aeef92ac70d8d6718f06a"
+ resolved "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz"
integrity sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==
dependencies:
"@ampproject/remapping" "^2.2.0"
@@ -154,19 +125,19 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/generator@^7.14.0", "@babel/generator@^7.17.9", "@babel/generator@^7.18.13", "@babel/generator@^7.20.7", "@babel/generator@^7.22.9", "@babel/generator@^7.23.0", "@babel/generator@^7.7.2":
- version "7.23.3"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.3.tgz#86e6e83d95903fbe7613f448613b8b319f330a8e"
- integrity sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==
+"@babel/generator@^7.14.0", "@babel/generator@^7.17.9", "@babel/generator@^7.18.13", "@babel/generator@^7.25.0", "@babel/generator@^7.25.6", "@babel/generator@^7.7.2":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz"
+ integrity sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==
dependencies:
- "@babel/types" "^7.23.3"
- "@jridgewell/gen-mapping" "^0.3.2"
- "@jridgewell/trace-mapping" "^0.3.17"
+ "@babel/types" "^7.25.6"
+ "@jridgewell/gen-mapping" "^0.3.5"
+ "@jridgewell/trace-mapping" "^0.3.25"
jsesc "^2.5.1"
"@babel/generator@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.5.tgz#e5afc068f932f05616b66713e28d0f04e99daeb3"
+ resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz"
integrity sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==
dependencies:
"@babel/types" "^7.24.5"
@@ -176,36 +147,25 @@
"@babel/helper-annotate-as-pure@^7.18.6":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
+ resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"
integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
- integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
- dependencies:
- "@babel/compat-data" "^7.20.5"
- "@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.21.3"
- lru-cache "^5.1.1"
- semver "^6.3.0"
-
-"@babel/helper-compilation-targets@^7.22.9":
- version "7.22.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz#f9d0a7aaaa7cd32a3f31c9316a69f5a9bcacb892"
- integrity sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==
+"@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.25.2":
+ version "7.25.2"
+ resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz"
+ integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==
dependencies:
- "@babel/compat-data" "^7.22.9"
- "@babel/helper-validator-option" "^7.22.5"
- browserslist "^4.21.9"
+ "@babel/compat-data" "^7.25.2"
+ "@babel/helper-validator-option" "^7.24.8"
+ browserslist "^4.23.1"
lru-cache "^5.1.1"
semver "^6.3.1"
"@babel/helper-compilation-targets@^7.23.6":
version "7.23.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991"
+ resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz"
integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==
dependencies:
"@babel/compat-data" "^7.23.5"
@@ -216,7 +176,7 @@
"@babel/helper-create-class-features-plugin@^7.18.6":
version "7.20.12"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz#4349b928e79be05ed2d1643b20b99bb87c503819"
+ resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz"
integrity sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
@@ -228,82 +188,61 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/helper-split-export-declaration" "^7.18.6"
-"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5":
+"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.22.20":
version "7.22.20"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
+ resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz"
integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.23.0":
version "7.23.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
+ resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz"
integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
dependencies:
"@babel/template" "^7.22.15"
"@babel/types" "^7.23.0"
"@babel/helper-hoist-variables@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
- integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
+ version "7.24.7"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz#b4ede1cde2fd89436397f30dc9376ee06b0f25ee"
+ integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==
dependencies:
- "@babel/types" "^7.22.5"
+ "@babel/types" "^7.24.7"
"@babel/helper-member-expression-to-functions@^7.20.7":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05"
+ resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz"
integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==
dependencies:
"@babel/types" "^7.20.7"
-"@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-module-imports@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c"
- integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==
+"@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz"
+ integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==
dependencies:
- "@babel/types" "^7.22.5"
+ "@babel/traverse" "^7.24.7"
+ "@babel/types" "^7.24.7"
"@babel/helper-module-imports@^7.24.3":
version "7.24.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128"
+ resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz"
integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==
dependencies:
"@babel/types" "^7.24.0"
-"@babel/helper-module-transforms@^7.20.11":
- version "7.20.11"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0"
- integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==
+"@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.25.2":
+ version "7.25.2"
+ resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz"
+ integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.20.2"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.10"
- "@babel/types" "^7.20.7"
-
-"@babel/helper-module-transforms@^7.22.9":
- version "7.22.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129"
- integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==
- dependencies:
- "@babel/helper-environment-visitor" "^7.22.5"
- "@babel/helper-module-imports" "^7.22.5"
- "@babel/helper-simple-access" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.6"
- "@babel/helper-validator-identifier" "^7.22.5"
+ "@babel/helper-module-imports" "^7.24.7"
+ "@babel/helper-simple-access" "^7.24.7"
+ "@babel/helper-validator-identifier" "^7.24.7"
+ "@babel/traverse" "^7.25.2"
"@babel/helper-module-transforms@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz#ea6c5e33f7b262a0ae762fd5986355c45f54a545"
+ resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.5.tgz"
integrity sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==
dependencies:
"@babel/helper-environment-visitor" "^7.22.20"
@@ -314,24 +253,24 @@
"@babel/helper-optimise-call-expression@^7.18.6":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
+ resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz"
integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0":
version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
+ resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"
integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
"@babel/helper-plugin-utils@^7.22.5":
version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295"
+ resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"
integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==
"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331"
+ resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz"
integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
@@ -341,152 +280,114 @@
"@babel/traverse" "^7.20.7"
"@babel/types" "^7.20.7"
-"@babel/helper-simple-access@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
- integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
- dependencies:
- "@babel/types" "^7.20.2"
-
-"@babel/helper-simple-access@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de"
- integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==
+"@babel/helper-simple-access@^7.20.2", "@babel/helper-simple-access@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz"
+ integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==
dependencies:
- "@babel/types" "^7.22.5"
+ "@babel/traverse" "^7.24.7"
+ "@babel/types" "^7.24.7"
"@babel/helper-simple-access@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz#50da5b72f58c16b07fbd992810be6049478e85ba"
+ resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.5.tgz"
integrity sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==
dependencies:
"@babel/types" "^7.24.5"
"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
+ resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz"
integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
dependencies:
"@babel/types" "^7.20.0"
-"@babel/helper-split-export-declaration@^7.18.6", "@babel/helper-split-export-declaration@^7.22.6":
+"@babel/helper-split-export-declaration@^7.18.6":
version "7.22.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
+ resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"
integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-split-export-declaration@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz#b9a67f06a46b0b339323617c8c6213b9055a78b6"
+ resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz"
integrity sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==
dependencies:
"@babel/types" "^7.24.5"
-"@babel/helper-string-parser@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
- integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
-
"@babel/helper-string-parser@^7.24.1":
version "7.24.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e"
+ resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz"
integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==
-"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
- integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-
-"@babel/helper-validator-identifier@^7.22.20":
- version "7.22.20"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
- integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
-
-"@babel/helper-validator-identifier@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
- integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
+"@babel/helper-string-parser@^7.24.8":
+ version "7.24.8"
+ resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz"
+ integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
"@babel/helper-validator-identifier@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz#918b1a7fa23056603506370089bd990d8720db62"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz"
integrity sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==
-"@babel/helper-validator-option@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
- integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-
-"@babel/helper-validator-option@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac"
- integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==
+"@babel/helper-validator-identifier@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"
+ integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
"@babel/helper-validator-option@^7.23.5":
version "7.23.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz"
integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==
-"@babel/helpers@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
- integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
- dependencies:
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/helpers@^7.22.6":
- version "7.22.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd"
- integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==
- dependencies:
- "@babel/template" "^7.22.5"
- "@babel/traverse" "^7.22.6"
- "@babel/types" "^7.22.5"
+"@babel/helper-validator-option@^7.24.8":
+ version "7.24.8"
+ resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz"
+ integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==
"@babel/helpers@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.5.tgz#fedeb87eeafa62b621160402181ad8585a22a40a"
+ resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.5.tgz"
integrity sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==
dependencies:
"@babel/template" "^7.24.0"
"@babel/traverse" "^7.24.5"
"@babel/types" "^7.24.5"
-"@babel/highlight@^7.10.4":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
- integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
+"@babel/helpers@^7.25.0":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz"
+ integrity sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==
dependencies:
- "@babel/helper-validator-identifier" "^7.18.6"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
+ "@babel/template" "^7.25.0"
+ "@babel/types" "^7.25.6"
-"@babel/highlight@^7.22.13", "@babel/highlight@^7.24.2":
- version "7.24.2"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26"
- integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==
+"@babel/highlight@^7.10.4", "@babel/highlight@^7.24.2", "@babel/highlight@^7.24.7":
+ version "7.24.7"
+ resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz"
+ integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==
dependencies:
- "@babel/helper-validator-identifier" "^7.22.20"
+ "@babel/helper-validator-identifier" "^7.24.7"
chalk "^2.4.2"
js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.13.0", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.22.5", "@babel/parser@^7.22.7", "@babel/parser@^7.23.0":
- version "7.23.3"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.3.tgz#0ce0be31a4ca4f1884b5786057cadcb6c3be58f9"
- integrity sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==
+"@babel/parser@^7.1.0", "@babel/parser@^7.13.0", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.8", "@babel/parser@^7.20.7", "@babel/parser@^7.25.0", "@babel/parser@^7.25.6":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz"
+ integrity sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==
+ dependencies:
+ "@babel/types" "^7.25.6"
"@babel/parser@^7.24.0", "@babel/parser@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.5.tgz#4a4d5ab4315579e5398a82dcf636ca80c3392790"
+ resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.24.5.tgz"
integrity sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==
"@babel/plugin-proposal-class-properties@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
+ resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.18.6"
@@ -494,7 +395,7 @@
"@babel/plugin-proposal-object-rest-spread@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
+ resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz"
integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
dependencies:
"@babel/compat-data" "^7.20.5"
@@ -505,147 +406,147 @@
"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.0.0", "@babel/plugin-syntax-class-properties@^7.8.3":
version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz"
integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-import-assertions@^7.20.0":
version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz"
integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==
dependencies:
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/plugin-syntax-import-meta@^7.8.3":
version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.18.6":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz"
integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-jsx@^7.7.2":
version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz"
integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272"
+ resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz"
integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-arrow-functions@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz"
integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz"
integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-block-scoping@^7.0.0":
version "7.20.11"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.11.tgz#9f5a3424bd112a3f32fe0cf9364fbb155cff262a"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.11.tgz"
integrity sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-classes@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz#f438216f094f6bb31dc266ebfab8ff05aecad073"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz"
integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
@@ -660,7 +561,7 @@
"@babel/plugin-transform-computed-properties@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz"
integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -668,14 +569,14 @@
"@babel/plugin-transform-destructuring@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz#8bda578f71620c7de7c93af590154ba331415454"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz"
integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-flow-strip-types@^7.0.0":
version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz"
integrity sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==
dependencies:
"@babel/helper-plugin-utils" "^7.19.0"
@@ -683,14 +584,14 @@
"@babel/plugin-transform-for-of@^7.0.0":
version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz"
integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-function-name@^7.0.0":
version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"
integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==
dependencies:
"@babel/helper-compilation-targets" "^7.18.9"
@@ -699,21 +600,21 @@
"@babel/plugin-transform-literals@^7.0.0":
version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"
integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-transform-member-expression-literals@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz"
integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-modules-commonjs@^7.0.0":
version "7.20.11"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz#8cb23010869bf7669fd4b3098598b6b2be6dc607"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz"
integrity sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==
dependencies:
"@babel/helper-module-transforms" "^7.20.11"
@@ -722,7 +623,7 @@
"@babel/plugin-transform-object-super@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz"
integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
@@ -730,28 +631,28 @@
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz"
integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-property-literals@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz"
integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-display-name@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz"
integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz#025d85a1935fd7e19dfdcb1b1d4df34d4da484f7"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.7.tgz"
integrity sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
@@ -762,14 +663,14 @@
"@babel/plugin-transform-shorthand-properties@^7.0.0":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz"
integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-spread@^7.0.0":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz"
integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -777,14 +678,14 @@
"@babel/plugin-transform-template-literals@^7.0.0":
version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e"
+ resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"
integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/runtime-corejs3@^7.10.2":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.7.tgz#a1e5ea3d758ba6beb715210142912e3f29981d84"
+ resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.7.tgz"
integrity sha512-jr9lCZ4RbRQmCR28Q8U8Fu49zvFqLxTY9AMOUz+iyMohMoAgpEcVxY+wJNay99oXOpOcCTODkk70NDN2aaJEeg==
dependencies:
core-js-pure "^3.25.1"
@@ -792,73 +693,52 @@
"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.9":
version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
+ resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.7.tgz"
integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
dependencies:
regenerator-runtime "^0.13.11"
"@babel/runtime@^7.14.6":
version "7.20.13"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b"
+ resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz"
integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==
dependencies:
regenerator-runtime "^0.13.11"
-"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
- integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/template@^7.22.15":
- version "7.22.15"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
- integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
+"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.22.15", "@babel/template@^7.25.0", "@babel/template@^7.3.3":
+ version "7.25.0"
+ resolved "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz"
+ integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
dependencies:
- "@babel/code-frame" "^7.22.13"
- "@babel/parser" "^7.22.15"
- "@babel/types" "^7.22.15"
-
-"@babel/template@^7.22.5":
- version "7.22.5"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec"
- integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==
- dependencies:
- "@babel/code-frame" "^7.22.5"
- "@babel/parser" "^7.22.5"
- "@babel/types" "^7.22.5"
+ "@babel/code-frame" "^7.24.7"
+ "@babel/parser" "^7.25.0"
+ "@babel/types" "^7.25.0"
"@babel/template@^7.24.0":
version "7.24.0"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50"
+ resolved "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz"
integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==
dependencies:
"@babel/code-frame" "^7.23.5"
"@babel/parser" "^7.24.0"
"@babel/types" "^7.24.0"
-"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.9", "@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.7", "@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8":
- version "7.23.2"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
- integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
+"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.9", "@babel/traverse@^7.20.7", "@babel/traverse@^7.24.7", "@babel/traverse@^7.25.2":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz"
+ integrity sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==
dependencies:
- "@babel/code-frame" "^7.22.13"
- "@babel/generator" "^7.23.0"
- "@babel/helper-environment-visitor" "^7.22.20"
- "@babel/helper-function-name" "^7.23.0"
- "@babel/helper-hoist-variables" "^7.22.5"
- "@babel/helper-split-export-declaration" "^7.22.6"
- "@babel/parser" "^7.23.0"
- "@babel/types" "^7.23.0"
- debug "^4.1.0"
+ "@babel/code-frame" "^7.24.7"
+ "@babel/generator" "^7.25.6"
+ "@babel/parser" "^7.25.6"
+ "@babel/template" "^7.25.0"
+ "@babel/types" "^7.25.6"
+ debug "^4.3.1"
globals "^11.1.0"
"@babel/traverse@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.5.tgz#972aa0bc45f16983bf64aa1f877b2dd0eea7e6f8"
+ resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.5.tgz"
integrity sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==
dependencies:
"@babel/code-frame" "^7.24.2"
@@ -872,18 +752,18 @@
debug "^4.3.1"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.3", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
- version "7.23.3"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.3.tgz#d5ea892c07f2ec371ac704420f4dcdb07b5f9598"
- integrity sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==
+"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.20.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.25.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
+ version "7.25.6"
+ resolved "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz"
+ integrity sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==
dependencies:
- "@babel/helper-string-parser" "^7.22.5"
- "@babel/helper-validator-identifier" "^7.22.20"
+ "@babel/helper-string-parser" "^7.24.8"
+ "@babel/helper-validator-identifier" "^7.24.7"
to-fast-properties "^2.0.0"
"@babel/types@^7.24.0", "@babel/types@^7.24.5":
version "7.24.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.5.tgz#7661930afc638a5383eb0c4aee59b74f38db84d7"
+ resolved "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz"
integrity sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==
dependencies:
"@babel/helper-string-parser" "^7.24.1"
@@ -892,39 +772,39 @@
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
- resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
+ resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
"@braintree/sanitize-url@^6.0.2":
version "6.0.2"
- resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz#6110f918d273fe2af8ea1c4398a88774bb9fc12f"
+ resolved "https://registry.npmjs.org/@braintree/sanitize-url/-/sanitize-url-6.0.2.tgz"
integrity sha512-Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg==
"@builder.io/partytown@^0.6.1":
version "0.6.4"
- resolved "https://registry.yarnpkg.com/@builder.io/partytown/-/partytown-0.6.4.tgz#8610c9e73cc52a95b963c1878760ebe628eee048"
+ resolved "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.6.4.tgz"
integrity sha512-W6C7O0eSg6YNujHYZozXK5iJ+V69QVLLLRv+NlmYh1vFe0PUJ3kmAhRCx7rUqI3XAA/KpdyfdxLoopBg3GlfVA==
"@colors/colors@1.5.0":
version "1.5.0"
- resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
+ resolved "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz"
integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
"@cspotcode/source-map-support@^0.8.0":
version "0.8.1"
- resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
+ resolved "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz"
integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
"@csstools/selector-specificity@^2.0.2":
version "2.1.1"
- resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz#c9c61d9fe5ca5ac664e1153bb0aa0eba1c6d6308"
+ resolved "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz"
integrity sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==
"@cypress/code-coverage@^3.12.1":
version "3.12.1"
- resolved "https://registry.yarnpkg.com/@cypress/code-coverage/-/code-coverage-3.12.1.tgz#cdfd155f9e4788d56ba55caff10c70abfbf72fd1"
+ resolved "https://registry.npmjs.org/@cypress/code-coverage/-/code-coverage-3.12.1.tgz"
integrity sha512-4gSVkgcTo8NSWrOwLO0NxyvD2apIZFM/2k9sxdmP3eR3ko8tZVYrWfTdfxSXLDSkNnzVh+oXv7utaOLn+yemUg==
dependencies:
"@cypress/webpack-preprocessor" "^5.11.0"
@@ -939,7 +819,7 @@
"@cypress/request@2.88.12":
version "2.88.12"
- resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590"
+ resolved "https://registry.npmjs.org/@cypress/request/-/request-2.88.12.tgz"
integrity sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==
dependencies:
aws-sign2 "~0.7.0"
@@ -961,33 +841,9 @@
tunnel-agent "^0.6.0"
uuid "^8.3.2"
-"@cypress/request@^2.88.10":
- version "2.88.11"
- resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.11.tgz#5a4c7399bc2d7e7ed56e92ce5acb620c8b187047"
- integrity sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w==
- dependencies:
- aws-sign2 "~0.7.0"
- aws4 "^1.8.0"
- caseless "~0.12.0"
- combined-stream "~1.0.6"
- extend "~3.0.2"
- forever-agent "~0.6.1"
- form-data "~2.3.2"
- http-signature "~1.3.6"
- is-typedarray "~1.0.0"
- isstream "~0.1.2"
- json-stringify-safe "~5.0.1"
- mime-types "~2.1.19"
- performance-now "^2.1.0"
- qs "~6.10.3"
- safe-buffer "^5.1.2"
- tough-cookie "~2.5.0"
- tunnel-agent "^0.6.0"
- uuid "^8.3.2"
-
"@cypress/webpack-preprocessor@^5.11.0":
version "5.16.3"
- resolved "https://registry.yarnpkg.com/@cypress/webpack-preprocessor/-/webpack-preprocessor-5.16.3.tgz#a74a76de8558ed080feffe1c8fea3ed25fb9b200"
+ resolved "https://registry.npmjs.org/@cypress/webpack-preprocessor/-/webpack-preprocessor-5.16.3.tgz"
integrity sha512-juGT69ak9iShluyZYmjQnoKV3+ixIXpf/e/TdgB6qoueZHVLQbsqBDEwGsssq5juHhR8v//E4Drwfh0eYLWRNg==
dependencies:
"@babel/core" "^7.0.1"
@@ -1005,7 +861,7 @@
"@cypress/xvfb@^1.2.4":
version "1.2.4"
- resolved "https://registry.yarnpkg.com/@cypress/xvfb/-/xvfb-1.2.4.tgz#2daf42e8275b39f4aa53c14214e557bd14e7748a"
+ resolved "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz"
integrity sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==
dependencies:
debug "^3.1.0"
@@ -1013,14 +869,14 @@
"@envelop/core@^1.2.0":
version "1.7.1"
- resolved "https://registry.yarnpkg.com/@envelop/core/-/core-1.7.1.tgz#4cb397349ff40e3dc229175b9af58700d5742232"
+ resolved "https://registry.npmjs.org/@envelop/core/-/core-1.7.1.tgz"
integrity sha512-ZxeQs4G0FOzoFAH+zskubx5aM9kx6BiUvcSI9Lo3MfYBmnK7cjwcwDdwk6Mq48QDuAeVdGfDmQz+BiWg0k2GmQ==
dependencies:
"@envelop/types" "1.5.1"
"@envelop/core@^2.6.0":
version "2.6.0"
- resolved "https://registry.yarnpkg.com/@envelop/core/-/core-2.6.0.tgz#1b7a346a37040c217f0f9b60c3358efc6c3b1b94"
+ resolved "https://registry.npmjs.org/@envelop/core/-/core-2.6.0.tgz"
integrity sha512-yTptKinJN//i6m1kXUbnLBl/FobzddI4ehURAMS08eRUOQwAuXqJU9r8VdTav8nIZLb4t6cuDWFb3n331LiwLw==
dependencies:
"@envelop/types" "2.4.0"
@@ -1028,7 +884,7 @@
"@envelop/graphql-jit@^1.1.1":
version "1.3.1"
- resolved "https://registry.yarnpkg.com/@envelop/graphql-jit/-/graphql-jit-1.3.1.tgz#8ded44de52ca67da54297badbd949823f7c245b1"
+ resolved "https://registry.npmjs.org/@envelop/graphql-jit/-/graphql-jit-1.3.1.tgz"
integrity sha512-9BdMuQVt0/g1YkSQRzipCzgxp9UAC5DQw2yQXuCrXcdWPEaLxf6Nxokx0GznoxGxulGLiR/iTuboqH6Kt24HLA==
dependencies:
graphql-jit "^0.7.0"
@@ -1036,19 +892,19 @@
"@envelop/on-resolve@^2.0.6":
version "2.0.6"
- resolved "https://registry.yarnpkg.com/@envelop/on-resolve/-/on-resolve-2.0.6.tgz#10619d65552ae64461f96a35cbdca19466ef54c4"
+ resolved "https://registry.npmjs.org/@envelop/on-resolve/-/on-resolve-2.0.6.tgz"
integrity sha512-l4vH0RKF0gdzyUcetaio/UP/BE84iw2TXvHXGAqDGoiMjRy0MVoeWF30SzwDb5IwNme2XaOsPlRmYRw1K0DAVA==
"@envelop/parser-cache@^2.2.0":
version "2.2.1"
- resolved "https://registry.yarnpkg.com/@envelop/parser-cache/-/parser-cache-2.2.1.tgz#c4105c85ac46bee1951b7d91d47bf42f318ea973"
+ resolved "https://registry.npmjs.org/@envelop/parser-cache/-/parser-cache-2.2.1.tgz"
integrity sha512-7PHYjln5Jl0JieCd5mVCKZoCpxyL3EQf2etxvmB1ALB6D9QjLYSv+zSPQRT/rmeDtLDohFKVN6cIyhYNSUG2bQ==
dependencies:
tiny-lru "7.0.6"
"@envelop/testing@^6.0.0":
version "6.0.0"
- resolved "https://registry.yarnpkg.com/@envelop/testing/-/testing-6.0.0.tgz#b0ba5f9d8058435bd909e129b49e27e4aa56c1ff"
+ resolved "https://registry.npmjs.org/@envelop/testing/-/testing-6.0.0.tgz"
integrity sha512-uFX1XdYZ3GspOGchLSRQ5+UIrRo6LpHG8CT8Y4/WPJrImimTgmwd8OAgfhXznsag3z8aMui6ZzGPsdeL52Hw8Q==
dependencies:
"@graphql-tools/utils" "^10.0.0"
@@ -1056,19 +912,19 @@
"@envelop/types@1.5.1":
version "1.5.1"
- resolved "https://registry.yarnpkg.com/@envelop/types/-/types-1.5.1.tgz#8a47ca9f6e78b40b176dac0dea6c5045f92c644d"
+ resolved "https://registry.npmjs.org/@envelop/types/-/types-1.5.1.tgz"
integrity sha512-NrwLVzyNqiSzgRRqOxkU2IgRc5hSGS73VsgxqchU3jl36rYo7AXVAnITkytmB9wk+jN2vUOVvayLkaTXooARwg==
"@envelop/types@2.4.0":
version "2.4.0"
- resolved "https://registry.yarnpkg.com/@envelop/types/-/types-2.4.0.tgz#129163df73503581b68950704f4064a6b0f2c6ed"
+ resolved "https://registry.npmjs.org/@envelop/types/-/types-2.4.0.tgz"
integrity sha512-pjxS98cDQBS84X29VcwzH3aJ/KiLCGwyMxuj7/5FkdiaCXAD1JEvKEj9LARWlFYj1bY43uII4+UptFebrhiIaw==
dependencies:
tslib "^2.4.0"
"@envelop/validation-cache@^2.2.0":
version "2.3.0"
- resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-2.3.0.tgz#71b3455757426a2f30c1179466fad546435ad6be"
+ resolved "https://registry.npmjs.org/@envelop/validation-cache/-/validation-cache-2.3.0.tgz"
integrity sha512-yCsACrSo3psIjxakfn5tJBG2jG7XAjCCyZJ1YCY3/jogzHAXL2ypRh4r5x0K/aivygf4TrgQQkyizYwM8v5ETw==
dependencies:
tiny-lru "7.0.6"
@@ -1090,7 +946,7 @@
"@esbuild/darwin-arm64@0.18.20":
version "0.18.20"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1"
+ resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz"
integrity sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==
"@esbuild/darwin-x64@0.18.20":
@@ -1190,7 +1046,7 @@
"@eslint/eslintrc@^0.4.3":
version "0.4.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
+ resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"
integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
dependencies:
ajv "^6.12.4"
@@ -1205,17 +1061,17 @@
"@faststore/lighthouse@^1.12.32":
version "1.12.32"
- resolved "https://registry.yarnpkg.com/@faststore/lighthouse/-/lighthouse-1.12.32.tgz#840096bc88ce80041217c764df97d9f0b4968658"
+ resolved "https://registry.npmjs.org/@faststore/lighthouse/-/lighthouse-1.12.32.tgz"
integrity sha512-65IiCPRfjdtKyGXSvLXjug46J8z8e7dJr7Otxezjmn8N0F9tWh8IvrEAEAquXZXvg6sjVEjJnQ3S6fYuiqW4iw==
"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3":
version "1.1.3"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
+ resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
"@graphql-codegen/add@^5.0.2":
version "5.0.2"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/add/-/add-5.0.2.tgz#71b3ae0465a4537172dddb84531b6967ca5545f2"
+ resolved "https://registry.npmjs.org/@graphql-codegen/add/-/add-5.0.2.tgz"
integrity sha512-ouBkSvMFUhda5VoKumo/ZvsZM9P5ZTyDsI8LW18VxSNWOjrTeLXBWHG8Gfaai0HwhflPtCYVABbriEcOmrRShQ==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.3"
@@ -1223,7 +1079,7 @@
"@graphql-codegen/cli@2.2.0":
version "2.2.0"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-2.2.0.tgz#84a909cb46f009cafc59aa719b816494b0ca222b"
+ resolved "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.2.0.tgz"
integrity sha512-f4EsScASza57aPM1z6eKAaYmwz83B/LsmiyBb8phy1NfbWea2IBUCfEgtvOHN85xbiMpdQfNtckE2mC84yH80w==
dependencies:
"@graphql-codegen/core" "2.1.0"
@@ -1269,7 +1125,7 @@
"@graphql-codegen/cli@^5.0.2":
version "5.0.2"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-5.0.2.tgz#07ff691c16da4c3dcc0e1995d3231530379ab317"
+ resolved "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-5.0.2.tgz"
integrity sha512-MBIaFqDiLKuO4ojN6xxG9/xL9wmfD3ZjZ7RsPjwQnSHBCUXnEkdKvX+JVpx87Pq29Ycn8wTJUguXnTZ7Di0Mlw==
dependencies:
"@babel/generator" "^7.18.13"
@@ -1310,7 +1166,7 @@
"@graphql-codegen/client-preset@^4.2.2", "@graphql-codegen/client-preset@^4.2.6":
version "4.2.6"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/client-preset/-/client-preset-4.2.6.tgz#dbce627c9db5fcb5777d8567b8fd46683741e31d"
+ resolved "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-4.2.6.tgz"
integrity sha512-e7SzPb+nxNJfsD0uG+NSyzIeTtCXTouX5VThmcCoqGMDLgF5Lo7932B3HtZCvzmzqcXxRjJ81CmkA2LhlqIbCw==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -1329,7 +1185,7 @@
"@graphql-codegen/core@2.1.0":
version "2.1.0"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-2.1.0.tgz#c0b2d63ad3e77b794b6a84485c4a8ac72c291c6b"
+ resolved "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.1.0.tgz"
integrity sha512-pNzpBZWP+B7doPtANN61CMoBq382KMuGierbZXyilrO6RAqgN/DgU4UEIaQFat1BfiVA5GFDAQryysOv4glU8g==
dependencies:
"@graphql-codegen/plugin-helpers" "^2.1.0"
@@ -1339,7 +1195,7 @@
"@graphql-codegen/core@^4.0.2":
version "4.0.2"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/core/-/core-4.0.2.tgz#7e6ec266276f54bbf02f60599d9e518f4a59d85e"
+ resolved "https://registry.npmjs.org/@graphql-codegen/core/-/core-4.0.2.tgz"
integrity sha512-IZbpkhwVqgizcjNiaVzNAzm/xbWT6YnGgeOLwVjm4KbJn3V2jchVtuzHH09G5/WkkLSk2wgbXNdwjM41JxO6Eg==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.3"
@@ -1349,7 +1205,7 @@
"@graphql-codegen/gql-tag-operations@4.0.7":
version "4.0.7"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-4.0.7.tgz#365f01dd6e2dc1853beb7de6d93c94d71efdf2ff"
+ resolved "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-4.0.7.tgz"
integrity sha512-2I69+IDC8pqAohH6cgKse/vPfJ/4TRTJX96PkAKz8S4RD54PUHtBmzCdBInIFEP/vQuH5mFUAaIKXXjznmGOsg==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.4"
@@ -1360,7 +1216,7 @@
"@graphql-codegen/plugin-helpers@^2.1.0", "@graphql-codegen/plugin-helpers@^2.1.1":
version "2.7.2"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz#6544f739d725441c826a8af6a49519f588ff9bed"
+ resolved "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz"
integrity sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==
dependencies:
"@graphql-tools/utils" "^8.8.0"
@@ -1372,7 +1228,7 @@
"@graphql-codegen/plugin-helpers@^5.0.3", "@graphql-codegen/plugin-helpers@^5.0.4":
version "5.0.4"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/plugin-helpers/-/plugin-helpers-5.0.4.tgz#5f4c987c3f308ef1c8809ee0c43af0369867e0f6"
+ resolved "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-5.0.4.tgz"
integrity sha512-MOIuHFNWUnFnqVmiXtrI+4UziMTYrcquljaI5f/T/Bc7oO7sXcfkAvgkNWEEi9xWreYwvuer3VHCuPI/lAFWbw==
dependencies:
"@graphql-tools/utils" "^10.0.0"
@@ -1384,7 +1240,7 @@
"@graphql-codegen/schema-ast@^4.0.2":
version "4.0.2"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/schema-ast/-/schema-ast-4.0.2.tgz#aeaa104e4555cca73a058f0a9350b4b0e290b377"
+ resolved "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-4.0.2.tgz"
integrity sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.3"
@@ -1393,7 +1249,7 @@
"@graphql-codegen/typed-document-node@^5.0.7":
version "5.0.7"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/typed-document-node/-/typed-document-node-5.0.7.tgz#a1034785d860b1459b9d89b4530d872319f29233"
+ resolved "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-5.0.7.tgz"
integrity sha512-rgFh96hAbNwPUxLVlRcNhGaw2+y7ZGx7giuETtdO8XzPasTQGWGRkZ3wXQ5UUiTX4X3eLmjnuoXYKT7HoxSznQ==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.4"
@@ -1404,7 +1260,7 @@
"@graphql-codegen/typescript-operations@^4.2.1":
version "4.2.1"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript-operations/-/typescript-operations-4.2.1.tgz#887d5883d33d1e14a6f5dc90f125db343b3759d3"
+ resolved "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-4.2.1.tgz"
integrity sha512-LhEPsaP+AI65zfK2j6CBAL4RT0bJL/rR9oRWlvwtHLX0t7YQr4CP4BXgvvej9brYdedAxHGPWeV1tPHy5/z9KQ==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.4"
@@ -1415,7 +1271,7 @@
"@graphql-codegen/typescript@2.2.2":
version "2.2.2"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-2.2.2.tgz#8ea14c0a7853f6b73cca0ed10ff43b6dbd3731c6"
+ resolved "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.2.2.tgz"
integrity sha512-prcB4nNi2iQzZRLla6N6kEPmnE2WU1zz5+sEBcZcqphjWERqQ3zwdSKsuLorE/XxMp500p6BQ96cVo+bFkmVtA==
dependencies:
"@graphql-codegen/plugin-helpers" "^2.1.1"
@@ -1425,7 +1281,7 @@
"@graphql-codegen/typescript@^4.0.7":
version "4.0.7"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/typescript/-/typescript-4.0.7.tgz#32f0f0916ed2ef7efbc233d14af07057aafdeea8"
+ resolved "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-4.0.7.tgz"
integrity sha512-Gn+JNvQBJhBqH7s83piAJ6UeU/MTj9GXWFO9bdbl8PMLCAM1uFAtg04iHfkGCtDKXcUg5a3Dt/SZG85uk5KuhA==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.4"
@@ -1436,7 +1292,7 @@
"@graphql-codegen/visitor-plugin-common@2.2.1":
version "2.2.1"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.2.1.tgz#721b646d3d19ec0fcf9509f516e788b7151be003"
+ resolved "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.2.1.tgz"
integrity sha512-RbTCaayVCAEMp2jRUAwAp6Y49gq7K+SV/rwzdkoMUJUOUu4PxM4bCbWdnnXr0CIpbwjYIOnoqx729q6riT5+hg==
dependencies:
"@graphql-codegen/plugin-helpers" "^2.1.1"
@@ -1452,7 +1308,7 @@
"@graphql-codegen/visitor-plugin-common@5.2.0", "@graphql-codegen/visitor-plugin-common@^5.2.0":
version "5.2.0"
- resolved "https://registry.yarnpkg.com/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-5.2.0.tgz#8c48c0a62575d5f302678aae3994a50e9ac72cd0"
+ resolved "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-5.2.0.tgz"
integrity sha512-0p8AwmARaZCAlDFfQu6Sz+JV6SjbPDx3y2nNM7WAAf0au7Im/GpJ7Ke3xaIYBc1b2rTZ+DqSTJI/zomENGD9NA==
dependencies:
"@graphql-codegen/plugin-helpers" "^5.0.4"
@@ -1468,7 +1324,7 @@
"@graphql-tools/apollo-engine-loader@^7.0.5":
version "7.3.26"
- resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.26.tgz#91e54460d5579933e42a2010b8688c3459c245d8"
+ resolved "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.26.tgz"
integrity sha512-h1vfhdJFjnCYn9b5EY1Z91JTF0KB3hHVJNQIsiUV2mpQXZdeOXQoaWeYEKaiI5R6kwBw5PP9B0fv3jfUIG8LyQ==
dependencies:
"@ardatan/sync-fetch" "^0.0.1"
@@ -1478,7 +1334,7 @@
"@graphql-tools/apollo-engine-loader@^8.0.0":
version "8.0.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.1.tgz#1ec8718af6130ff8039cd653991412472cdd7e55"
+ resolved "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.1.tgz"
integrity sha512-NaPeVjtrfbPXcl+MLQCJLWtqe2/E4bbAqcauEOQ+3sizw1Fc2CNmhHRF8a6W4D0ekvTRRXAMptXYgA2uConbrA==
dependencies:
"@ardatan/sync-fetch" "^0.0.1"
@@ -1488,7 +1344,7 @@
"@graphql-tools/batch-execute@^8.5.22":
version "8.5.22"
- resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz#a742aa9d138fe794e786d8fb6429665dc7df5455"
+ resolved "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.22.tgz"
integrity sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1498,7 +1354,7 @@
"@graphql-tools/batch-execute@^9.0.4":
version "9.0.4"
- resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-9.0.4.tgz#11601409c0c33491971fc82592de12390ec58be2"
+ resolved "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-9.0.4.tgz"
integrity sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1508,7 +1364,7 @@
"@graphql-tools/code-file-loader@^7.0.6":
version "7.3.23"
- resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz#33793f9a1f8e74981f8ae6ec4ab7061f9713db15"
+ resolved "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz"
integrity sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==
dependencies:
"@graphql-tools/graphql-tag-pluck" "7.5.2"
@@ -1519,7 +1375,7 @@
"@graphql-tools/code-file-loader@^8.0.0":
version "8.1.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/code-file-loader/-/code-file-loader-8.1.2.tgz#a71b72875678625cbc2359ab77a5122980206b0b"
+ resolved "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.2.tgz"
integrity sha512-GrLzwl1QV2PT4X4TEEfuTmZYzIZHLqoTGBjczdUzSqgCCcqwWzLB3qrJxFQfI8e5s1qZ1bhpsO9NoMn7tvpmyA==
dependencies:
"@graphql-tools/graphql-tag-pluck" "8.3.1"
@@ -1530,7 +1386,7 @@
"@graphql-tools/delegate@^10.0.4":
version "10.0.10"
- resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-10.0.10.tgz#ed92c089e077e97d4f6c05634151863cfa714638"
+ resolved "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-10.0.10.tgz"
integrity sha512-OOqsPRfGatQG0qMKG3sxtxHiRg7cA6OWMTuETDvwZCoOuxqCc17K+nt8GvaqptNJi2/wBgeH7pi7wA5QzgiG1g==
dependencies:
"@graphql-tools/batch-execute" "^9.0.4"
@@ -1542,7 +1398,7 @@
"@graphql-tools/delegate@^9.0.31":
version "9.0.35"
- resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-9.0.35.tgz#94683f4bcec63520b4a6c8b2abf2e2e9324ea4f1"
+ resolved "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.35.tgz"
integrity sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==
dependencies:
"@graphql-tools/batch-execute" "^8.5.22"
@@ -1555,7 +1411,7 @@
"@graphql-tools/documents@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/documents/-/documents-1.0.0.tgz#e3ed97197cc22ec830ca227fd7d17e86d8424bdf"
+ resolved "https://registry.npmjs.org/@graphql-tools/documents/-/documents-1.0.0.tgz"
integrity sha512-rHGjX1vg/nZ2DKqRGfDPNC55CWZBMldEVcH+91BThRa6JeT80NqXknffLLEZLRUxyikCfkwMsk6xR3UNMqG0Rg==
dependencies:
lodash.sortby "^4.7.0"
@@ -1563,7 +1419,7 @@
"@graphql-tools/executor-graphql-ws@^0.0.14":
version "0.0.14"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz#e0f53fc4cfc8a06cc461b2bc1edb4bb9a8e837ed"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.14.tgz"
integrity sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1576,7 +1432,7 @@
"@graphql-tools/executor-graphql-ws@^1.1.2":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.2.tgz#2bf959d2319692460b39400c0fe1515dfbb9f034"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-1.1.2.tgz"
integrity sha512-+9ZK0rychTH1LUv4iZqJ4ESbmULJMTsv3XlFooPUngpxZkk00q6LqHKJRrsLErmQrVaC7cwQCaRBJa0teK17Lg==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1588,7 +1444,7 @@
"@graphql-tools/executor-http@^0.1.7", "@graphql-tools/executor-http@^0.1.9":
version "0.1.10"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor-http/-/executor-http-0.1.10.tgz#faf48e18e62a925796c9653c2f50cf2095bc8e6f"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.1.10.tgz"
integrity sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1602,7 +1458,7 @@
"@graphql-tools/executor-http@^1.0.9":
version "1.0.9"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor-http/-/executor-http-1.0.9.tgz#87ca8b99a32241eb0cc30a9c500d2672e92d58b7"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-1.0.9.tgz"
integrity sha512-+NXaZd2MWbbrWHqU4EhXcrDbogeiCDmEbrAN+rMn4Nu2okDjn2MTFDbTIab87oEubQCH4Te1wDkWPKrzXup7+Q==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1615,7 +1471,7 @@
"@graphql-tools/executor-legacy-ws@^0.0.11":
version "0.0.11"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz#a1e12be8279e92a363a23d4105461a34cd9e389e"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.11.tgz"
integrity sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1626,7 +1482,7 @@
"@graphql-tools/executor-legacy-ws@^1.0.6":
version "1.0.6"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.6.tgz#4ed311b731db8fd5c99e66a66361afbf9c2109fc"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.0.6.tgz"
integrity sha512-lDSxz9VyyquOrvSuCCnld3256Hmd+QI2lkmkEv7d4mdzkxkK4ddAWW1geQiWrQvWmdsmcnGGlZ7gDGbhEExwqg==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1637,7 +1493,7 @@
"@graphql-tools/executor@^0.0.20":
version "0.0.20"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor/-/executor-0.0.20.tgz#d51d159696e839522dd49d936636af251670e425"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.20.tgz"
integrity sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1648,7 +1504,7 @@
"@graphql-tools/executor@^1.2.1":
version "1.2.6"
- resolved "https://registry.yarnpkg.com/@graphql-tools/executor/-/executor-1.2.6.tgz#71caa7c52108e4744bfa5ffdc958126bb4b48ff2"
+ resolved "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.2.6.tgz"
integrity sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==
dependencies:
"@graphql-tools/utils" "^10.1.1"
@@ -1659,7 +1515,7 @@
"@graphql-tools/git-loader@^7.0.5":
version "7.3.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-7.3.0.tgz#ca10c17d4f58c4592432d9d2ac1c2b393aebad16"
+ resolved "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-7.3.0.tgz"
integrity sha512-gcGAK+u16eHkwsMYqqghZbmDquh8QaO24Scsxq+cVR+vx1ekRlsEiXvu+yXVDbZdcJ6PBIbeLcQbEu+xhDLmvQ==
dependencies:
"@graphql-tools/graphql-tag-pluck" "7.5.2"
@@ -1671,7 +1527,7 @@
"@graphql-tools/git-loader@^8.0.0":
version "8.0.6"
- resolved "https://registry.yarnpkg.com/@graphql-tools/git-loader/-/git-loader-8.0.6.tgz#afc88e31e9ebd0a8b576c5e46192d83efea5437c"
+ resolved "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.6.tgz"
integrity sha512-FQFO4H5wHAmHVyuUQrjvPE8re3qJXt50TWHuzrK3dEaief7JosmlnkLMDMbMBwtwITz9u1Wpl6doPhT2GwKtlw==
dependencies:
"@graphql-tools/graphql-tag-pluck" "8.3.1"
@@ -1683,7 +1539,7 @@
"@graphql-tools/github-loader@^7.0.5":
version "7.3.28"
- resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-7.3.28.tgz#a7166b136e8442bd8b3ab943ad3b66c84bcabfcf"
+ resolved "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-7.3.28.tgz"
integrity sha512-OK92Lf9pmxPQvjUNv05b3tnVhw0JRfPqOf15jZjyQ8BfdEUrJoP32b4dRQQem/wyRL24KY4wOfArJNqzpsbwCA==
dependencies:
"@ardatan/sync-fetch" "^0.0.1"
@@ -1696,7 +1552,7 @@
"@graphql-tools/github-loader@^8.0.0":
version "8.0.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/github-loader/-/github-loader-8.0.1.tgz#011e1f9495d42a55139a12f576cc6bb04943ecf4"
+ resolved "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-8.0.1.tgz"
integrity sha512-W4dFLQJ5GtKGltvh/u1apWRFKBQOsDzFxO9cJkOYZj1VzHCpRF43uLST4VbCfWve+AwBqOuKr7YgkHoxpRMkcg==
dependencies:
"@ardatan/sync-fetch" "^0.0.1"
@@ -1709,7 +1565,7 @@
"@graphql-tools/graphql-file-loader@^7.0.5", "@graphql-tools/graphql-file-loader@^7.3.7":
version "7.5.17"
- resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz#7c281617ea3ab4db4d42a2bdb49850f2b937f0f9"
+ resolved "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.17.tgz"
integrity sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw==
dependencies:
"@graphql-tools/import" "6.7.18"
@@ -1720,7 +1576,7 @@
"@graphql-tools/graphql-file-loader@^8.0.0":
version "8.0.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.1.tgz#03869b14cb91d0ef539df8195101279bb2df9c9e"
+ resolved "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.0.1.tgz"
integrity sha512-7gswMqWBabTSmqbaNyWSmRRpStWlcCkBc73E6NZNlh4YNuiyKOwbvSkOUYFOqFMfEL+cFsXgAvr87Vz4XrYSbA==
dependencies:
"@graphql-tools/import" "7.0.1"
@@ -1731,7 +1587,7 @@
"@graphql-tools/graphql-tag-pluck@7.5.2", "@graphql-tools/graphql-tag-pluck@^7.4.6":
version "7.5.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz#502f1e066e19d832ebdeba5f571d7636dc27572d"
+ resolved "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz"
integrity sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==
dependencies:
"@babel/parser" "^7.16.8"
@@ -1743,7 +1599,7 @@
"@graphql-tools/graphql-tag-pluck@8.3.1", "@graphql-tools/graphql-tag-pluck@^8.0.0":
version "8.3.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.1.tgz#fb6154d626a427f1910f76dff860e7a6cc61a4aa"
+ resolved "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.1.tgz"
integrity sha512-ujits9tMqtWQQq4FI4+qnVPpJvSEn7ogKtyN/gfNT+ErIn6z1e4gyVGQpTK5sgAUXq1lW4gU/5fkFFC5/sL2rQ==
dependencies:
"@babel/core" "^7.22.9"
@@ -1756,7 +1612,7 @@
"@graphql-tools/import@6.7.18":
version "6.7.18"
- resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-6.7.18.tgz#ad092d8a4546bb6ffc3e871e499eec7ac368680b"
+ resolved "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.18.tgz"
integrity sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1765,7 +1621,7 @@
"@graphql-tools/import@7.0.1":
version "7.0.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/import/-/import-7.0.1.tgz#4e0d181c63350b1c926ae91b84a4cbaf03713c2c"
+ resolved "https://registry.npmjs.org/@graphql-tools/import/-/import-7.0.1.tgz"
integrity sha512-935uAjAS8UAeXThqHfYVr4HEAp6nHJ2sximZKO1RzUTq5WoALMAhhGARl0+ecm6X+cqNUwIChJbjtaa6P/ML0w==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1774,7 +1630,7 @@
"@graphql-tools/json-file-loader@^7.1.2", "@graphql-tools/json-file-loader@^7.3.7":
version "7.4.18"
- resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz#d78ae40979bde51cfc59717757354afc9e35fba2"
+ resolved "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.18.tgz"
integrity sha512-AJ1b6Y1wiVgkwsxT5dELXhIVUPs/u3VZ8/0/oOtpcoyO/vAeM5rOvvWegzicOOnQw8G45fgBRMkkRfeuwVt6+w==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1784,7 +1640,7 @@
"@graphql-tools/json-file-loader@^8.0.0":
version "8.0.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/json-file-loader/-/json-file-loader-8.0.1.tgz#3fcfe869f22d8129a74369da69bf491c0bff7c2d"
+ resolved "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.1.tgz"
integrity sha512-lAy2VqxDAHjVyqeJonCP6TUemrpYdDuKt25a10X6zY2Yn3iFYGnuIDQ64cv3ytyGY6KPyPB+Kp+ZfOkNDG3FQA==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1794,7 +1650,7 @@
"@graphql-tools/load-files@^7.0.0":
version "7.0.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/load-files/-/load-files-7.0.0.tgz#206833042c9c6fdf089996accb065ae448ba6819"
+ resolved "https://registry.npmjs.org/@graphql-tools/load-files/-/load-files-7.0.0.tgz"
integrity sha512-P98amERIwI7FD8Bsq6xUbz9Mj63W8qucfrE/WQjad5jFMZYdFFt46a99FFdfx8S/ZYgpAlj/AZbaTtWLitMgNQ==
dependencies:
globby "11.1.0"
@@ -1803,7 +1659,7 @@
"@graphql-tools/load@^7.3.0", "@graphql-tools/load@^7.5.5":
version "7.8.14"
- resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-7.8.14.tgz#f2356f9a5f658a42e33934ae036e4b2cadf2d1e9"
+ resolved "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz"
integrity sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==
dependencies:
"@graphql-tools/schema" "^9.0.18"
@@ -1813,7 +1669,7 @@
"@graphql-tools/load@^8.0.0":
version "8.0.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/load/-/load-8.0.2.tgz#47d9916bf96dea05df27f11b53812f4327d9b6d2"
+ resolved "https://registry.npmjs.org/@graphql-tools/load/-/load-8.0.2.tgz"
integrity sha512-S+E/cmyVmJ3CuCNfDuNF2EyovTwdWfQScXv/2gmvJOti2rGD8jTt9GYVzXaxhblLivQR9sBUCNZu/w7j7aXUCA==
dependencies:
"@graphql-tools/schema" "^10.0.3"
@@ -1823,7 +1679,7 @@
"@graphql-tools/merge@8.3.1":
version "8.3.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.3.1.tgz#06121942ad28982a14635dbc87b5d488a041d722"
+ resolved "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.1.tgz"
integrity sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==
dependencies:
"@graphql-tools/utils" "8.9.0"
@@ -1831,7 +1687,7 @@
"@graphql-tools/merge@^8.2.6", "@graphql-tools/merge@^8.4.1":
version "8.4.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.4.2.tgz#95778bbe26b635e8d2f60ce9856b388f11fe8288"
+ resolved "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz"
integrity sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==
dependencies:
"@graphql-tools/utils" "^9.2.1"
@@ -1839,7 +1695,7 @@
"@graphql-tools/merge@^9.0.0":
version "9.0.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-9.0.0.tgz#b0a3636c82716454bff88e9bb40108b0471db281"
+ resolved "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.0.tgz"
integrity sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==
dependencies:
"@graphql-tools/utils" "^10.0.0"
@@ -1847,7 +1703,7 @@
"@graphql-tools/merge@^9.0.3", "@graphql-tools/merge@^9.0.4":
version "9.0.4"
- resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-9.0.4.tgz#66c34cbc2b9a99801c0efca7b8134b2c9aecdb06"
+ resolved "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.0.4.tgz"
integrity sha512-MivbDLUQ+4Q8G/Hp/9V72hbn810IJDEZQ57F01sHnlrrijyadibfVhaQfW/pNH+9T/l8ySZpaR/DpL5i+ruZ+g==
dependencies:
"@graphql-tools/utils" "^10.0.13"
@@ -1855,21 +1711,21 @@
"@graphql-tools/optimize@^1.0.1":
version "1.4.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-1.4.0.tgz#20d6a9efa185ef8fc4af4fd409963e0907c6e112"
+ resolved "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz"
integrity sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==
dependencies:
tslib "^2.4.0"
"@graphql-tools/optimize@^2.0.0":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/optimize/-/optimize-2.0.0.tgz#7a9779d180824511248a50c5a241eff6e7a2d906"
+ resolved "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-2.0.0.tgz"
integrity sha512-nhdT+CRGDZ+bk68ic+Jw1OZ99YCDIKYA5AlVAnBHJvMawSx9YQqQAIj4refNc1/LRieGiuWvhbG3jvPVYho0Dg==
dependencies:
tslib "^2.4.0"
"@graphql-tools/prisma-loader@^7.0.6":
version "7.2.72"
- resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-7.2.72.tgz#6304fc23600458396f3ede713d8e2371df7850e3"
+ resolved "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-7.2.72.tgz"
integrity sha512-0a7uV7Fky6yDqd0tI9+XMuvgIo6GAqiVzzzFV4OSLry4AwiQlI3igYseBV7ZVOGhedOTqj/URxjpiv07hRcwag==
dependencies:
"@graphql-tools/url-loader" "^7.17.18"
@@ -1893,7 +1749,7 @@
"@graphql-tools/prisma-loader@^8.0.0":
version "8.0.4"
- resolved "https://registry.yarnpkg.com/@graphql-tools/prisma-loader/-/prisma-loader-8.0.4.tgz#542be5567b93f1b6147ef85819eb5874969486b2"
+ resolved "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-8.0.4.tgz"
integrity sha512-hqKPlw8bOu/GRqtYr0+dINAI13HinTVYBDqhwGAPIFmLr5s+qKskzgCiwbsckdrb5LWVFmVZc+UXn80OGiyBzg==
dependencies:
"@graphql-tools/url-loader" "^8.0.2"
@@ -1915,7 +1771,7 @@
"@graphql-tools/relay-operation-optimizer@^6.3.7":
version "6.5.18"
- resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz#a1b74a8e0a5d0c795b8a4d19629b654cf66aa5ab"
+ resolved "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz"
integrity sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==
dependencies:
"@ardatan/relay-compiler" "12.0.0"
@@ -1924,7 +1780,7 @@
"@graphql-tools/relay-operation-optimizer@^7.0.0":
version "7.0.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.0.0.tgz#24367666af87bc5a81748de5e8e9b3c523fd4207"
+ resolved "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.0.0.tgz"
integrity sha512-UNlJi5y3JylhVWU4MBpL0Hun4Q7IoJwv9xYtmAz+CgRa066szzY7dcuPfxrA7cIGgG/Q6TVsKsYaiF4OHPs1Fw==
dependencies:
"@ardatan/relay-compiler" "12.0.0"
@@ -1933,7 +1789,7 @@
"@graphql-tools/schema@^10.0.0", "@graphql-tools/schema@^10.0.3":
version "10.0.3"
- resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-10.0.3.tgz#48c14be84cc617c19c4c929258672b6ab01768de"
+ resolved "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.3.tgz"
integrity sha512-p28Oh9EcOna6i0yLaCFOnkcBDQECVf3SCexT6ktb86QNj9idnkhI+tCxnwZDh58Qvjd2nURdkbevvoZkvxzCog==
dependencies:
"@graphql-tools/merge" "^9.0.3"
@@ -1943,7 +1799,7 @@
"@graphql-tools/schema@^8.1.2":
version "8.5.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.5.1.tgz#c2f2ff1448380919a330312399c9471db2580b58"
+ resolved "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.5.1.tgz"
integrity sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==
dependencies:
"@graphql-tools/merge" "8.3.1"
@@ -1953,7 +1809,7 @@
"@graphql-tools/schema@^9.0.0", "@graphql-tools/schema@^9.0.18", "@graphql-tools/schema@^9.0.19":
version "9.0.19"
- resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-9.0.19.tgz#c4ad373b5e1b8a0cf365163435b7d236ebdd06e7"
+ resolved "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz"
integrity sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==
dependencies:
"@graphql-tools/merge" "^8.4.1"
@@ -1963,7 +1819,7 @@
"@graphql-tools/url-loader@^7.0.11", "@graphql-tools/url-loader@^7.17.18", "@graphql-tools/url-loader@^7.9.7":
version "7.17.18"
- resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz#3e253594d23483e4c0dd3a4c3dd2ad5cd0141192"
+ resolved "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.18.tgz"
integrity sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==
dependencies:
"@ardatan/sync-fetch" "^0.0.1"
@@ -1982,7 +1838,7 @@
"@graphql-tools/url-loader@^8.0.0", "@graphql-tools/url-loader@^8.0.2":
version "8.0.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/url-loader/-/url-loader-8.0.2.tgz#ee8e10a85d82c72662f6bc6bbc7b408510a36ebd"
+ resolved "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-8.0.2.tgz"
integrity sha512-1dKp2K8UuFn7DFo1qX5c1cyazQv2h2ICwA9esHblEqCYrgf69Nk8N7SODmsfWg94OEaI74IqMoM12t7eIGwFzQ==
dependencies:
"@ardatan/sync-fetch" "^0.0.1"
@@ -2001,21 +1857,21 @@
"@graphql-tools/utils@8.2.2":
version "8.2.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.2.2.tgz#d29420bf1003d2876cb30f373145be432c7f7c4b"
+ resolved "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.2.2.tgz"
integrity sha512-29FFY5U4lpXuBiW9dRvuWnBVwGhWbGLa2leZcAMU/Pz47Cr/QLZGVgpLBV9rt+Gbs7wyIJM7t7EuksPs0RDm3g==
dependencies:
tslib "~2.3.0"
"@graphql-tools/utils@8.9.0":
version "8.9.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.9.0.tgz#c6aa5f651c9c99e1aca55510af21b56ec296cdb7"
+ resolved "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz"
integrity sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==
dependencies:
tslib "^2.4.0"
"@graphql-tools/utils@^10.0.0":
version "10.0.3"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-10.0.3.tgz#e5d5b217ba643b7b67a35b50086b5d831aadb71c"
+ resolved "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.0.3.tgz"
integrity sha512-6uO41urAEIs4sXQT2+CYGsUTkHkVo/2MpM/QjoHj6D6xoEF2woXHBpdAVi0HKIInDwZqWgEYOwIFez0pERxa1Q==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
@@ -2024,7 +1880,7 @@
"@graphql-tools/utils@^10.0.13", "@graphql-tools/utils@^10.1.1", "@graphql-tools/utils@^10.2.0":
version "10.2.0"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-10.2.0.tgz#c7233dc83ba6f88207a22e3f77add53c10e675df"
+ resolved "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.2.0.tgz"
integrity sha512-HYV7dO6pNA2nGKawygaBpk8y+vXOUjjzzO43W/Kb7EPRmXUEQKjHxPYRvQbiF72u1N3XxwGK5jnnFk9WVhUwYw==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
@@ -2034,14 +1890,14 @@
"@graphql-tools/utils@^8.1.1", "@graphql-tools/utils@^8.8.0":
version "8.13.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.13.1.tgz#b247607e400365c2cd87ff54654d4ad25a7ac491"
+ resolved "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz"
integrity sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==
dependencies:
tslib "^2.4.0"
"@graphql-tools/utils@^9.0.0", "@graphql-tools/utils@^9.2.1":
version "9.2.1"
- resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-9.2.1.tgz#1b3df0ef166cfa3eae706e3518b17d5922721c57"
+ resolved "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz"
integrity sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
@@ -2049,7 +1905,7 @@
"@graphql-tools/wrap@^10.0.2":
version "10.0.5"
- resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-10.0.5.tgz#614b964a158887b4a644f5425b2b9a57b5751f72"
+ resolved "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-10.0.5.tgz"
integrity sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==
dependencies:
"@graphql-tools/delegate" "^10.0.4"
@@ -2060,7 +1916,7 @@
"@graphql-tools/wrap@^9.4.2":
version "9.4.2"
- resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-9.4.2.tgz#30835587c4c73be1780908a7cb077d8013aa2703"
+ resolved "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.4.2.tgz"
integrity sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA==
dependencies:
"@graphql-tools/delegate" "^9.0.31"
@@ -2071,17 +1927,17 @@
"@graphql-typed-document-node/core@3.2.0", "@graphql-typed-document-node/core@^3.2.0":
version "3.2.0"
- resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861"
+ resolved "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz"
integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
"@graphql-typed-document-node/core@^3.1.1":
version "3.1.1"
- resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052"
+ resolved "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz"
integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==
"@grpc/grpc-js@^1.7.1":
version "1.8.14"
- resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.8.14.tgz#4fe0f9917d6f094cf59245763c275442b182e9ad"
+ resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz"
integrity sha512-w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A==
dependencies:
"@grpc/proto-loader" "^0.7.0"
@@ -2089,7 +1945,7 @@
"@grpc/proto-loader@^0.7.0":
version "0.7.7"
- resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.7.tgz#d33677a77eea8407f7c66e2abd97589b60eb4b21"
+ resolved "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz"
integrity sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==
dependencies:
"@types/long" "^4.0.1"
@@ -2100,14 +1956,14 @@
"@headlessui/react@^1.7.10":
version "1.7.15"
- resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-1.7.15.tgz#53ef6ae132af81b8f188414767b6e79ebf8dc73f"
+ resolved "https://registry.npmjs.org/@headlessui/react/-/react-1.7.15.tgz"
integrity sha512-OTO0XtoRQ6JPB1cKNFYBZv2Q0JMqMGNhYP1CjPvcJvjz8YGokz8oAj89HIYZGN0gZzn/4kk9iUpmMF4Q21Gsqw==
dependencies:
client-only "^0.0.1"
"@humanwhocodes/config-array@^0.5.0":
version "0.5.0"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
+ resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
@@ -2116,17 +1972,17 @@
"@humanwhocodes/object-schema@^1.2.0":
version "1.2.1"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
+ resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
"@hutson/parse-repository-url@^3.0.0":
version "3.0.2"
- resolved "https://registry.yarnpkg.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340"
+ resolved "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz"
integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==
"@inquirer/checkbox@^2.3.10":
version "2.3.10"
- resolved "https://registry.yarnpkg.com/@inquirer/checkbox/-/checkbox-2.3.10.tgz#b5165bfa744924cf8e9bb7b9138f23835c9028d8"
+ resolved "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-2.3.10.tgz"
integrity sha512-CTc864M2/523rKc9AglIzAcUCuPXDZENgc5S2KZFVRbnMzpXcYTsUWmbqSeL0XLvtlvEtNevkkVbfVhJpruOyQ==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2137,7 +1993,7 @@
"@inquirer/confirm@^3.1.14":
version "3.1.14"
- resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-3.1.14.tgz#b50a156f2cc0a6f874f2d2ab1739e988fbf950f4"
+ resolved "https://registry.npmjs.org/@inquirer/confirm/-/confirm-3.1.14.tgz"
integrity sha512-nbLSX37b2dGPtKWL3rPuR/5hOuD30S+pqJ/MuFiUEgN6GiMs8UMxiurKAMDzKt6C95ltjupa8zH6+3csXNHWpA==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2145,7 +2001,7 @@
"@inquirer/core@^9.0.2":
version "9.0.2"
- resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-9.0.2.tgz#8be8782266f00129acb5c804537d1231b2fe3ac6"
+ resolved "https://registry.npmjs.org/@inquirer/core/-/core-9.0.2.tgz"
integrity sha512-nguvH3TZar3ACwbytZrraRTzGqyxJfYJwv+ZwqZNatAosdWQMP1GV8zvmkNlBe2JeZSaw0WYBHZk52pDpWC9qA==
dependencies:
"@inquirer/figures" "^1.0.3"
@@ -2164,7 +2020,7 @@
"@inquirer/editor@^2.1.14":
version "2.1.14"
- resolved "https://registry.yarnpkg.com/@inquirer/editor/-/editor-2.1.14.tgz#f353a053a41c8c5564de3eef621dd3f38addab9c"
+ resolved "https://registry.npmjs.org/@inquirer/editor/-/editor-2.1.14.tgz"
integrity sha512-6nWpoJyVAKwAcv67bkbBmmi3f32xua79fP7TRmNUoR4K+B1GiOBsHO1YdvET/jvC+nTlBZL7puKAKyM7G+Lkzw==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2173,7 +2029,7 @@
"@inquirer/expand@^2.1.14":
version "2.1.14"
- resolved "https://registry.yarnpkg.com/@inquirer/expand/-/expand-2.1.14.tgz#370ad3bbb21df3f957f45b356bd76ac2eeff5592"
+ resolved "https://registry.npmjs.org/@inquirer/expand/-/expand-2.1.14.tgz"
integrity sha512-JcxsLajwPykF2kq6biIUdoOzTQ3LXqb8XMVrWkCprG/pFeU1SsxcSSFbF1T5jJGvvlTVcsE+JdGjbQ8ZRZ82RA==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2182,12 +2038,12 @@
"@inquirer/figures@^1.0.3":
version "1.0.3"
- resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.3.tgz#1227cc980f88e6d6ab85abadbf164f5038041edd"
+ resolved "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.3.tgz"
integrity sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==
"@inquirer/input@^2.2.1":
version "2.2.1"
- resolved "https://registry.yarnpkg.com/@inquirer/input/-/input-2.2.1.tgz#cb795ab12f25cc8c6eeb6f51f04c71a70e4067c8"
+ resolved "https://registry.npmjs.org/@inquirer/input/-/input-2.2.1.tgz"
integrity sha512-Yl1G6h7qWydzrJwqN777geeJVaAFL5Ly83aZlw4xHf8Z/BoTMfKRheyuMaQwOG7LQ4e5nQP7PxXdEg4SzQ+OKw==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2195,7 +2051,7 @@
"@inquirer/number@^1.0.2":
version "1.0.2"
- resolved "https://registry.yarnpkg.com/@inquirer/number/-/number-1.0.2.tgz#a1e8cff02dba0e0a449df17d843ea73fa29017ae"
+ resolved "https://registry.npmjs.org/@inquirer/number/-/number-1.0.2.tgz"
integrity sha512-GcoK+Phxcln0Qw9e73S5a8B2Ejg3HgSTvNfDegIcS5/BKwUm8t5rejja1l09WXjZM9vrVbRDf9RzWtSUiWVYRQ==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2203,7 +2059,7 @@
"@inquirer/password@^2.1.14":
version "2.1.14"
- resolved "https://registry.yarnpkg.com/@inquirer/password/-/password-2.1.14.tgz#06621f547b0b05ad4303700f13892cabd3a366ee"
+ resolved "https://registry.npmjs.org/@inquirer/password/-/password-2.1.14.tgz"
integrity sha512-sPzOkXLhWJQ96K6nPZFnF8XB8tsDrcCRobd1d3EDz81F+4hp8BbdmsnsQcqZ7oYDIOVM/mWJyIUtJ35TrssJxQ==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2212,7 +2068,7 @@
"@inquirer/prompts@^5.1.2":
version "5.1.2"
- resolved "https://registry.yarnpkg.com/@inquirer/prompts/-/prompts-5.1.2.tgz#e40929281b5e398f78a1ebe291ce2e9bbb2c7852"
+ resolved "https://registry.npmjs.org/@inquirer/prompts/-/prompts-5.1.2.tgz"
integrity sha512-E+ndnfwtVQtcmPt888Hc/HAxJUHSaA6OIvyvLAQ5BLQv+t20GbYdFSjXeLgb47OpMU+aRsKA/ys+Zoylw3kTVg==
dependencies:
"@inquirer/checkbox" "^2.3.10"
@@ -2227,7 +2083,7 @@
"@inquirer/rawlist@^2.1.14":
version "2.1.14"
- resolved "https://registry.yarnpkg.com/@inquirer/rawlist/-/rawlist-2.1.14.tgz#b69f953c3ab07fe6716a39004be4e772fc7a4662"
+ resolved "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-2.1.14.tgz"
integrity sha512-pLpEzhKNQ/ugFAFfgCNaXljB+dcCwmXwR1jOxAbVeFIdB3l02E5gjI+h1rb136tq0T8JO6P5KFR1oTeld/wdrA==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2236,7 +2092,7 @@
"@inquirer/select@^2.3.10":
version "2.3.10"
- resolved "https://registry.yarnpkg.com/@inquirer/select/-/select-2.3.10.tgz#4491805435984726c75f89e8f810ddb1fe503123"
+ resolved "https://registry.npmjs.org/@inquirer/select/-/select-2.3.10.tgz"
integrity sha512-rr7iR0Zj1YFfgM8IUGimPD9Yukd+n/U63CnYT9kdum6DbRXtMxR45rrreP+EA9ixCnShr+W4xj7suRxC1+8t9g==
dependencies:
"@inquirer/core" "^9.0.2"
@@ -2247,14 +2103,14 @@
"@inquirer/type@^1.4.0":
version "1.4.0"
- resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-1.4.0.tgz#3dd0c8f78c0548bbc18b9c07af16a86c4007e1f0"
+ resolved "https://registry.npmjs.org/@inquirer/type/-/type-1.4.0.tgz"
integrity sha512-AjOqykVyjdJQvtfkNDGUyMYGF8xN50VUxftCQWsOyIo4DFRLr6VQhW0VItGI1JIyQGCGgIpKa7hMMwNhZb4OIw==
dependencies:
mute-stream "^1.0.0"
"@isaacs/cliui@^8.0.2":
version "8.0.2"
- resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
+ resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz"
integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
dependencies:
string-width "^5.1.2"
@@ -2266,12 +2122,12 @@
"@isaacs/string-locale-compare@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b"
+ resolved "https://registry.npmjs.org/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz"
integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==
"@istanbuljs/load-nyc-config@^1.0.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
+ resolved "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==
dependencies:
camelcase "^5.3.1"
@@ -2282,12 +2138,12 @@
"@istanbuljs/schema@^0.1.2":
version "0.1.3"
- resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
+ resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
"@jest/console@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc"
+ resolved "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz"
integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==
dependencies:
"@jest/types" "^29.6.3"
@@ -2299,7 +2155,7 @@
"@jest/core@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f"
+ resolved "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz"
integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==
dependencies:
"@jest/console" "^29.7.0"
@@ -2333,7 +2189,7 @@
"@jest/environment@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7"
+ resolved "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz"
integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==
dependencies:
"@jest/fake-timers" "^29.7.0"
@@ -2341,23 +2197,16 @@
"@types/node" "*"
jest-mock "^29.7.0"
-"@jest/expect-utils@^29.6.2":
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.6.2.tgz#1b97f290d0185d264dd9fdec7567a14a38a90534"
- integrity sha512-6zIhM8go3RV2IG4aIZaZbxwpOzz3ZiM23oxAlkquOIole+G6TrbeXnykxWYlqF7kz2HlBjdKtca20x9atkEQYg==
- dependencies:
- jest-get-type "^29.4.3"
-
"@jest/expect-utils@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6"
+ resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz"
integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==
dependencies:
jest-get-type "^29.6.3"
"@jest/expect@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2"
+ resolved "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz"
integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==
dependencies:
expect "^29.7.0"
@@ -2365,7 +2214,7 @@
"@jest/fake-timers@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565"
+ resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz"
integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==
dependencies:
"@jest/types" "^29.6.3"
@@ -2377,7 +2226,7 @@
"@jest/globals@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d"
+ resolved "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz"
integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==
dependencies:
"@jest/environment" "^29.7.0"
@@ -2387,7 +2236,7 @@
"@jest/reporters@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7"
+ resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz"
integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
@@ -2415,23 +2264,16 @@
strip-ansi "^6.0.0"
v8-to-istanbul "^9.0.1"
-"@jest/schemas@^29.6.0":
- version "29.6.0"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.0.tgz#0f4cb2c8e3dca80c135507ba5635a4fd755b0040"
- integrity sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==
- dependencies:
- "@sinclair/typebox" "^0.27.8"
-
"@jest/schemas@^29.6.3":
version "29.6.3"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03"
+ resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz"
integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==
dependencies:
"@sinclair/typebox" "^0.27.8"
"@jest/source-map@^29.6.3":
version "29.6.3"
- resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4"
+ resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz"
integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==
dependencies:
"@jridgewell/trace-mapping" "^0.3.18"
@@ -2440,7 +2282,7 @@
"@jest/test-result@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c"
+ resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz"
integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==
dependencies:
"@jest/console" "^29.7.0"
@@ -2450,7 +2292,7 @@
"@jest/test-sequencer@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce"
+ resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz"
integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==
dependencies:
"@jest/test-result" "^29.7.0"
@@ -2460,7 +2302,7 @@
"@jest/transform@^29.7.0":
version "29.7.0"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c"
+ resolved "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz"
integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==
dependencies:
"@babel/core" "^7.11.6"
@@ -2479,21 +2321,9 @@
slash "^3.0.0"
write-file-atomic "^4.0.2"
-"@jest/types@^29.6.1":
- version "29.6.1"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.1.tgz#ae79080278acff0a6af5eb49d063385aaa897bf2"
- integrity sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==
- dependencies:
- "@jest/schemas" "^29.6.0"
- "@types/istanbul-lib-coverage" "^2.0.0"
- "@types/istanbul-reports" "^3.0.0"
- "@types/node" "*"
- "@types/yargs" "^17.0.8"
- chalk "^4.0.0"
-
"@jest/types@^29.6.3":
version "29.6.3"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59"
+ resolved "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz"
integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==
dependencies:
"@jest/schemas" "^29.6.3"
@@ -2505,87 +2335,47 @@
"@jridgewell/gen-mapping@^0.1.0":
version "0.1.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
+ resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
-"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
- integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
- dependencies:
- "@jridgewell/set-array" "^1.0.1"
- "@jridgewell/sourcemap-codec" "^1.4.10"
- "@jridgewell/trace-mapping" "^0.3.9"
-
"@jridgewell/gen-mapping@^0.3.5":
version "0.3.5"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36"
+ resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz"
integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==
dependencies:
"@jridgewell/set-array" "^1.2.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.24"
-"@jridgewell/resolve-uri@3.1.0", "@jridgewell/resolve-uri@^3.0.3":
+"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@^3.1.0":
version "3.1.0"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
+ resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
-"@jridgewell/resolve-uri@^3.1.0":
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
- integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
-
-"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
- integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-
-"@jridgewell/set-array@^1.2.1":
+"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.2.1":
version "1.2.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280"
+ resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz"
integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==
-"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
version "1.4.14"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
+ resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
-"@jridgewell/sourcemap-codec@^1.4.14":
- version "1.4.15"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
- integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
-
"@jridgewell/trace-mapping@0.3.9":
version "0.3.9"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9"
+ resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"
integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
-"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.9":
- version "0.3.17"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
- integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
- dependencies:
- "@jridgewell/resolve-uri" "3.1.0"
- "@jridgewell/sourcemap-codec" "1.4.14"
-
-"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18":
- version "0.3.18"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
- integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
- dependencies:
- "@jridgewell/resolve-uri" "3.1.0"
- "@jridgewell/sourcemap-codec" "1.4.14"
-
-"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25":
+"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25", "@jridgewell/trace-mapping@^0.3.9":
version "0.3.25"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
+ resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz"
integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
@@ -2593,12 +2383,12 @@
"@kamilkisiela/fast-url-parser@^1.1.4":
version "1.1.4"
- resolved "https://registry.yarnpkg.com/@kamilkisiela/fast-url-parser/-/fast-url-parser-1.1.4.tgz#9d68877a489107411b953c54ea65d0658b515809"
+ resolved "https://registry.npmjs.org/@kamilkisiela/fast-url-parser/-/fast-url-parser-1.1.4.tgz"
integrity sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==
"@lerna/create@8.1.2":
version "8.1.2"
- resolved "https://registry.yarnpkg.com/@lerna/create/-/create-8.1.2.tgz#4dc8b3f59c963275bfb8b390491068751101f477"
+ resolved "https://registry.npmjs.org/@lerna/create/-/create-8.1.2.tgz"
integrity sha512-GzScCIkAW3tg3+Yn/MKCH9963bzG+zpjGz2NdfYDlYWI7p0f/SH46v1dqpPpYmZ2E/m3JK8HjTNNNL8eIm8/YQ==
dependencies:
"@npmcli/run-script" "7.0.2"
@@ -2668,7 +2458,7 @@
"@lhci/cli@^0.9.0":
version "0.9.0"
- resolved "https://registry.yarnpkg.com/@lhci/cli/-/cli-0.9.0.tgz#aa8107766cdfd8138a2878c9b0ad252645db0c36"
+ resolved "https://registry.npmjs.org/@lhci/cli/-/cli-0.9.0.tgz"
integrity sha512-cEfWHCWuBQKUrwy3minHxRYtiAZ//m8XRSZvFQ2zX2Lzz+J/3xlBKQTfSiln3sIXTTWzEHaucDs70rQS8EQ/vQ==
dependencies:
"@lhci/utils" "0.9.0"
@@ -2689,7 +2479,7 @@
"@lhci/utils@0.9.0":
version "0.9.0"
- resolved "https://registry.yarnpkg.com/@lhci/utils/-/utils-0.9.0.tgz#cde11cd399e3ef2cbf3886eefb8c99518aae313f"
+ resolved "https://registry.npmjs.org/@lhci/utils/-/utils-0.9.0.tgz"
integrity sha512-uHpGX71Mqay4XLxkuMdZhH+goKKygTW9Uc2s2SewRW64TLjUNRSMn2L6wG9cZx6gntD4zBdKFZWoF+dg2yx9MA==
dependencies:
debug "^4.3.1"
@@ -2700,7 +2490,7 @@
"@mdx-js/mdx@^2.2.1", "@mdx-js/mdx@^2.3.0":
version "2.3.0"
- resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.3.0.tgz#d65d8c3c28f3f46bb0e7cb3bf7613b39980671a9"
+ resolved "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-2.3.0.tgz"
integrity sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -2723,7 +2513,7 @@
"@mdx-js/react@^2.2.1", "@mdx-js/react@^2.3.0":
version "2.3.0"
- resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3"
+ resolved "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz"
integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==
dependencies:
"@types/mdx" "^2.0.0"
@@ -2741,7 +2531,7 @@
"@napi-rs/simple-git-darwin-arm64@0.1.8":
version "0.1.8"
- resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-darwin-arm64/-/simple-git-darwin-arm64-0.1.8.tgz#e210808e6d646d6efecea84c67ced8eb44a8f821"
+ resolved "https://registry.npmjs.org/@napi-rs/simple-git-darwin-arm64/-/simple-git-darwin-arm64-0.1.8.tgz"
integrity sha512-ufy/36eI/j4UskEuvqSH7uXtp3oXeLDmjQCfKJz3u5Vx98KmOMKrqAm2H81AB2WOtCo5mqS6PbBeUXR8BJX8lQ==
"@napi-rs/simple-git-darwin-x64@0.1.8":
@@ -2786,7 +2576,7 @@
"@napi-rs/simple-git@^0.1.8":
version "0.1.8"
- resolved "https://registry.yarnpkg.com/@napi-rs/simple-git/-/simple-git-0.1.8.tgz#391cb58436d50bd32d924611d45bdc41f5e7607a"
+ resolved "https://registry.npmjs.org/@napi-rs/simple-git/-/simple-git-0.1.8.tgz"
integrity sha512-BvOMdkkofTz6lEE35itJ/laUokPhr/5ToMGlOH25YnhLD2yN1KpRAT4blW9tT8281/1aZjW3xyi73bs//IrDKA==
optionalDependencies:
"@napi-rs/simple-git-android-arm-eabi" "0.1.8"
@@ -2803,22 +2593,22 @@
"@next/env@13.0.7":
version "13.0.7"
- resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.7.tgz#7b6ccd9006d3fb57c369e3fb62b28e15324141e9"
+ resolved "https://registry.npmjs.org/@next/env/-/env-13.0.7.tgz"
integrity sha512-ZBclBRB7DbkSswXgbJ+muF5RxfgmAuQKAWL8tcm86aZmoiL1ZainxQK0hMcMYdh+IYG8UObAKV2wKB5O+6P4ng==
"@next/env@13.5.1":
version "13.5.1"
- resolved "https://registry.yarnpkg.com/@next/env/-/env-13.5.1.tgz#337f5f3d325250f91ed23d783cbf8297800ee7d3"
+ resolved "https://registry.npmjs.org/@next/env/-/env-13.5.1.tgz"
integrity sha512-CIMWiOTyflFn/GFx33iYXkgLSQsMQZV4jB91qaj/TfxGaGOXxn8C1j72TaUSPIyN7ziS/AYG46kGmnvuk1oOpg==
"@next/env@13.5.6":
version "13.5.6"
- resolved "https://registry.yarnpkg.com/@next/env/-/env-13.5.6.tgz#c1148e2e1aa166614f05161ee8f77ded467062bc"
+ resolved "https://registry.npmjs.org/@next/env/-/env-13.5.6.tgz"
integrity sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==
"@next/eslint-plugin-next@13.0.0":
version "13.0.0"
- resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.0.tgz#cf3d799b21671554c1f5889c01d2513afb9973cd"
+ resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.0.tgz"
integrity sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==
dependencies:
glob "7.1.7"
@@ -2835,17 +2625,17 @@
"@next/swc-darwin-arm64@13.0.7":
version "13.0.7"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.7.tgz#34e80a22573b5321ade8417dfb814cf6e1fd9997"
+ resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.7.tgz"
integrity sha512-F/mU7csN1/J2cqXJPMgTQ6MwAbc1pJ6sp6W+X0z5JEY4IFDzxKd3wRc3pCiNF7j8xW381JlNpWxhjCctnNmfaw==
"@next/swc-darwin-arm64@13.5.1":
version "13.5.1"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.1.tgz#dc21234afce27910a8d141e6a7ab5e821725dc94"
+ resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.1.tgz"
integrity sha512-Bcd0VFrLHZnMmJy6LqV1CydZ7lYaBao8YBEdQUVzV8Ypn/l5s//j5ffjfvMzpEQ4mzlAj3fIY+Bmd9NxpWhACw==
"@next/swc-darwin-arm64@13.5.6":
version "13.5.6"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.6.tgz#b15d139d8971360fca29be3bdd703c108c9a45fb"
+ resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.6.tgz"
integrity sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==
"@next/swc-darwin-x64@13.0.7":
@@ -2980,7 +2770,7 @@
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
+ resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
dependencies:
"@nodelib/fs.stat" "2.0.5"
@@ -2988,12 +2778,12 @@
"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
version "2.0.5"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
+ resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
"@nodelib/fs.walk@^1.2.3":
version "1.2.8"
- resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
+ resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
dependencies:
"@nodelib/fs.scandir" "2.1.5"
@@ -3001,7 +2791,7 @@
"@npmcli/agent@^2.0.0":
version "2.2.2"
- resolved "https://registry.yarnpkg.com/@npmcli/agent/-/agent-2.2.2.tgz#967604918e62f620a648c7975461c9c9e74fc5d5"
+ resolved "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz"
integrity sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==
dependencies:
agent-base "^7.1.0"
@@ -3012,7 +2802,7 @@
"@npmcli/arborist@^4.0.4":
version "4.3.1"
- resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-4.3.1.tgz#a08cddce3339882f688c1dea1651f6971e781c44"
+ resolved "https://registry.npmjs.org/@npmcli/arborist/-/arborist-4.3.1.tgz"
integrity sha512-yMRgZVDpwWjplorzt9SFSaakWx6QIK248Nw4ZFgkrAy/GvJaFRaSZzE6nD7JBK5r8g/+PTxFq5Wj/sfciE7x+A==
dependencies:
"@isaacs/string-locale-compare" "^1.1.0"
@@ -3050,7 +2840,7 @@
"@npmcli/fs@^1.0.0":
version "1.1.1"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257"
+ resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz"
integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==
dependencies:
"@gar/promisify" "^1.0.1"
@@ -3058,7 +2848,7 @@
"@npmcli/fs@^2.1.0":
version "2.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865"
+ resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz"
integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==
dependencies:
"@gar/promisify" "^1.1.3"
@@ -3066,14 +2856,14 @@
"@npmcli/fs@^3.1.0":
version "3.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e"
+ resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz"
integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==
dependencies:
semver "^7.3.5"
"@npmcli/git@^2.1.0":
version "2.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-2.1.0.tgz#2fbd77e147530247d37f325930d457b3ebe894f6"
+ resolved "https://registry.npmjs.org/@npmcli/git/-/git-2.1.0.tgz"
integrity sha512-/hBFX/QG1b+N7PZBFs0bi+evgRZcK9nWBxQKZkGoXUT5hJSwl5c4d7y8/hm+NQZRPhQ67RzFaj5UM9YeyKoryw==
dependencies:
"@npmcli/promise-spawn" "^1.3.2"
@@ -3087,7 +2877,7 @@
"@npmcli/git@^5.0.0":
version "5.0.6"
- resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-5.0.6.tgz#d7b24eb2cff98754c8868faab40405abfa1abe28"
+ resolved "https://registry.npmjs.org/@npmcli/git/-/git-5.0.6.tgz"
integrity sha512-4x/182sKXmQkf0EtXxT26GEsaOATpD7WVtza5hrYivWZeo6QefC6xq9KAXrnjtFKBZ4rZwR7aX/zClYYXgtwLw==
dependencies:
"@npmcli/promise-spawn" "^7.0.0"
@@ -3101,7 +2891,7 @@
"@npmcli/installed-package-contents@^1.0.6", "@npmcli/installed-package-contents@^1.0.7":
version "1.0.7"
- resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa"
+ resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz"
integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==
dependencies:
npm-bundled "^1.1.1"
@@ -3109,7 +2899,7 @@
"@npmcli/installed-package-contents@^2.0.1":
version "2.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz#63048e5f6e40947a3a88dcbcb4fd9b76fdd37c17"
+ resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz"
integrity sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==
dependencies:
npm-bundled "^3.0.0"
@@ -3117,7 +2907,7 @@
"@npmcli/map-workspaces@^2.0.0":
version "2.0.4"
- resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-2.0.4.tgz#9e5e8ab655215a262aefabf139782b894e0504fc"
+ resolved "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-2.0.4.tgz"
integrity sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==
dependencies:
"@npmcli/name-from-folder" "^1.0.1"
@@ -3127,7 +2917,7 @@
"@npmcli/metavuln-calculator@^2.0.0":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-2.0.0.tgz#70937b8b5a5cad5c588c8a7b38c4a8bd6f62c84c"
+ resolved "https://registry.npmjs.org/@npmcli/metavuln-calculator/-/metavuln-calculator-2.0.0.tgz"
integrity sha512-VVW+JhWCKRwCTE+0xvD6p3uV4WpqocNYYtzyvenqL/u1Q3Xx6fGTJ+6UoIoii07fbuEO9U3IIyuGY0CYHDv1sg==
dependencies:
cacache "^15.0.5"
@@ -3137,7 +2927,7 @@
"@npmcli/move-file@^1.0.1", "@npmcli/move-file@^1.1.0":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
+ resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
dependencies:
mkdirp "^1.0.4"
@@ -3145,7 +2935,7 @@
"@npmcli/move-file@^2.0.0":
version "2.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4"
+ resolved "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz"
integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==
dependencies:
mkdirp "^1.0.4"
@@ -3153,29 +2943,29 @@
"@npmcli/name-from-folder@^1.0.1":
version "1.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz#77ecd0a4fcb772ba6fe927e2e2e155fbec2e6b1a"
+ resolved "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz"
integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==
"@npmcli/node-gyp@^1.0.2", "@npmcli/node-gyp@^1.0.3":
version "1.0.3"
- resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz#a912e637418ffc5f2db375e93b85837691a43a33"
+ resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-1.0.3.tgz"
integrity sha512-fnkhw+fmX65kiLqk6E3BFLXNC26rUhK90zVwe2yncPliVT/Qos3xjhTLE59Df8KnPlcwIERXKVlU1bXoUQ+liA==
"@npmcli/node-gyp@^3.0.0":
version "3.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a"
+ resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz"
integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==
"@npmcli/package-json@^1.0.1":
version "1.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-1.0.1.tgz#1ed42f00febe5293c3502fd0ef785647355f6e89"
+ resolved "https://registry.npmjs.org/@npmcli/package-json/-/package-json-1.0.1.tgz"
integrity sha512-y6jnu76E9C23osz8gEMBayZmaZ69vFOIk8vR1FJL/wbEJ54+9aVG9rLTjQKSXfgYZEr50nw1txBBFfBZZe+bYg==
dependencies:
json-parse-even-better-errors "^2.3.1"
"@npmcli/package-json@^5.0.0":
version "5.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-5.1.0.tgz#10d117b5fb175acc14c70901a151c52deffc843e"
+ resolved "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.1.0.tgz"
integrity sha512-1aL4TuVrLS9sf8quCLerU3H9J4vtCtgu8VauYozrmEyU57i/EdKleCnsQ7vpnABIH6c9mnTxcH5sFkO3BlV8wQ==
dependencies:
"@npmcli/git" "^5.0.0"
@@ -3188,26 +2978,26 @@
"@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2":
version "1.3.2"
- resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz#42d4e56a8e9274fba180dabc0aea6e38f29274f5"
+ resolved "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.3.2.tgz"
integrity sha512-QyAGYo/Fbj4MXeGdJcFzZ+FkDkomfRBrPM+9QYJSg+PxgAUL+LU3FneQk37rKR2/zjqkCV1BLHccX98wRXG3Sg==
dependencies:
infer-owner "^1.0.4"
"@npmcli/promise-spawn@^7.0.0":
version "7.0.1"
- resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-7.0.1.tgz#a836de2f42a2245d629cf6fbb8dd6c74c74c55af"
+ resolved "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.1.tgz"
integrity sha512-P4KkF9jX3y+7yFUxgcUdDtLy+t4OlDGuEBLNs57AZsfSfg+uV6MLndqGpnl4831ggaEdXwR50XFoZP4VFtHolg==
dependencies:
which "^4.0.0"
"@npmcli/redact@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/redact/-/redact-1.1.0.tgz#78e53a6a34f013543a73827a07ebdc3a6f10454b"
+ resolved "https://registry.npmjs.org/@npmcli/redact/-/redact-1.1.0.tgz"
integrity sha512-PfnWuOkQgu7gCbnSsAisaX7hKOdZ4wSAhAzH3/ph5dSGau52kCRrMMGbiSQLwyTZpgldkZ49b0brkOr1AzGBHQ==
"@npmcli/run-script@7.0.2":
version "7.0.2"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-7.0.2.tgz#497e7f058799497889df65900c711312252276d3"
+ resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz"
integrity sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==
dependencies:
"@npmcli/node-gyp" "^3.0.0"
@@ -3218,7 +3008,7 @@
"@npmcli/run-script@^2.0.0":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-2.0.0.tgz#9949c0cab415b17aaac279646db4f027d6f1e743"
+ resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-2.0.0.tgz"
integrity sha512-fSan/Pu11xS/TdaTpTB0MRn9guwGU8dye+x56mEVgBEd/QsybBbYcAL0phPXi8SGWFEChkQd6M9qL4y6VOpFig==
dependencies:
"@npmcli/node-gyp" "^1.0.2"
@@ -3228,7 +3018,7 @@
"@npmcli/run-script@^7.0.0":
version "7.0.4"
- resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-7.0.4.tgz#9f29aaf4bfcf57f7de2a9e28d1ef091d14b2e6eb"
+ resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.4.tgz"
integrity sha512-9ApYM/3+rBt9V80aYg6tZfzj3UWdiYyCt7gJUD1VJKvWF5nwKDSICXbYIQbspFTq6TOpbsEtIC0LArB8d9PFmg==
dependencies:
"@npmcli/node-gyp" "^3.0.0"
@@ -3239,14 +3029,14 @@
"@nrwl/devkit@18.3.4":
version "18.3.4"
- resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-18.3.4.tgz#74744e5f60566b1031b8d33b330af2ffee7205df"
+ resolved "https://registry.npmjs.org/@nrwl/devkit/-/devkit-18.3.4.tgz"
integrity sha512-Fty9Huqm12OYueU3uLJl3uvBUl5BvEyPfvw8+rLiNx9iftdEattM8C+268eAbIRRSLSOVXlWsJH4brlc6QZYYw==
dependencies:
"@nx/devkit" "18.3.4"
"@nrwl/tao@18.3.4":
version "18.3.4"
- resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-18.3.4.tgz#e574addaae87a0fa83bd6163ef006c41be1ce066"
+ resolved "https://registry.npmjs.org/@nrwl/tao/-/tao-18.3.4.tgz"
integrity sha512-+7KsDYmGj1cvNaXZcjSYOPN1h17hsGFBtVX7MqnpJLLkQTUhKg2rQxqyluzshJ+RoDUVtYPGyHg1AizlB66RIA==
dependencies:
nx "18.3.4"
@@ -3254,7 +3044,7 @@
"@nx/devkit@18.3.4", "@nx/devkit@>=17.1.2 < 19":
version "18.3.4"
- resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-18.3.4.tgz#1adee4670d0265c5f07f9e026bbfe60785992359"
+ resolved "https://registry.npmjs.org/@nx/devkit/-/devkit-18.3.4.tgz"
integrity sha512-M3htxl5WvlNKK5KNOndCAApbyBCZNTFFs+rtdwvudNZk5+84zAAPaWzSoX9C4XLAW78/f98LzF68/ch05aN12A==
dependencies:
"@nrwl/devkit" "18.3.4"
@@ -3268,7 +3058,7 @@
"@nx/nx-darwin-arm64@18.3.4":
version "18.3.4"
- resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-18.3.4.tgz#35d64992cce42d25866289fb75ec286874663260"
+ resolved "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-18.3.4.tgz"
integrity sha512-MOGk9z4fIoOkJB68diH3bwoWrC8X9IzMNsz1mu0cbVfgCRAfIV3b+lMsiwQYzWal3UWW5DE5Rkss4F8whiV5Uw==
"@nx/nx-darwin-x64@18.3.4":
@@ -3318,7 +3108,7 @@
"@oclif/color@^1.0.2":
version "1.0.3"
- resolved "https://registry.yarnpkg.com/@oclif/color/-/color-1.0.3.tgz#1a303b533a832a0af563006eb9a6883ebe3b77ed"
+ resolved "https://registry.npmjs.org/@oclif/color/-/color-1.0.3.tgz"
integrity sha512-E+KKAE5CKhXRBZEoZLe5yNR0VHmba1m1fxz8HlpcWjHF5Pdhhf6W/0XMmed6vwQCmyzL/YLwdspCRfu0A1cgGA==
dependencies:
ansi-styles "^4.2.1"
@@ -3329,7 +3119,7 @@
"@oclif/core@^1.16.4", "@oclif/core@^1.20.4", "@oclif/core@^1.23.1":
version "1.23.1"
- resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.23.1.tgz#bebbbc4e02a4c1a4216d64165f892037f8a1e14a"
+ resolved "https://registry.npmjs.org/@oclif/core/-/core-1.23.1.tgz"
integrity sha512-nz7wVGesJ1Qg74p1KNKluZpQ3Z042mqdaRlczEI4Xwqj5s9jjdDBCDHNkiGzV4UAKzicVzipNj6qqhyUWKYnaA==
dependencies:
"@oclif/linewrap" "^1.0.0"
@@ -3363,19 +3153,19 @@
"@oclif/linewrap@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91"
+ resolved "https://registry.npmjs.org/@oclif/linewrap/-/linewrap-1.0.0.tgz"
integrity sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw==
"@oclif/plugin-help@^5", "@oclif/plugin-help@^5.1.19":
version "5.1.22"
- resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-5.1.22.tgz#65b78efe34af10e9427e046fb4d3524d62149226"
+ resolved "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-5.1.22.tgz"
integrity sha512-gflrCqV3c7nd1UgknuZZTX6Th9CTkvVyTjL76UNHrea3kCZEpPzsMGhwP989R+j3KSGJGeZVrq2i9g2QXI9tZA==
dependencies:
"@oclif/core" "^1.23.1"
"@oclif/plugin-not-found@^2.3.3", "@oclif/plugin-not-found@^2.3.7":
version "2.3.13"
- resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-2.3.13.tgz#7b2a3d1a6757785727a79d85654116b85700981f"
+ resolved "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-2.3.13.tgz"
integrity sha512-xadWMsIL9bHdzwdnj8c4q9xE6KZcVETwmFuoVuZkhbAJGA9E7tB67ULhxWMQbm/pYmzzC6h296mjf+fiHq0hqg==
dependencies:
"@oclif/color" "^1.0.2"
@@ -3385,7 +3175,7 @@
"@oclif/plugin-warn-if-update-available@^2.0.14":
version "2.0.18"
- resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.18.tgz#c00949c857a6e84bb8108200b0b8a6f423ae1097"
+ resolved "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.0.18.tgz"
integrity sha512-FmfMpsC/lhWgtUpN++LxKiWYhnTwDjeJPsENzZHi49opkzol2oT45Cw2tFYA8qW+CngRBrHWI72tTJ1KSsRbEA==
dependencies:
"@oclif/core" "^1.23.1"
@@ -3398,24 +3188,24 @@
"@oclif/screen@^3.0.3":
version "3.0.4"
- resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-3.0.4.tgz#663db0ecaf23f3184e7f01886ed578060e4a7f1c"
+ resolved "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.4.tgz"
integrity sha512-IMsTN1dXEXaOSre27j/ywGbBjrzx0FNd1XmuhCWCB9NTPrhWI1Ifbz+YLSEcstfQfocYsrbrIessxXb2oon4lA==
"@octokit/auth-token@^2.4.4":
version "2.5.0"
- resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.5.0.tgz#27c37ea26c205f28443402477ffd261311f21e36"
+ resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz"
integrity sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==
dependencies:
"@octokit/types" "^6.0.3"
"@octokit/auth-token@^3.0.0":
version "3.0.4"
- resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db"
+ resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz"
integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==
"@octokit/core@^3.5.1":
version "3.6.0"
- resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.6.0.tgz#3376cb9f3008d9b3d110370d90e0a1fcd5fe6085"
+ resolved "https://registry.npmjs.org/@octokit/core/-/core-3.6.0.tgz"
integrity sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==
dependencies:
"@octokit/auth-token" "^2.4.4"
@@ -3428,7 +3218,7 @@
"@octokit/core@^4.2.1":
version "4.2.4"
- resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907"
+ resolved "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz"
integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==
dependencies:
"@octokit/auth-token" "^3.0.0"
@@ -3441,7 +3231,7 @@
"@octokit/endpoint@^6.0.1":
version "6.0.12"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.12.tgz#3b4d47a4b0e79b1027fb8d75d4221928b2d05658"
+ resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz"
integrity sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==
dependencies:
"@octokit/types" "^6.0.3"
@@ -3450,7 +3240,7 @@
"@octokit/endpoint@^7.0.0":
version "7.0.6"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2"
+ resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz"
integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==
dependencies:
"@octokit/types" "^9.0.0"
@@ -3459,7 +3249,7 @@
"@octokit/graphql@^4.5.8":
version "4.8.0"
- resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz#664d9b11c0e12112cbf78e10f49a05959aa22cc3"
+ resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz"
integrity sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==
dependencies:
"@octokit/request" "^5.6.0"
@@ -3468,7 +3258,7 @@
"@octokit/graphql@^5.0.0":
version "5.0.6"
- resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248"
+ resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz"
integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==
dependencies:
"@octokit/request" "^6.0.0"
@@ -3477,29 +3267,29 @@
"@octokit/openapi-types@^12.11.0":
version "12.11.0"
- resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0"
+ resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz"
integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==
"@octokit/openapi-types@^18.0.0":
version "18.1.1"
- resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.1.1.tgz#09bdfdabfd8e16d16324326da5148010d765f009"
+ resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.1.1.tgz"
integrity sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==
"@octokit/plugin-enterprise-rest@6.0.1":
version "6.0.1"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437"
+ resolved "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz"
integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw==
"@octokit/plugin-paginate-rest@^2.16.8":
version "2.21.3"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e"
+ resolved "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz"
integrity sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==
dependencies:
"@octokit/types" "^6.40.0"
"@octokit/plugin-paginate-rest@^6.1.2":
version "6.1.2"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8"
+ resolved "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz"
integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ==
dependencies:
"@octokit/tsconfig" "^1.0.2"
@@ -3507,12 +3297,12 @@
"@octokit/plugin-request-log@^1.0.4":
version "1.0.4"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85"
+ resolved "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz"
integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==
"@octokit/plugin-rest-endpoint-methods@^5.12.0":
version "5.16.2"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342"
+ resolved "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz"
integrity sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==
dependencies:
"@octokit/types" "^6.39.0"
@@ -3520,14 +3310,14 @@
"@octokit/plugin-rest-endpoint-methods@^7.1.2":
version "7.2.3"
- resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz#37a84b171a6cb6658816c82c4082ac3512021797"
+ resolved "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz"
integrity sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA==
dependencies:
"@octokit/types" "^10.0.0"
"@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0":
version "2.1.0"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.1.0.tgz#9e150357831bfc788d13a4fd4b1913d60c74d677"
+ resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz"
integrity sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==
dependencies:
"@octokit/types" "^6.0.3"
@@ -3536,7 +3326,7 @@
"@octokit/request-error@^3.0.0":
version "3.0.3"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69"
+ resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz"
integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==
dependencies:
"@octokit/types" "^9.0.0"
@@ -3545,7 +3335,7 @@
"@octokit/request@^5.6.0", "@octokit/request@^5.6.3":
version "5.6.3"
- resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.6.3.tgz#19a022515a5bba965ac06c9d1334514eb50c48b0"
+ resolved "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz"
integrity sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==
dependencies:
"@octokit/endpoint" "^6.0.1"
@@ -3557,7 +3347,7 @@
"@octokit/request@^6.0.0":
version "6.2.8"
- resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.8.tgz#aaf480b32ab2b210e9dadd8271d187c93171d8eb"
+ resolved "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz"
integrity sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==
dependencies:
"@octokit/endpoint" "^7.0.0"
@@ -3569,7 +3359,7 @@
"@octokit/rest@19.0.11":
version "19.0.11"
- resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.11.tgz#2ae01634fed4bd1fca5b642767205ed3fd36177c"
+ resolved "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz"
integrity sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw==
dependencies:
"@octokit/core" "^4.2.1"
@@ -3579,7 +3369,7 @@
"@octokit/rest@^18.0.6":
version "18.12.0"
- resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.12.0.tgz#f06bc4952fc87130308d810ca9d00e79f6988881"
+ resolved "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz"
integrity sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==
dependencies:
"@octokit/core" "^3.5.1"
@@ -3589,52 +3379,52 @@
"@octokit/tsconfig@^1.0.2":
version "1.0.2"
- resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7"
+ resolved "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz"
integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA==
"@octokit/types@^10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-10.0.0.tgz#7ee19c464ea4ada306c43f1a45d444000f419a4a"
+ resolved "https://registry.npmjs.org/@octokit/types/-/types-10.0.0.tgz"
integrity sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg==
dependencies:
"@octokit/openapi-types" "^18.0.0"
"@octokit/types@^6.0.3", "@octokit/types@^6.16.1", "@octokit/types@^6.39.0", "@octokit/types@^6.40.0":
version "6.41.0"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.41.0.tgz#e58ef78d78596d2fb7df9c6259802464b5f84a04"
+ resolved "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz"
integrity sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==
dependencies:
"@octokit/openapi-types" "^12.11.0"
"@octokit/types@^9.0.0", "@octokit/types@^9.2.3":
version "9.3.2"
- resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5"
+ resolved "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz"
integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==
dependencies:
"@octokit/openapi-types" "^18.0.0"
"@opentelemetry/api-logs@0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.39.1.tgz#3ea1e9dda11c35f993cb60dc5e52780b8175e702"
+ resolved "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.39.1.tgz"
integrity sha512-9BJ8lMcOzEN0lu+Qji801y707oFO4xT3db6cosPvl+k7ItUHKN5ofWqtSbM9gbt1H4JJ/4/2TVrqI9Rq7hNv6Q==
dependencies:
"@opentelemetry/api" "^1.0.0"
"@opentelemetry/api@^1.0.0":
version "1.4.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-1.4.1.tgz#ff22eb2e5d476fbc2450a196e40dd243cc20c28f"
+ resolved "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.1.tgz"
integrity sha512-O2yRJce1GOc6PAy3QxFM4NzFiWzvScDC1/5ihYBL6BUEVdq0XMWN01sppE+H6bBXbaFYipjwFLEWLg5PaSOThA==
"@opentelemetry/core@1.13.0":
version "1.13.0"
- resolved "https://registry.yarnpkg.com/@opentelemetry/core/-/core-1.13.0.tgz#7cdcb4176d260d279b0aa31456c4ce2ba7f410aa"
+ resolved "https://registry.npmjs.org/@opentelemetry/core/-/core-1.13.0.tgz"
integrity sha512-2dBX3Sj99H96uwJKvc2w9NOiNgbvAO6mOFJFramNkKfS9O4Um+VWgpnlAazoYjT6kUJ1MP70KQ5ngD4ed+4NUw==
dependencies:
"@opentelemetry/semantic-conventions" "1.13.0"
"@opentelemetry/exporter-logs-otlp-grpc@^0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-logs-otlp-grpc/-/exporter-logs-otlp-grpc-0.39.1.tgz#0161c8bfbfcf615dd6b6e3f06ddc29d70f2772a2"
+ resolved "https://registry.npmjs.org/@opentelemetry/exporter-logs-otlp-grpc/-/exporter-logs-otlp-grpc-0.39.1.tgz"
integrity sha512-D+rI0+bsatOdH8TYULkBpOAlH0PjAMySzMjKZRQAdff2FUqCt5UqZBDVuiMupaZyFsc1oW5uWEAVRJIWRqVuOA==
dependencies:
"@grpc/grpc-js" "^1.7.1"
@@ -3645,7 +3435,7 @@
"@opentelemetry/exporter-trace-otlp-grpc@^0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/exporter-trace-otlp-grpc/-/exporter-trace-otlp-grpc-0.39.1.tgz#3949f909fb3f8cbb456480a35829bb2630331bd3"
+ resolved "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-grpc/-/exporter-trace-otlp-grpc-0.39.1.tgz"
integrity sha512-l5RhLKx6U+yuLhMrtgavTDthX50E1mZM3/SSySC7OPZiArFHV/b/9x9jxAzrOgIQUDxyj4N0V9aLKSA2t7Qzxg==
dependencies:
"@grpc/grpc-js" "^1.7.1"
@@ -3657,14 +3447,14 @@
"@opentelemetry/otlp-exporter-base@0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.39.1.tgz#650c9b23bbc6eb335c5f9b7f433aca87e9dc88a3"
+ resolved "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.39.1.tgz"
integrity sha512-Pv5X8fbi6jD/RJBePyn7MnCSuE6MbPB6dl+7YYBWJ5RcMGYMwvLXjd4h2jWsPV2TSUg38H/RoSP0aXvQ06Y7iw==
dependencies:
"@opentelemetry/core" "1.13.0"
"@opentelemetry/otlp-grpc-exporter-base@0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-grpc-exporter-base/-/otlp-grpc-exporter-base-0.39.1.tgz#944f2ab384c08c37641c02f63381380d9d0714f4"
+ resolved "https://registry.npmjs.org/@opentelemetry/otlp-grpc-exporter-base/-/otlp-grpc-exporter-base-0.39.1.tgz"
integrity sha512-u3ErFRQqQFKjjIMuwLWxz/tLPYInfmiAmSy//fGSCzCh2ZdJgqQjMOAxBgqFtCF2xFL+OmMhyuC2ThMzceGRWA==
dependencies:
"@grpc/grpc-js" "^1.7.1"
@@ -3674,7 +3464,7 @@
"@opentelemetry/otlp-transformer@0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/otlp-transformer/-/otlp-transformer-0.39.1.tgz#6d83e33d2a031f9ae1dcaf29595eac25b681bebf"
+ resolved "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.39.1.tgz"
integrity sha512-0hgVnXXz5efI382B/24NxD4b6Zxlh7nxCdJkxkdmQMbn0yRiwoq/ZT+QG8eUL6JNzsBAV1WJlF5aJNsL8skHvw==
dependencies:
"@opentelemetry/api-logs" "0.39.1"
@@ -3686,7 +3476,7 @@
"@opentelemetry/resources@1.13.0":
version "1.13.0"
- resolved "https://registry.yarnpkg.com/@opentelemetry/resources/-/resources-1.13.0.tgz#436b33ea950004e66fce6575f2776a05faca7f8e"
+ resolved "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.13.0.tgz"
integrity sha512-euqjOkiN6xhjE//0vQYGvbStxoD/WWQRhDiO0OTLlnLBO9Yw2Gd/VoSx2H+svsebjzYk5OxLuREBmcdw6rbUNg==
dependencies:
"@opentelemetry/core" "1.13.0"
@@ -3694,7 +3484,7 @@
"@opentelemetry/sdk-logs@0.39.1", "@opentelemetry/sdk-logs@^0.39.1":
version "0.39.1"
- resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-logs/-/sdk-logs-0.39.1.tgz#888af05458af5d097d6263ade118e8db78f76f38"
+ resolved "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.39.1.tgz"
integrity sha512-/gmgKfZ1ZVFporKuwsewqIyvaUIGpv76JZ7lBpHQQPb37IMpaXO6pdqFI4ebHAWfNIm3akMyhmdtzivcgF3lgw==
dependencies:
"@opentelemetry/core" "1.13.0"
@@ -3702,7 +3492,7 @@
"@opentelemetry/sdk-metrics@1.13.0":
version "1.13.0"
- resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-metrics/-/sdk-metrics-1.13.0.tgz#4e859107a7a4389bcda7b37d3952bc7dd34211d7"
+ resolved "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.13.0.tgz"
integrity sha512-MOjZX6AnSOqLliCcZUrb+DQKjAWXBiGeICGbHAGe5w0BB18PJIeIo995lO5JSaFfHpmUMgJButTPfJJD27W3Vg==
dependencies:
"@opentelemetry/core" "1.13.0"
@@ -3711,7 +3501,7 @@
"@opentelemetry/sdk-trace-base@1.13.0", "@opentelemetry/sdk-trace-base@^1.13.0":
version "1.13.0"
- resolved "https://registry.yarnpkg.com/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.13.0.tgz#096cc2759430d880c5d886e009df2605097403dc"
+ resolved "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.13.0.tgz"
integrity sha512-moTiQtc0uPR1hQLt6gLDJH9IIkeBhgRb71OKjNHZPE1VF45fHtD6nBDi5J/DkTHTwYP5X3kBJLa3xN7ub6J4eg==
dependencies:
"@opentelemetry/core" "1.13.0"
@@ -3720,7 +3510,7 @@
"@opentelemetry/semantic-conventions@1.13.0":
version "1.13.0"
- resolved "https://registry.yarnpkg.com/@opentelemetry/semantic-conventions/-/semantic-conventions-1.13.0.tgz#0290398b3eaebc6029c348988a78c3b688fe9219"
+ resolved "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.13.0.tgz"
integrity sha512-LMGqfSZkaMQXqewO0o1wvWr/2fQdCh4a3Sqlxka/UsJCe0cfLulh6x2aqnKLnsrSGiCq5rSCwvINd152i0nCqw==
"@parcel/watcher-android-arm64@2.4.1":
@@ -3730,7 +3520,7 @@
"@parcel/watcher-darwin-arm64@2.4.1":
version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz#c817c7a3b4f3a79c1535bfe54a1c2818d9ffdc34"
+ resolved "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz"
integrity sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==
"@parcel/watcher-darwin-x64@2.4.1":
@@ -3785,7 +3575,7 @@
"@parcel/watcher@^2.4.0":
version "2.4.1"
- resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.4.1.tgz#a50275151a1bb110879c6123589dba90c19f1bf8"
+ resolved "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz"
integrity sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==
dependencies:
detect-libc "^1.0.3"
@@ -3808,7 +3598,7 @@
"@peculiar/asn1-schema@^2.1.6", "@peculiar/asn1-schema@^2.3.0":
version "2.3.3"
- resolved "https://registry.yarnpkg.com/@peculiar/asn1-schema/-/asn1-schema-2.3.3.tgz#21418e1f3819e0b353ceff0c2dad8ccb61acd777"
+ resolved "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.3.3.tgz"
integrity sha512-6GptMYDMyWBHTUKndHaDsRZUO/XMSgIns2krxcm2L7SEExRHwawFvSwNBhqNPR9HJwv3MruAiF1bhN0we6j6GQ==
dependencies:
asn1js "^3.0.5"
@@ -3817,14 +3607,14 @@
"@peculiar/json-schema@^1.1.12":
version "1.1.12"
- resolved "https://registry.yarnpkg.com/@peculiar/json-schema/-/json-schema-1.1.12.tgz#fe61e85259e3b5ba5ad566cb62ca75b3d3cd5339"
+ resolved "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz"
integrity sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==
dependencies:
tslib "^2.0.0"
"@peculiar/webcrypto@^1.4.0":
version "1.4.1"
- resolved "https://registry.yarnpkg.com/@peculiar/webcrypto/-/webcrypto-1.4.1.tgz#821493bd5ad0f05939bd5f53b28536f68158360a"
+ resolved "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.4.1.tgz"
integrity sha512-eK4C6WTNYxoI7JOabMoZICiyqRRtJB220bh0Mbj5RwRycleZf9BPyZoxsTvpP0FpmVS2aS13NKOuh5/tN3sIRw==
dependencies:
"@peculiar/asn1-schema" "^2.3.0"
@@ -3835,37 +3625,37 @@
"@pkgjs/parseargs@^0.11.0":
version "0.11.0"
- resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
+ resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz"
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
"@popperjs/core@^2.11.6":
version "2.11.6"
- resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.6.tgz#cee20bd55e68a1720bdab363ecf0c821ded4cd45"
+ resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz"
integrity sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==
"@protobufjs/aspromise@^1.1.1", "@protobufjs/aspromise@^1.1.2":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz#9b8b0cc663d669a7d8f6f5d0893a14d348f30fbf"
+ resolved "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz"
integrity sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==
"@protobufjs/base64@^1.1.2":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@protobufjs/base64/-/base64-1.1.2.tgz#4c85730e59b9a1f1f349047dbf24296034bb2735"
+ resolved "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz"
integrity sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==
"@protobufjs/codegen@^2.0.4":
version "2.0.4"
- resolved "https://registry.yarnpkg.com/@protobufjs/codegen/-/codegen-2.0.4.tgz#7ef37f0d010fb028ad1ad59722e506d9262815cb"
+ resolved "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz"
integrity sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==
"@protobufjs/eventemitter@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz#355cbc98bafad5978f9ed095f397621f1d066b70"
+ resolved "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz"
integrity sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==
"@protobufjs/fetch@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@protobufjs/fetch/-/fetch-1.1.0.tgz#ba99fb598614af65700c1619ff06d454b0d84c45"
+ resolved "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz"
integrity sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==
dependencies:
"@protobufjs/aspromise" "^1.1.1"
@@ -3873,37 +3663,37 @@
"@protobufjs/float@^1.0.2":
version "1.0.2"
- resolved "https://registry.yarnpkg.com/@protobufjs/float/-/float-1.0.2.tgz#5e9e1abdcb73fc0a7cb8b291df78c8cbd97b87d1"
+ resolved "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz"
integrity sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==
"@protobufjs/inquire@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@protobufjs/inquire/-/inquire-1.1.0.tgz#ff200e3e7cf2429e2dcafc1140828e8cc638f089"
+ resolved "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz"
integrity sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==
"@protobufjs/path@^1.1.2":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@protobufjs/path/-/path-1.1.2.tgz#6cc2b20c5c9ad6ad0dccfd21ca7673d8d7fbf68d"
+ resolved "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz"
integrity sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==
"@protobufjs/pool@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@protobufjs/pool/-/pool-1.1.0.tgz#09fd15f2d6d3abfa9b65bc366506d6ad7846ff54"
+ resolved "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz"
integrity sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==
"@protobufjs/utf8@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
+ resolved "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz"
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
"@repeaterjs/repeater@3.0.4", "@repeaterjs/repeater@^3.0.4":
version "3.0.4"
- resolved "https://registry.yarnpkg.com/@repeaterjs/repeater/-/repeater-3.0.4.tgz#a04d63f4d1bf5540a41b01a921c9a7fddc3bd1ca"
+ resolved "https://registry.npmjs.org/@repeaterjs/repeater/-/repeater-3.0.4.tgz"
integrity sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==
"@rollup/plugin-graphql@^1.0.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@rollup/plugin-graphql/-/plugin-graphql-1.1.0.tgz#492f579816f65bc21ce26394f2f140d95192622d"
+ resolved "https://registry.npmjs.org/@rollup/plugin-graphql/-/plugin-graphql-1.1.0.tgz"
integrity sha512-X+H6oFlprDlnO3D0UiEytdW97AMphPXO0C7KunS7i/rBXIGQRQVDU5WKTXnBu2tfyYbjCTtfhXMSGI0i885PNg==
dependencies:
"@rollup/pluginutils" "^4.0.0"
@@ -3911,7 +3701,7 @@
"@rollup/pluginutils@^4.0.0":
version "4.2.1"
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz#e6c6c3aba0744edce3fb2074922d3776c0af2a6d"
+ resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"
integrity sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==
dependencies:
estree-walker "^2.0.1"
@@ -3919,48 +3709,48 @@
"@rushstack/eslint-patch@^1.1.3":
version "1.2.0"
- resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728"
+ resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz"
integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==
"@samverschueren/stream-to-observable@^0.3.0":
version "0.3.1"
- resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301"
+ resolved "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz"
integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==
dependencies:
any-observable "^0.3.0"
"@sigstore/bundle@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-1.1.0.tgz#17f8d813b09348b16eeed66a8cf1c3d6bd3d04f1"
+ resolved "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz"
integrity sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog==
dependencies:
"@sigstore/protobuf-specs" "^0.2.0"
"@sigstore/bundle@^2.3.0", "@sigstore/bundle@^2.3.1":
version "2.3.1"
- resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-2.3.1.tgz#f6cdc67c8400e58ca27f0ef495b27a9327512073"
+ resolved "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.3.1.tgz"
integrity sha512-eqV17lO3EIFqCWK3969Rz+J8MYrRZKw9IBHpSo6DEcEX2c+uzDFOgHE9f2MnyDpfs48LFO4hXmk9KhQ74JzU1g==
dependencies:
"@sigstore/protobuf-specs" "^0.3.1"
"@sigstore/core@^1.0.0", "@sigstore/core@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@sigstore/core/-/core-1.1.0.tgz#5583d8f7ffe599fa0a89f2bf289301a5af262380"
+ resolved "https://registry.npmjs.org/@sigstore/core/-/core-1.1.0.tgz"
integrity sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==
"@sigstore/protobuf-specs@^0.2.0":
version "0.2.1"
- resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz#be9ef4f3c38052c43bd399d3f792c97ff9e2277b"
+ resolved "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz"
integrity sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==
"@sigstore/protobuf-specs@^0.3.0", "@sigstore/protobuf-specs@^0.3.1":
version "0.3.1"
- resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.3.1.tgz#7095819fa7c5743efde48a858c37b30fab190a09"
+ resolved "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.1.tgz"
integrity sha512-aIL8Z9NsMr3C64jyQzE0XlkEyBLpgEJJFDHLVVStkFV5Q3Il/r/YtY6NJWKQ4cy4AE7spP1IX5Jq7VCAxHHMfQ==
"@sigstore/sign@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-1.0.0.tgz#6b08ebc2f6c92aa5acb07a49784cb6738796f7b4"
+ resolved "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz"
integrity sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA==
dependencies:
"@sigstore/bundle" "^1.1.0"
@@ -3969,7 +3759,7 @@
"@sigstore/sign@^2.3.0":
version "2.3.0"
- resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-2.3.0.tgz#c35e10a3d707e0c69a29bd9f93fa2bdc6275817c"
+ resolved "https://registry.npmjs.org/@sigstore/sign/-/sign-2.3.0.tgz"
integrity sha512-tsAyV6FC3R3pHmKS880IXcDJuiFJiKITO1jxR1qbplcsBkZLBmjrEw5GbC7ikD6f5RU1hr7WnmxB/2kKc1qUWQ==
dependencies:
"@sigstore/bundle" "^2.3.0"
@@ -3979,7 +3769,7 @@
"@sigstore/tuf@^1.0.3":
version "1.0.3"
- resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.3.tgz#2a65986772ede996485728f027b0514c0b70b160"
+ resolved "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz"
integrity sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg==
dependencies:
"@sigstore/protobuf-specs" "^0.2.0"
@@ -3987,7 +3777,7 @@
"@sigstore/tuf@^2.3.1":
version "2.3.2"
- resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-2.3.2.tgz#e9c5bffc2a5f3434f87195902d7f9cd7f48c70fa"
+ resolved "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.2.tgz"
integrity sha512-mwbY1VrEGU4CO55t+Kl6I7WZzIl+ysSzEYdA1Nv/FTrl2bkeaPXo5PnWZAVfcY2zSdhOpsUTJW67/M2zHXGn5w==
dependencies:
"@sigstore/protobuf-specs" "^0.3.0"
@@ -3995,7 +3785,7 @@
"@sigstore/verify@^1.2.0":
version "1.2.0"
- resolved "https://registry.yarnpkg.com/@sigstore/verify/-/verify-1.2.0.tgz#48549186305d8a5e471a3a304cf4cb3e0c99dde7"
+ resolved "https://registry.npmjs.org/@sigstore/verify/-/verify-1.2.0.tgz"
integrity sha512-hQF60nc9yab+Csi4AyoAmilGNfpXT+EXdBgFkP9OgPwIBPwyqVf7JAWPtmqrrrneTmAT6ojv7OlH1f6Ix5BG4Q==
dependencies:
"@sigstore/bundle" "^2.3.1"
@@ -4004,36 +3794,36 @@
"@sinclair/typebox@^0.27.8":
version "0.27.8"
- resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e"
+ resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz"
integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==
"@sindresorhus/is@^0.14.0":
version "0.14.0"
- resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea"
+ resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"
integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==
"@sindresorhus/is@^4.0.0":
version "4.6.0"
- resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f"
+ resolved "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz"
integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==
"@sinonjs/commons@^3.0.0":
version "3.0.0"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72"
+ resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz"
integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==
dependencies:
type-detect "4.0.8"
"@sinonjs/fake-timers@^10.0.2":
version "10.3.0"
- resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66"
+ resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz"
integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==
dependencies:
"@sinonjs/commons" "^3.0.0"
"@size-limit/esbuild@7.0.8":
version "7.0.8"
- resolved "https://registry.yarnpkg.com/@size-limit/esbuild/-/esbuild-7.0.8.tgz#1dff3b41ab2c2b5b07ec61a124ecb19aa68661d0"
+ resolved "https://registry.npmjs.org/@size-limit/esbuild/-/esbuild-7.0.8.tgz"
integrity sha512-AzCrxJJThDvHrBNoolebYVgXu46c6HuS3fOxoXr3V0YWNM0qz81z5F3j7RruzboZnls8ZgME4WrH6GM5rB9gtA==
dependencies:
esbuild "^0.14.18"
@@ -4041,14 +3831,14 @@
"@size-limit/file@7.0.8":
version "7.0.8"
- resolved "https://registry.yarnpkg.com/@size-limit/file/-/file-7.0.8.tgz#05c43fa01bf164c2fba24e13f1695bf7e861e277"
+ resolved "https://registry.npmjs.org/@size-limit/file/-/file-7.0.8.tgz"
integrity sha512-1KeFQuMXIXAH/iELqIX7x+YNYDFvzIvmxcp9PrdwEoSNL0dXdaDIo9WE/yz8xvOmUcKaLfqbWkL75DM0k91WHQ==
dependencies:
semver "7.3.5"
"@size-limit/preset-small-lib@^7.0.8":
version "7.0.8"
- resolved "https://registry.yarnpkg.com/@size-limit/preset-small-lib/-/preset-small-lib-7.0.8.tgz#e787fd1c5cddd51ff02a7a5bef34cbd13e17c2bf"
+ resolved "https://registry.npmjs.org/@size-limit/preset-small-lib/-/preset-small-lib-7.0.8.tgz"
integrity sha512-CT8nIYA/c2CSD+X4rAUgwqYccQMahJ6rBnaZxvi3YKFdkXIbuGNXHNjHsYaFksgwG9P4UjG/unyO5L73f3zQBw==
dependencies:
"@size-limit/esbuild" "7.0.8"
@@ -4056,7 +3846,7 @@
"@swc/helpers@0.4.14":
version "0.4.14"
- resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74"
+ resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz"
integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==
dependencies:
tslib "^2.4.0"
@@ -4070,21 +3860,21 @@
"@szmarczak/http-timer@^1.1.2":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421"
+ resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"
integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==
dependencies:
defer-to-connect "^1.0.1"
"@szmarczak/http-timer@^4.0.5":
version "4.0.6"
- resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz#b4a914bb62e7c272d4e5989fe4440f812ab1d807"
+ resolved "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz"
integrity sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==
dependencies:
defer-to-connect "^2.0.0"
"@testing-library/cypress@^10.0.1":
version "10.0.1"
- resolved "https://registry.yarnpkg.com/@testing-library/cypress/-/cypress-10.0.1.tgz#15abae0edb83237316ec6d07e152b71a50b38387"
+ resolved "https://registry.npmjs.org/@testing-library/cypress/-/cypress-10.0.1.tgz"
integrity sha512-e8uswjTZIBhaIXjzEcrQQ8nHRWHgZH7XBxKuIWxZ/T7FxfWhCR48nFhUX5nfPizjVOKSThEfOSv67jquc1ASkw==
dependencies:
"@babel/runtime" "^7.14.6"
@@ -4092,7 +3882,7 @@
"@testing-library/dom@^9.0.0":
version "9.3.3"
- resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-9.3.3.tgz#108c23a5b0ef51121c26ae92eb3179416b0434f5"
+ resolved "https://registry.npmjs.org/@testing-library/dom/-/dom-9.3.3.tgz"
integrity sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==
dependencies:
"@babel/code-frame" "^7.10.4"
@@ -4104,18 +3894,31 @@
lz-string "^1.5.0"
pretty-format "^27.0.2"
+"@testing-library/jest-dom@^6.5.0":
+ version "6.5.0"
+ resolved "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.5.0.tgz"
+ integrity sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==
+ dependencies:
+ "@adobe/css-tools" "^4.4.0"
+ aria-query "^5.0.0"
+ chalk "^3.0.0"
+ css.escape "^1.5.1"
+ dom-accessibility-api "^0.6.3"
+ lodash "^4.17.21"
+ redent "^3.0.0"
+
"@testing-library/react-hooks@^8.0.1":
version "8.0.1"
- resolved "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-8.0.1.tgz#0924bbd5b55e0c0c0502d1754657ada66947ca12"
+ resolved "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-8.0.1.tgz"
integrity sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==
dependencies:
"@babel/runtime" "^7.12.5"
react-error-boundary "^3.1.0"
"@testing-library/react@^14.3.0":
- version "14.3.0"
- resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-14.3.0.tgz#8183eb5a5f465b5b8cc495fcbd9bad0a16b8dd3b"
- integrity sha512-AYJGvNFMbCa5vt1UtDCa/dcaABrXq8gph6VN+cffIx0UeA0qiGqS+sT60+sb+Gjc8tGXdECWYQgaF0khf8b+Lg==
+ version "14.3.1"
+ resolved "https://registry.npmjs.org/@testing-library/react/-/react-14.3.1.tgz"
+ integrity sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==
dependencies:
"@babel/runtime" "^7.12.5"
"@testing-library/dom" "^9.0.0"
@@ -4123,7 +3926,7 @@
"@theguild/remark-mermaid@^0.0.3":
version "0.0.3"
- resolved "https://registry.yarnpkg.com/@theguild/remark-mermaid/-/remark-mermaid-0.0.3.tgz#247e8e84aacf483d2f99d8d12ccd34f3cf7ce543"
+ resolved "https://registry.npmjs.org/@theguild/remark-mermaid/-/remark-mermaid-0.0.3.tgz"
integrity sha512-fccVR6o4UPUztrBjdUhM4ahwx+X7YHhoxsUoXv2vI07vz4dq+I03Ot0SjuZzDA/H7engxcb8ZxzCUEkZgGr/2g==
dependencies:
mermaid "^10.2.2"
@@ -4131,47 +3934,47 @@
"@tootallnate/once@1":
version "1.1.2"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
+ resolved "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
"@tootallnate/once@2":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
+ resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz"
integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==
"@tsconfig/node10@^1.0.7":
version "1.0.9"
- resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2"
+ resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz"
integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==
"@tsconfig/node12@^1.0.7":
version "1.0.11"
- resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d"
+ resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz"
integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==
"@tsconfig/node14@^1.0.0":
version "1.0.3"
- resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1"
+ resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz"
integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==
"@tsconfig/node16@^1.0.2":
version "1.0.3"
- resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e"
+ resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz"
integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==
"@tufjs/canonical-json@1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31"
+ resolved "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz"
integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==
"@tufjs/canonical-json@2.0.0":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz#a52f61a3d7374833fca945b2549bc30a2dd40d0a"
+ resolved "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz"
integrity sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==
"@tufjs/models@1.0.4":
version "1.0.4"
- resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef"
+ resolved "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz"
integrity sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==
dependencies:
"@tufjs/canonical-json" "1.0.0"
@@ -4179,7 +3982,7 @@
"@tufjs/models@2.0.0":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-2.0.0.tgz#c7ab241cf11dd29deb213d6817dabb8c99ce0863"
+ resolved "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz"
integrity sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==
dependencies:
"@tufjs/canonical-json" "2.0.0"
@@ -4187,19 +3990,19 @@
"@types/acorn@^4.0.0":
version "4.0.6"
- resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22"
+ resolved "https://registry.npmjs.org/@types/acorn/-/acorn-4.0.6.tgz"
integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==
dependencies:
"@types/estree" "*"
"@types/aria-query@^5.0.1":
version "5.0.1"
- resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc"
+ resolved "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz"
integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==
"@types/babel__core@^7.1.14":
version "7.20.1"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b"
+ resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz"
integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==
dependencies:
"@babel/parser" "^7.20.7"
@@ -4210,14 +4013,14 @@
"@types/babel__generator@*":
version "7.6.4"
- resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7"
+ resolved "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz"
integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
version "7.4.1"
- resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
+ resolved "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"
integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==
dependencies:
"@babel/parser" "^7.1.0"
@@ -4225,14 +4028,14 @@
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
version "7.18.3"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d"
+ resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.3.tgz"
integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==
dependencies:
"@babel/types" "^7.3.0"
"@types/body-parser@*":
version "1.19.2"
- resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0"
+ resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz"
integrity sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==
dependencies:
"@types/connect" "*"
@@ -4240,7 +4043,7 @@
"@types/cacheable-request@^6.0.1":
version "6.0.3"
- resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183"
+ resolved "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz"
integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==
dependencies:
"@types/http-cache-semantics" "*"
@@ -4250,60 +4053,60 @@
"@types/chai@^4":
version "4.3.4"
- resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.4.tgz#e913e8175db8307d78b4e8fa690408ba6b65dee4"
+ resolved "https://registry.npmjs.org/@types/chai/-/chai-4.3.4.tgz"
integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==
"@types/connect@*":
version "3.4.35"
- resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1"
+ resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz"
integrity sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==
dependencies:
"@types/node" "*"
"@types/cookie@^0.6.0":
version "0.6.0"
- resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.6.0.tgz#eac397f28bf1d6ae0ae081363eca2f425bedf0d5"
+ resolved "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz"
integrity sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==
"@types/cypress@^1.1.3":
version "1.1.3"
- resolved "https://registry.yarnpkg.com/@types/cypress/-/cypress-1.1.3.tgz#0a700c040d53e9e12b5af98e41d4a88c39f39b6a"
+ resolved "https://registry.npmjs.org/@types/cypress/-/cypress-1.1.3.tgz"
integrity sha512-OXe0Gw8LeCflkG1oPgFpyrYWJmEKqYncBsD/J0r17r0ETx/TnIGDNLwXt/pFYSYuYTpzcq1q3g62M9DrfsBL4g==
dependencies:
cypress "*"
"@types/debug@^4.0.0":
version "4.1.7"
- resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82"
+ resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"
integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==
dependencies:
"@types/ms" "*"
"@types/degit@^2.8.6":
version "2.8.6"
- resolved "https://registry.yarnpkg.com/@types/degit/-/degit-2.8.6.tgz#e6abc732c7db931ffa5776b671838b96da7f087b"
+ resolved "https://registry.npmjs.org/@types/degit/-/degit-2.8.6.tgz"
integrity sha512-y0M7sqzsnHB6cvAeTCBPrCQNQiZe8U4qdzf8uBVmOWYap5MMTN/gB2iEqrIqFiYcsyvP74GnGD5tgsHttielFw==
"@types/estree-jsx@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.0.tgz#7bfc979ab9f692b492017df42520f7f765e98df1"
+ resolved "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.0.tgz"
integrity sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==
dependencies:
"@types/estree" "*"
"@types/estree@*", "@types/estree@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2"
+ resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz"
integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==
"@types/expect@^1.20.4":
version "1.20.4"
- resolved "https://registry.yarnpkg.com/@types/expect/-/expect-1.20.4.tgz#8288e51737bf7e3ab5d7c77bfa695883745264e5"
+ resolved "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz"
integrity sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg==
"@types/express-serve-static-core@^4.17.31":
version "4.17.33"
- resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz#de35d30a9d637dc1450ad18dd583d75d5733d543"
+ resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz"
integrity sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==
dependencies:
"@types/node" "*"
@@ -4312,7 +4115,7 @@
"@types/express@^4.17.16":
version "4.17.16"
- resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.16.tgz#986caf0b4b850611254505355daa24e1b8323de8"
+ resolved "https://registry.npmjs.org/@types/express/-/express-4.17.16.tgz"
integrity sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==
dependencies:
"@types/body-parser" "*"
@@ -4322,52 +4125,68 @@
"@types/fs-extra@^9.0.13":
version "9.0.13"
- resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45"
+ resolved "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz"
integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==
dependencies:
"@types/node" "*"
"@types/graceful-fs@^4.1.3":
version "4.1.6"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae"
+ resolved "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz"
integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==
dependencies:
"@types/node" "*"
"@types/hast@^2.0.0":
version "2.3.4"
- resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc"
+ resolved "https://registry.npmjs.org/@types/hast/-/hast-2.3.4.tgz"
integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
dependencies:
"@types/unist" "*"
"@types/http-cache-semantics@*":
version "4.0.1"
- resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812"
+ resolved "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz"
integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
version "2.0.4"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
+ resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz"
integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==
"@types/istanbul-lib-report@*":
version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686"
+ resolved "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^3.0.0":
version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff"
+ resolved "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==
dependencies:
"@types/istanbul-lib-report" "*"
+"@types/jest-axe@^3.5.9":
+ version "3.5.9"
+ resolved "https://registry.yarnpkg.com/@types/jest-axe/-/jest-axe-3.5.9.tgz#97b1317371a48707ca93825d4c990b0d07690d99"
+ integrity sha512-z98CzR0yVDalCEuhGXXO4/zN4HHuSebAukXDjTLJyjEAgoUf1H1i+sr7SUB/mz8CRS/03/XChsx0dcLjHkndoQ==
+ dependencies:
+ "@types/jest" "*"
+ axe-core "^3.5.5"
+
+"@types/jest@*":
+ version "29.5.12"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544"
+ integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==
+ dependencies:
+ expect "^29.0.0"
+ pretty-format "^29.0.0"
+
"@types/jest@29.1.0":
version "29.1.0"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.1.0.tgz#9cfbe1b0d4408f9732aaf37447460f10f2c71ce6"
+ resolved "https://registry.npmjs.org/@types/jest/-/jest-29.1.0.tgz"
integrity sha512-CqlKkMNaUhFSRvqVKniNhbcy9fc/Rj2cmFD5t8Jtu4HlHzSit27h7XKfP5kkxBeROQ8WAvQQmy93FIz9or8jKg==
dependencies:
expect "^29.0.0"
@@ -4375,12 +4194,12 @@
"@types/js-yaml@^4.0.0":
version "4.0.5"
- resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.5.tgz#738dd390a6ecc5442f35e7f03fa1431353f7e138"
+ resolved "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.5.tgz"
integrity sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==
"@types/jsdom@^20.0.0":
version "20.0.1"
- resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-20.0.1.tgz#07c14bc19bd2f918c1929541cdaacae894744808"
+ resolved "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz"
integrity sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==
dependencies:
"@types/node" "*"
@@ -4389,164 +4208,152 @@
"@types/json-schema@^7.0.5":
version "7.0.11"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
+ resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz"
integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
"@types/json-stable-stringify@^1.0.32":
version "1.0.36"
- resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz#fe6c6001a69ff8160a772da08779448a333c7ddd"
+ resolved "https://registry.npmjs.org/@types/json-stable-stringify/-/json-stable-stringify-1.0.36.tgz"
integrity sha512-b7bq23s4fgBB76n34m2b3RBf6M369B0Z9uRR8aHTMd8kZISRkmDEpPD8hhpYvDFzr3bJCPES96cm3Q6qRNDbQw==
"@types/json5@^0.0.29":
version "0.0.29"
- resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
+ resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
"@types/katex@^0.11.0":
version "0.11.1"
- resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.11.1.tgz#34de04477dcf79e2ef6c8d23b41a3d81f9ebeaf5"
+ resolved "https://registry.npmjs.org/@types/katex/-/katex-0.11.1.tgz"
integrity sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==
"@types/katex@^0.14.0":
version "0.14.0"
- resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.14.0.tgz#b84c0afc3218069a5ad64fe2a95321881021b5fe"
+ resolved "https://registry.npmjs.org/@types/katex/-/katex-0.14.0.tgz"
integrity sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA==
"@types/keyv@^3.1.4":
version "3.1.4"
- resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6"
+ resolved "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz"
integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==
dependencies:
"@types/node" "*"
"@types/long@^4.0.1":
version "4.0.2"
- resolved "https://registry.yarnpkg.com/@types/long/-/long-4.0.2.tgz#b74129719fc8d11c01868010082d483b7545591a"
+ resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz"
integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==
"@types/mdast@^3.0.0":
version "3.0.10"
- resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af"
+ resolved "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz"
integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==
dependencies:
"@types/unist" "*"
"@types/mdx@^2.0.0":
version "2.0.3"
- resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.3.tgz#43fd32414f17fcbeced3578109a6edd877a2d96e"
+ resolved "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.3.tgz"
integrity sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==
"@types/mime@*":
version "3.0.1"
- resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
+ resolved "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz"
integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
"@types/minimatch@^3.0.3":
version "3.0.5"
- resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
+ resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"
integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
"@types/minimist@^1.2.0":
version "1.2.5"
- resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.5.tgz#ec10755e871497bcd83efe927e43ec46e8c0747e"
+ resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz"
integrity sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==
"@types/ms@*":
version "0.7.31"
- resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
+ resolved "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"
integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==
"@types/mute-stream@^0.0.4":
version "0.0.4"
- resolved "https://registry.yarnpkg.com/@types/mute-stream/-/mute-stream-0.0.4.tgz#77208e56a08767af6c5e1237be8888e2f255c478"
+ resolved "https://registry.npmjs.org/@types/mute-stream/-/mute-stream-0.0.4.tgz"
integrity sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==
dependencies:
"@types/node" "*"
"@types/node@*", "@types/node@^18.11.16":
version "18.11.18"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f"
+ resolved "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz"
integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==
"@types/node@>=12.12.47", "@types/node@>=13.7.0":
version "20.2.3"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.2.3.tgz#b31eb300610c3835ac008d690de6f87e28f9b878"
+ resolved "https://registry.npmjs.org/@types/node/-/node-20.2.3.tgz"
integrity sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw==
-"@types/node@^14.14.31":
- version "14.18.36"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.36.tgz#c414052cb9d43fab67d679d5f3c641be911f5835"
- integrity sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ==
-
"@types/node@^15.6.1":
version "15.14.9"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-15.14.9.tgz#bc43c990c3c9be7281868bbc7b8fdd6e2b57adfa"
+ resolved "https://registry.npmjs.org/@types/node/-/node-15.14.9.tgz"
integrity sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==
"@types/node@^16.11.63":
version "16.18.11"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.11.tgz#cbb15c12ca7c16c85a72b6bdc4d4b01151bb3cae"
+ resolved "https://registry.npmjs.org/@types/node/-/node-16.18.11.tgz"
integrity sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==
"@types/node@^16.18.39":
version "16.18.57"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.57.tgz#1ba31c0e5c403aab90a3b7826576e6782ded779b"
+ resolved "https://registry.npmjs.org/@types/node/-/node-16.18.57.tgz"
integrity sha512-piPoDozdPaX1hNWFJQzzgWqE40gh986VvVx/QO9RU4qYRE55ld7iepDVgZ3ccGUw0R4wge0Oy1dd+3xOQNkkUQ==
"@types/node@^20.14.9":
version "20.14.9"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.9.tgz#12e8e765ab27f8c421a1820c99f5f313a933b420"
+ resolved "https://registry.npmjs.org/@types/node/-/node-20.14.9.tgz"
integrity sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==
dependencies:
undici-types "~5.26.4"
"@types/normalize-package-data@^2.4.0":
version "2.4.4"
- resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz#56e2cc26c397c038fab0e3a917a12d5c5909e901"
+ resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz"
integrity sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==
"@types/parse-json@^4.0.0":
version "4.0.0"
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
+ resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
"@types/parse5@^6.0.0":
version "6.0.3"
- resolved "https://registry.yarnpkg.com/@types/parse5/-/parse5-6.0.3.tgz#705bb349e789efa06f43f128cef51240753424cb"
+ resolved "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz"
integrity sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==
"@types/prop-types@*":
version "15.7.5"
- resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
+ resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"
integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
"@types/qs@*":
version "6.9.7"
- resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb"
+ resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz"
integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==
"@types/range-parser@*":
version "1.2.4"
- resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
+ resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz"
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
-"@types/react-dom@^18.0.0":
- version "18.2.24"
- resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.24.tgz#8dda8f449ae436a7a6e91efed8035d4ab03ff759"
- integrity sha512-cN6upcKd8zkGy4HU9F1+/s98Hrp6D4MOcippK4PoE8OZRngohHZpbJn1GsaDLz87MqvHNoT13nHvNqM9ocRHZg==
- dependencies:
- "@types/react" "*"
-
-"@types/react-dom@^18.2.17":
+"@types/react-dom@^18.0.0", "@types/react-dom@^18.2.17":
version "18.2.17"
- resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.17.tgz#375c55fab4ae671bd98448dcfa153268d01d6f64"
+ resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.17.tgz"
integrity sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^18.2.42":
version "18.2.42"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.42.tgz#6f6b11a904f6d96dda3c2920328a97011a00aba7"
+ resolved "https://registry.npmjs.org/@types/react/-/react-18.2.42.tgz"
integrity sha512-c1zEr96MjakLYus/wPnuWDo1/zErfdU9rNsIGmE+NV71nx88FG9Ttgo5dqorXTu/LImX2f63WBP986gJkMPNbA==
dependencies:
"@types/prop-types" "*"
@@ -4555,7 +4362,7 @@
"@types/react@>=16":
version "18.0.26"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.26.tgz#8ad59fc01fef8eaf5c74f4ea392621749f0b7917"
+ resolved "https://registry.npmjs.org/@types/react/-/react-18.0.26.tgz"
integrity sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==
dependencies:
"@types/prop-types" "*"
@@ -4564,26 +4371,26 @@
"@types/responselike@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29"
+ resolved "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz"
integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
dependencies:
"@types/node" "*"
"@types/sanitize-html@^2.9.1":
version "2.9.1"
- resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-2.9.1.tgz#6e4b232916cfb3ec0c4733c9899c99e1697ef953"
+ resolved "https://registry.npmjs.org/@types/sanitize-html/-/sanitize-html-2.9.1.tgz"
integrity sha512-XSLD0a9P8c+rKUM09KIi5Nd8mOHLHNgXb1G04rpXWa/GqQVpM+knrS9KR9ptj1CeC3gXWGZn75ApH3H6qNbhYA==
dependencies:
htmlparser2 "^8.0.0"
"@types/scheduler@*":
version "0.16.2"
- resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
+ resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz"
integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
"@types/serve-static@*":
version "1.15.0"
- resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155"
+ resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz"
integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==
dependencies:
"@types/mime" "*"
@@ -4591,37 +4398,37 @@
"@types/sinonjs__fake-timers@8.1.1":
version "8.1.1"
- resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz#b49c2c70150141a15e0fa7e79cf1f92a72934ce3"
+ resolved "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz"
integrity sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==
"@types/sizzle@^2.3.2":
version "2.3.3"
- resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef"
+ resolved "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz"
integrity sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==
"@types/stack-utils@^2.0.0":
version "2.0.1"
- resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
+ resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz"
integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
"@types/tabbable@^3.1.1":
version "3.1.2"
- resolved "https://registry.yarnpkg.com/@types/tabbable/-/tabbable-3.1.2.tgz#5046f043fef50961d7727920b0076b37737e31ad"
+ resolved "https://registry.npmjs.org/@types/tabbable/-/tabbable-3.1.2.tgz"
integrity sha512-Yp+M5IjNZxYjsflBbSalyjUAIqiJyEISg++gLAstGrZlp9lzVi5KAsZvJqThT2qeoqGYnFqdZXorPEYtaVBAkg==
"@types/tough-cookie@*":
version "4.0.5"
- resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.5.tgz#cb6e2a691b70cb177c6e3ae9c1d2e8b2ea8cd304"
+ resolved "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz"
integrity sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==
"@types/unist@*", "@types/unist@^2.0.0":
version "2.0.6"
- resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
+ resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz"
integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
"@types/vinyl@^2.0.4":
version "2.0.7"
- resolved "https://registry.yarnpkg.com/@types/vinyl/-/vinyl-2.0.7.tgz#9739a9a2afaf9af32761c54a0e82c735279f726c"
+ resolved "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.7.tgz"
integrity sha512-4UqPv+2567NhMQuMLdKAyK4yzrfCqwaTt6bLhHEs8PFcxbHILsrxaY63n4wgE/BRLDWDQeI+WcTmkXKExh9hQg==
dependencies:
"@types/expect" "^1.20.4"
@@ -4629,38 +4436,38 @@
"@types/wrap-ansi@^3.0.0":
version "3.0.0"
- resolved "https://registry.yarnpkg.com/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz#18b97a972f94f60a679fd5c796d96421b9abb9fd"
+ resolved "https://registry.npmjs.org/@types/wrap-ansi/-/wrap-ansi-3.0.0.tgz"
integrity sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==
"@types/ws@^8.0.0":
version "8.5.4"
- resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.4.tgz#bb10e36116d6e570dd943735f86c933c1587b8a5"
+ resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz"
integrity sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==
dependencies:
"@types/node" "*"
"@types/yargs-parser@*":
version "21.0.0"
- resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b"
+ resolved "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz"
integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
"@types/yargs@^17.0.8":
version "17.0.24"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.24.tgz#b3ef8d50ad4aa6aecf6ddc97c580a00f5aa11902"
+ resolved "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz"
integrity sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==
dependencies:
"@types/yargs-parser" "*"
"@types/yauzl@^2.9.1":
version "2.10.0"
- resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599"
+ resolved "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.0.tgz"
integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==
dependencies:
"@types/node" "*"
"@typescript-eslint/parser@^5.21.0":
version "5.48.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.48.0.tgz#02803355b23884a83e543755349809a50b7ed9ba"
+ resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.48.0.tgz"
integrity sha512-1mxNA8qfgxX8kBvRDIHEzrRGrKHQfQlbW6iHyfHYS0Q4X1af+S6mkLNtgCOsGVl8+/LUPrqdHMssAemkrQ01qg==
dependencies:
"@typescript-eslint/scope-manager" "5.48.0"
@@ -4670,7 +4477,7 @@
"@typescript-eslint/scope-manager@5.48.0":
version "5.48.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.48.0.tgz#607731cb0957fbc52fd754fd79507d1b6659cecf"
+ resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.0.tgz"
integrity sha512-0AA4LviDtVtZqlyUQnZMVHydDATpD9SAX/RC5qh6cBd3xmyWvmXYF+WT1oOmxkeMnWDlUVTwdODeucUnjz3gow==
dependencies:
"@typescript-eslint/types" "5.48.0"
@@ -4678,12 +4485,12 @@
"@typescript-eslint/types@5.48.0":
version "5.48.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.48.0.tgz#d725da8dfcff320aab2ac6f65c97b0df30058449"
+ resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.0.tgz"
integrity sha512-UTe67B0Ypius0fnEE518NB2N8gGutIlTojeTg4nt0GQvikReVkurqxd2LvYa9q9M5MQ6rtpNyWTBxdscw40Xhw==
"@typescript-eslint/typescript-estree@5.48.0":
version "5.48.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.0.tgz#a7f04bccb001003405bb5452d43953a382c2fac2"
+ resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.0.tgz"
integrity sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw==
dependencies:
"@typescript-eslint/types" "5.48.0"
@@ -4696,7 +4503,7 @@
"@typescript-eslint/visitor-keys@5.48.0":
version "5.48.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.0.tgz#4446d5e7f6cadde7140390c0e284c8702d944904"
+ resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.0.tgz"
integrity sha512-5motVPz5EgxQ0bHjut3chzBkJ3Z3sheYVcSwS5BpHZpLqSptSmELNtGixmgj65+rIfhvtQTz5i9OP2vtzdDH7Q==
dependencies:
"@typescript-eslint/types" "5.48.0"
@@ -4704,7 +4511,7 @@
"@vtex/client-cms@^0.2.12":
version "0.2.12"
- resolved "https://registry.yarnpkg.com/@vtex/client-cms/-/client-cms-0.2.12.tgz#c75777ff3cfa37e1d9904074b9b0fa63f93f081e"
+ resolved "https://registry.npmjs.org/@vtex/client-cms/-/client-cms-0.2.12.tgz"
integrity sha512-Eg5AWsWZzz8ddhSnpI4dQrXzsf+DUbfxERbiKS5mssb/nlBEXoVAeabWzlJrkMjdHQiQn7BSllNLeocoRkXJBA==
dependencies:
fetch-retry "^4.1.1"
@@ -4712,22 +4519,22 @@
"@vtex/prettier-config@1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@vtex/prettier-config/-/prettier-config-1.0.0.tgz#a7a7091ecff1da340d398000f4855dc9910aa9c9"
+ resolved "https://registry.npmjs.org/@vtex/prettier-config/-/prettier-config-1.0.0.tgz"
integrity sha512-4Uv67bK2eORhzWg/11J5/+fxPUWY6b0sYdhcqMzIgo0zluXlYqbZU6iueKZ48SxG4ODw8ZaqMRfpNsLd3Gw5+Q==
"@whatwg-node/events@^0.0.3":
version "0.0.3"
- resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.0.3.tgz#13a65dd4f5893f55280f766e29ae48074927acad"
+ resolved "https://registry.npmjs.org/@whatwg-node/events/-/events-0.0.3.tgz"
integrity sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==
"@whatwg-node/events@^0.1.0":
version "0.1.1"
- resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.1.1.tgz#0ca718508249419587e130da26d40e29d99b5356"
+ resolved "https://registry.npmjs.org/@whatwg-node/events/-/events-0.1.1.tgz"
integrity sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==
"@whatwg-node/fetch@^0.8.0", "@whatwg-node/fetch@^0.8.1", "@whatwg-node/fetch@^0.8.2":
version "0.8.8"
- resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.8.8.tgz#48c6ad0c6b7951a73e812f09dd22d75e9fa18cae"
+ resolved "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.8.8.tgz"
integrity sha512-CdcjGC2vdKhc13KKxgsc6/616BQ7ooDIgPeTuAiE8qfCnS0mGzcfCOoZXypQSz73nxI+GWc7ZReIAVhxoE1KCg==
dependencies:
"@peculiar/webcrypto" "^1.4.0"
@@ -4738,7 +4545,7 @@
"@whatwg-node/fetch@^0.9.0":
version "0.9.17"
- resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.9.17.tgz#10e4ea2392926c8d41ff57e3156857e885317d3f"
+ resolved "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.9.17.tgz"
integrity sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==
dependencies:
"@whatwg-node/node-fetch" "^0.5.7"
@@ -4746,7 +4553,7 @@
"@whatwg-node/node-fetch@^0.3.6":
version "0.3.6"
- resolved "https://registry.yarnpkg.com/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz#e28816955f359916e2d830b68a64493124faa6d0"
+ resolved "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.3.6.tgz"
integrity sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==
dependencies:
"@whatwg-node/events" "^0.0.3"
@@ -4757,7 +4564,7 @@
"@whatwg-node/node-fetch@^0.5.7":
version "0.5.11"
- resolved "https://registry.yarnpkg.com/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz#4bed979cebc18438e936bb753418b5b0450eb5ab"
+ resolved "https://registry.npmjs.org/@whatwg-node/node-fetch/-/node-fetch-0.5.11.tgz"
integrity sha512-LS8tSomZa3YHnntpWt3PP43iFEEl6YeIsvDakczHBKlay5LdkXFr8w7v8H6akpG5nRrzydyB0k1iE2eoL6aKIQ==
dependencies:
"@kamilkisiela/fast-url-parser" "^1.1.4"
@@ -4768,12 +4575,12 @@
"@yarnpkg/lockfile@^1.1.0":
version "1.1.0"
- resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31"
+ resolved "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz"
integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==
"@yarnpkg/parsers@3.0.0-rc.46":
version "3.0.0-rc.46"
- resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz#03f8363111efc0ea670e53b0282cd3ef62de4e01"
+ resolved "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz"
integrity sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==
dependencies:
js-yaml "^3.10.0"
@@ -4781,14 +4588,14 @@
"@zkochan/js-yaml@0.0.6":
version "0.0.6"
- resolved "https://registry.yarnpkg.com/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz#975f0b306e705e28b8068a07737fa46d3fc04826"
+ resolved "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz"
integrity sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==
dependencies:
argparse "^2.0.1"
JSONStream@^1.3.5:
version "1.3.5"
- resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0"
+ resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz"
integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
dependencies:
jsonparse "^1.2.0"
@@ -4796,22 +4603,22 @@ JSONStream@^1.3.5:
abab@^2.0.6:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
+ resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz"
integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
abbrev@1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
+ resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
abbrev@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-2.0.0.tgz#cf59829b8b4f03f89dda2771cb7f3653828c89bf"
+ resolved "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz"
integrity sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==
accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.8:
version "1.3.8"
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
+ resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"
integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
dependencies:
mime-types "~2.1.34"
@@ -4819,7 +4626,7 @@ accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.8:
acorn-globals@^7.0.0:
version "7.0.1"
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-7.0.1.tgz#0dbf05c44fa7c94332914c02066d5beff62c40c3"
+ resolved "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz"
integrity sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==
dependencies:
acorn "^8.1.0"
@@ -4827,63 +4634,63 @@ acorn-globals@^7.0.0:
acorn-jsx@^5.0.0, acorn-jsx@^5.3.1:
version "5.3.2"
- resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
+ resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
acorn-walk@^8.0.2:
version "8.3.1"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.1.tgz#2f10f5b69329d90ae18c58bf1fa8fccd8b959a43"
+ resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz"
integrity sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==
acorn-walk@^8.1.1:
version "8.2.0"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
+ resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz"
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
acorn@^7.4.0:
version "7.4.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
+ resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
acorn@^8.0.0, acorn@^8.4.1:
version "8.8.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
+ resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz"
integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
acorn@^8.1.0, acorn@^8.8.1:
version "8.11.2"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b"
+ resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz"
integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==
add-stream@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa"
+ resolved "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz"
integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==
agent-base@6, agent-base@^6.0.2:
version "6.0.2"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
+ resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
dependencies:
debug "4"
agent-base@^7.0.2, agent-base@^7.1.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434"
+ resolved "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz"
integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==
dependencies:
debug "^4.3.4"
agent-base@^7.1.1:
version "7.1.1"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317"
+ resolved "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz"
integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==
dependencies:
debug "^4.3.4"
agentkeepalive@^4.1.3:
version "4.2.1"
- resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717"
+ resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz"
integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==
dependencies:
debug "^4.1.0"
@@ -4892,14 +4699,14 @@ agentkeepalive@^4.1.3:
agentkeepalive@^4.2.1:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923"
+ resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz"
integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==
dependencies:
humanize-ms "^1.2.1"
aggregate-error@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
+ resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
dependencies:
clean-stack "^2.0.0"
@@ -4907,12 +4714,12 @@ aggregate-error@^3.0.0:
ajv-keywords@^3.5.2:
version "3.5.2"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.4:
version "6.12.6"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+ resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
dependencies:
fast-deep-equal "^3.1.1"
@@ -4922,7 +4729,7 @@ ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.4:
ajv@^8.0.1:
version "8.12.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
+ resolved "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz"
integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
dependencies:
fast-deep-equal "^3.1.1"
@@ -4932,107 +4739,107 @@ ajv@^8.0.1:
ansi-align@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59"
+ resolved "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz"
integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==
dependencies:
string-width "^4.1.0"
ansi-colors@^4.1.1:
version "4.1.3"
- resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b"
+ resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz"
integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==
ansi-escapes@^3.0.0, ansi-escapes@^3.1.0, ansi-escapes@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
+ resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
ansi-escapes@^4.2.1, ansi-escapes@^4.3.0, ansi-escapes@^4.3.1, ansi-escapes@^4.3.2:
version "4.3.2"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
+ resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"
integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
dependencies:
type-fest "^0.21.3"
ansi-escapes@^6.2.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947"
+ resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz"
integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==
dependencies:
type-fest "^3.0.0"
ansi-regex@^2.0.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==
ansi-regex@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz"
integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==
ansi-regex@^4.1.0:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz"
integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==
ansi-regex@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
ansi-regex@^6.0.1:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
+ resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz"
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
ansi-sequence-parser@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz#4d790f31236ac20366b23b3916b789e1bde39aed"
+ resolved "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz"
integrity sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==
ansi-styles@^2.2.1:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==
ansi-styles@^3.0.0, ansi-styles@^3.1.0, ansi-styles@^3.2.1:
version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
dependencies:
color-convert "^1.9.0"
ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.1, ansi-styles@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
dependencies:
color-convert "^2.0.1"
ansi-styles@^5.0.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"
integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1:
version "6.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz"
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
ansicolors@~0.3.2:
version "0.3.2"
- resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"
+ resolved "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"
integrity sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==
any-observable@^0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b"
+ resolved "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz"
integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
anymatch@^3.0.3, anymatch@~3.1.2:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz"
integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
@@ -5040,29 +4847,29 @@ anymatch@^3.0.3, anymatch@~3.1.2:
append-transform@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-2.0.0.tgz#99d9d29c7b38391e6f428d28ce136551f0b77e12"
+ resolved "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz"
integrity sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==
dependencies:
default-require-extensions "^3.0.0"
"aproba@^1.0.3 || ^2.0.0":
version "2.0.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
+ resolved "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz"
integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
arch@^2.1.0, arch@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11"
+ resolved "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz"
integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==
archy@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
+ resolved "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
integrity sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==
are-we-there-yet@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c"
+ resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz"
integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==
dependencies:
delegates "^1.0.0"
@@ -5070,7 +4877,7 @@ are-we-there-yet@^2.0.0:
are-we-there-yet@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd"
+ resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz"
integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==
dependencies:
delegates "^1.0.0"
@@ -5078,36 +4885,36 @@ are-we-there-yet@^3.0.0:
arg@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/arg/-/arg-1.0.0.tgz#444d885a4e25b121640b55155ef7cd03975d6050"
+ resolved "https://registry.npmjs.org/arg/-/arg-1.0.0.tgz"
integrity sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==
arg@^4.1.0:
version "4.1.3"
- resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
+ resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz"
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
argparse@^1.0.7:
version "1.0.10"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+ resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
dependencies:
sprintf-js "~1.0.2"
argparse@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
+ resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-aria-query@5.1.3:
+aria-query@5.1.3, aria-query@^5.0.0:
version "5.1.3"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e"
+ resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz"
integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==
dependencies:
deep-equal "^2.0.5"
aria-query@^4.2.2:
version "4.2.2"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
+ resolved "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz"
integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
dependencies:
"@babel/runtime" "^7.10.2"
@@ -5115,22 +4922,22 @@ aria-query@^4.2.2:
array-differ@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b"
+ resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz"
integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==
array-flatten@1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
+ resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"
integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
array-ify@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
+ resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==
array-includes@^3.1.4, array-includes@^3.1.5, array-includes@^3.1.6:
version "3.1.6"
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
+ resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz"
integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
dependencies:
call-bind "^1.0.2"
@@ -5141,12 +4948,12 @@ array-includes@^3.1.4, array-includes@^3.1.5, array-includes@^3.1.6:
array-union@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+ resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
array.prototype.flat@^1.2.5:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2"
+ resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz"
integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==
dependencies:
call-bind "^1.0.2"
@@ -5156,7 +4963,7 @@ array.prototype.flat@^1.2.5:
array.prototype.flatmap@^1.3.0, array.prototype.flatmap@^1.3.1:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183"
+ resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz"
integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==
dependencies:
call-bind "^1.0.2"
@@ -5166,7 +4973,7 @@ array.prototype.flatmap@^1.3.0, array.prototype.flatmap@^1.3.1:
array.prototype.tosorted@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532"
+ resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz"
integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==
dependencies:
call-bind "^1.0.2"
@@ -5177,29 +4984,29 @@ array.prototype.tosorted@^1.1.1:
arrify@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
+ resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==
arrify@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa"
+ resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz"
integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==
asap@^2.0.0, asap@~2.0.3:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
+ resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==
asn1@~0.2.3:
version "0.2.6"
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d"
+ resolved "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz"
integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==
dependencies:
safer-buffer "~2.1.0"
asn1js@^3.0.1, asn1js@^3.0.5:
version "3.0.5"
- resolved "https://registry.yarnpkg.com/asn1js/-/asn1js-3.0.5.tgz#5ea36820443dbefb51cc7f88a2ebb5b462114f38"
+ resolved "https://registry.npmjs.org/asn1js/-/asn1js-3.0.5.tgz"
integrity sha512-FVnvrKJwpt9LP2lAMl8qZswRNm3T4q9CON+bxldk2iwk3FFpuwhx2FfinyitizWHsVYyaY+y5JzDR0rCMV5yTQ==
dependencies:
pvtsutils "^1.3.2"
@@ -5208,57 +5015,52 @@ asn1js@^3.0.1, asn1js@^3.0.5:
assert-plus@1.0.0, assert-plus@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
+ resolved "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==
assertion-error@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b"
+ resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==
ast-types-flow@^0.0.7:
version "0.0.7"
- resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
+ resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz"
integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==
astral-regex@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
+ resolved "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
astring@^1.8.0:
version "1.8.4"
- resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.4.tgz#6d4c5d8de7be2ead9e4a3cc0e2efb8d759378904"
+ resolved "https://registry.npmjs.org/astring/-/astring-1.8.4.tgz"
integrity sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==
-async@^3.2.0:
+async@^3.2.0, async@^3.2.3:
version "3.2.4"
- resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
+ resolved "https://registry.npmjs.org/async/-/async-3.2.4.tgz"
integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==
-async@^3.2.3:
- version "3.2.5"
- resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66"
- integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==
-
asynckit@^0.4.0:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+ resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
at-least-node@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
+ resolved "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz"
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
auto-bind@~4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-4.0.0.tgz#e3589fc6c2da8f7ca43ba9f84fa52a744fc997fb"
+ resolved "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz"
integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==
autoprefixer@^10.4.0:
version "10.4.13"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8"
+ resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz"
integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==
dependencies:
browserslist "^4.21.4"
@@ -5270,12 +5072,12 @@ autoprefixer@^10.4.0:
available-typed-arrays@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
+ resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"
integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
aws-sdk@^2.1231.0:
version "2.1288.0"
- resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1288.0.tgz#7c5d90f0c3c942406f204aa72eb75fe715b52ebf"
+ resolved "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1288.0.tgz"
integrity sha512-5ALCke6yp+QP5VEnotLw7tF3ipII2+j7+ZjJg7s5OFgqJ9p0XNOBb6V+0teOTpbQarkfefwOLHj5oir3i6OMsA==
dependencies:
buffer "4.9.2"
@@ -5291,32 +5093,32 @@ aws-sdk@^2.1231.0:
aws-sign2@~0.7.0:
version "0.7.0"
- resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
+ resolved "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==
aws4@^1.8.0:
version "1.11.0"
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
+ resolved "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"
integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
axe-core@4.3.5:
version "4.3.5"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.5.tgz#78d6911ba317a8262bfee292aeafcc1e04b49cc5"
+ resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.3.5.tgz"
integrity sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==
-axe-core@^4.4.3:
- version "4.6.2"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.6.2.tgz#6e566ab2a3d29e415f5115bc0fd2597a5eb3e5e3"
- integrity sha512-b1WlTV8+XKLj9gZy2DZXgQiyDp9xkkoe2a6U6UbYccScq2wgH/YwCeI2/Jq2mgo0HzQxqJOjWZBLeA/mqsk5Mg==
+axe-core@4.9.1, axe-core@^4.4.3, axe-core@^4.8.1:
+ version "4.9.1"
+ resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.9.1.tgz"
+ integrity sha512-QbUdXJVTpvUTHU7871ppZkdOLBeGUKBQWHkHrvN2V9IQWGMt61zf3B45BtzjxEJzYuj0JBjBZP/hmYS/R9pmAw==
-axe-core@^4.8.1:
- version "4.8.2"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.8.2.tgz#2f6f3cde40935825cf4465e3c1c9e77b240ff6ae"
- integrity sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==
+axe-core@^3.5.5:
+ version "3.5.6"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-3.5.6.tgz#e762a90d7f6dbd244ceacb4e72760ff8aad521b5"
+ integrity sha512-LEUDjgmdJoA3LqklSTwKYqkjcZ4HKc4ddIYGSAiSkr46NTjzg2L9RNB+lekO9P7Dlpa87+hBtzc2Fzn/+GUWMQ==
axios@^1.6.0:
version "1.7.4"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.7.4.tgz#4c8ded1b43683c8dd362973c393f3ede24052aa2"
+ resolved "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz"
integrity sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==
dependencies:
follow-redirects "^1.15.6"
@@ -5325,17 +5127,17 @@ axios@^1.6.0:
axobject-query@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
+ resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz"
integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
b4a@^1.6.4:
version "1.6.4"
- resolved "https://registry.yarnpkg.com/b4a/-/b4a-1.6.4.tgz#ef1c1422cae5ce6535ec191baeed7567443f36c9"
+ resolved "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz"
integrity sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==
babel-jest@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5"
+ resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz"
integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==
dependencies:
"@jest/transform" "^29.7.0"
@@ -5348,7 +5150,7 @@ babel-jest@^29.7.0:
babel-loader@^8.2.5:
version "8.3.0"
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8"
+ resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz"
integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==
dependencies:
find-cache-dir "^3.3.1"
@@ -5358,7 +5160,7 @@ babel-loader@^8.2.5:
babel-plugin-istanbul@^6.1.1:
version "6.1.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73"
+ resolved "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"
integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
@@ -5369,7 +5171,7 @@ babel-plugin-istanbul@^6.1.1:
babel-plugin-jest-hoist@^29.6.3:
version "29.6.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626"
+ resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz"
integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==
dependencies:
"@babel/template" "^7.3.3"
@@ -5379,12 +5181,12 @@ babel-plugin-jest-hoist@^29.6.3:
babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
version "7.0.0-beta.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz#aa213c1435e2bffeb6fca842287ef534ad05d5cf"
+ resolved "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0.tgz"
integrity sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==
babel-preset-current-node-syntax@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b"
+ resolved "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"
integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==
dependencies:
"@babel/plugin-syntax-async-generators" "^7.8.4"
@@ -5402,7 +5204,7 @@ babel-preset-current-node-syntax@^1.0.0:
babel-preset-fbjs@^3.4.0:
version "3.4.0"
- resolved "https://registry.yarnpkg.com/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz#38a14e5a7a3b285a3f3a86552d650dca5cf6111c"
+ resolved "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.4.0.tgz"
integrity sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==
dependencies:
"@babel/plugin-proposal-class-properties" "^7.0.0"
@@ -5435,7 +5237,7 @@ babel-preset-fbjs@^3.4.0:
babel-preset-jest@^29.6.3:
version "29.6.3"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c"
+ resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz"
integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==
dependencies:
babel-plugin-jest-hoist "^29.6.3"
@@ -5443,49 +5245,49 @@ babel-preset-jest@^29.6.3:
bail@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d"
+ resolved "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz"
integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==
balanced-match@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+ resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
balanced-match@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9"
+ resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz"
integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==
base64-arraybuffer-es6@^0.7.0:
version "0.7.0"
- resolved "https://registry.yarnpkg.com/base64-arraybuffer-es6/-/base64-arraybuffer-es6-0.7.0.tgz#dbe1e6c87b1bf1ca2875904461a7de40f21abc86"
+ resolved "https://registry.npmjs.org/base64-arraybuffer-es6/-/base64-arraybuffer-es6-0.7.0.tgz"
integrity sha512-ESyU/U1CFZDJUdr+neHRhNozeCv72Y7Vm0m1DCbjX3KBjT6eYocvAJlSk6+8+HkVwXlT1FNxhGW6q3UKAlCvvw==
base64-js@^1.0.2, base64-js@^1.3.1:
version "1.5.1"
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
+ resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
bcrypt-pbkdf@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
+ resolved "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"
integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==
dependencies:
tweetnacl "^0.14.3"
before-after-hook@^2.2.0:
version "2.2.3"
- resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c"
+ resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz"
integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==
big.js@^5.2.2:
version "5.2.2"
- resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
+ resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"
integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
bin-links@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-3.0.3.tgz#3842711ef3db2cd9f16a5f404a996a12db355a6e"
+ resolved "https://registry.npmjs.org/bin-links/-/bin-links-3.0.3.tgz"
integrity sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==
dependencies:
cmd-shim "^5.0.0"
@@ -5497,17 +5299,17 @@ bin-links@^3.0.0:
binary-extensions@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
+ resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
binaryextensions@^4.15.0, binaryextensions@^4.16.0:
version "4.18.0"
- resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-4.18.0.tgz#22aeada2d14de062c60e8ca59a504a5636a76ceb"
+ resolved "https://registry.npmjs.org/binaryextensions/-/binaryextensions-4.18.0.tgz"
integrity sha512-PQu3Kyv9dM4FnwB7XGj1+HucW+ShvJzJqjuw1JkKVs1mWdwOKVcRjOi+pV9X52A0tNvrPCsPkbFFQb+wE1EAXw==
bl@^4.0.3, bl@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
+ resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==
dependencies:
buffer "^5.5.0"
@@ -5516,22 +5318,22 @@ bl@^4.0.3, bl@^4.1.0:
blob-util@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb"
+ resolved "https://registry.npmjs.org/blob-util/-/blob-util-2.0.2.tgz"
integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==
bluebird@3.7.1:
version "3.7.1"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de"
+ resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz"
integrity sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==
bluebird@^3.7.2:
version "3.7.2"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
+ resolved "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
body-parser@1.20.2:
version "1.20.2"
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd"
+ resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz"
integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==
dependencies:
bytes "3.1.2"
@@ -5549,7 +5351,7 @@ body-parser@1.20.2:
boxen@^3.0.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/boxen/-/boxen-3.2.0.tgz#fbdff0de93636ab4450886b6ff45b92d098f45eb"
+ resolved "https://registry.npmjs.org/boxen/-/boxen-3.2.0.tgz"
integrity sha512-cU4J/+NodM3IHdSL2yN8bqYqnmlBTidDR4RC7nJs61ZmtGz8VZzM3HLQX0zY5mrSmPtR3xWwsq2jOUQqFZN8+A==
dependencies:
ansi-align "^3.0.0"
@@ -5563,7 +5365,7 @@ boxen@^3.0.0:
brace-expansion@^1.1.7:
version "1.1.11"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+ resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
dependencies:
balanced-match "^1.0.0"
@@ -5577,35 +5379,25 @@ brace-expansion@^2.0.1:
balanced-match "^1.0.0"
braces@^3.0.2, braces@~3.0.2:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
- integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
- dependencies:
- fill-range "^7.1.1"
-
-browserslist@^4.21.3, browserslist@^4.21.4:
- version "4.21.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
- integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
+ version "3.0.2"
+ resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
dependencies:
- caniuse-lite "^1.0.30001400"
- electron-to-chromium "^1.4.251"
- node-releases "^2.0.6"
- update-browserslist-db "^1.0.9"
+ fill-range "^7.0.1"
-browserslist@^4.21.9:
- version "4.21.9"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635"
- integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==
+browserslist@^4.21.4, browserslist@^4.23.1:
+ version "4.23.3"
+ resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz"
+ integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==
dependencies:
- caniuse-lite "^1.0.30001503"
- electron-to-chromium "^1.4.431"
- node-releases "^2.0.12"
- update-browserslist-db "^1.0.11"
+ caniuse-lite "^1.0.30001646"
+ electron-to-chromium "^1.5.4"
+ node-releases "^2.0.18"
+ update-browserslist-db "^1.1.0"
browserslist@^4.22.2:
version "4.23.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab"
+ resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz"
integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==
dependencies:
caniuse-lite "^1.0.30001587"
@@ -5615,31 +5407,31 @@ browserslist@^4.22.2:
bs-logger@0.x:
version "0.2.6"
- resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8"
+ resolved "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz"
integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==
dependencies:
fast-json-stable-stringify "2.x"
bser@2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
+ resolved "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz"
integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==
dependencies:
node-int64 "^0.4.0"
buffer-crc32@~0.2.3:
version "0.2.13"
- resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
+ resolved "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"
integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==
buffer-from@^1.0.0:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
+ resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
buffer@4.9.2:
version "4.9.2"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
+ resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz"
integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
dependencies:
base64-js "^1.0.2"
@@ -5648,7 +5440,7 @@ buffer@4.9.2:
buffer@^5.5.0, buffer@^5.6.0:
version "5.7.1"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
+ resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
dependencies:
base64-js "^1.3.1"
@@ -5656,46 +5448,46 @@ buffer@^5.5.0, buffer@^5.6.0:
builtins@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88"
+ resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz"
integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==
builtins@^5.0.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.1.0.tgz#6d85eeb360c4ebc166c3fdef922a15aa7316a5e8"
+ resolved "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz"
integrity sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==
dependencies:
semver "^7.0.0"
busboy@1.6.0, busboy@^1.6.0:
version "1.6.0"
- resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893"
+ resolved "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz"
integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==
dependencies:
streamsearch "^1.1.0"
byte-size@8.1.1:
version "8.1.1"
- resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-8.1.1.tgz#3424608c62d59de5bfda05d31e0313c6174842ae"
+ resolved "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz"
integrity sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==
bytes-iec@^3.1.1:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/bytes-iec/-/bytes-iec-3.1.1.tgz#94cd36bf95c2c22a82002c247df8772d1d591083"
+ resolved "https://registry.npmjs.org/bytes-iec/-/bytes-iec-3.1.1.tgz"
integrity sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==
bytes@3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
+ resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"
integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==
bytes@3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
+ resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz"
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
cacache@^15.0.3, cacache@^15.0.5, cacache@^15.2.0:
version "15.3.0"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
+ resolved "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz"
integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
dependencies:
"@npmcli/fs" "^1.0.0"
@@ -5719,7 +5511,7 @@ cacache@^15.0.3, cacache@^15.0.5, cacache@^15.2.0:
cacache@^16.1.0:
version "16.1.3"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e"
+ resolved "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz"
integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==
dependencies:
"@npmcli/fs" "^2.1.0"
@@ -5743,7 +5535,7 @@ cacache@^16.1.0:
cacache@^17.0.0:
version "17.1.4"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.4.tgz#b3ff381580b47e85c6e64f801101508e26604b35"
+ resolved "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz"
integrity sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==
dependencies:
"@npmcli/fs" "^3.1.0"
@@ -5761,7 +5553,7 @@ cacache@^17.0.0:
cacache@^18.0.0:
version "18.0.2"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-18.0.2.tgz#fd527ea0f03a603be5c0da5805635f8eef00c60c"
+ resolved "https://registry.npmjs.org/cacache/-/cacache-18.0.2.tgz"
integrity sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==
dependencies:
"@npmcli/fs" "^3.1.0"
@@ -5779,12 +5571,12 @@ cacache@^18.0.0:
cacheable-lookup@^5.0.3:
version "5.0.4"
- resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005"
+ resolved "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz"
integrity sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==
cacheable-request@^6.0.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912"
+ resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz"
integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==
dependencies:
clone-response "^1.0.2"
@@ -5797,7 +5589,7 @@ cacheable-request@^6.0.0:
cacheable-request@^7.0.2:
version "7.0.2"
- resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27"
+ resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz"
integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==
dependencies:
clone-response "^1.0.2"
@@ -5810,12 +5602,12 @@ cacheable-request@^7.0.2:
cachedir@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-2.3.0.tgz#0c75892a052198f0b21c7c1804d8331edfcae0e8"
+ resolved "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz"
integrity sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==
caching-transform@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/caching-transform/-/caching-transform-4.0.0.tgz#00d297a4206d71e2163c39eaffa8157ac0651f0f"
+ resolved "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz"
integrity sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==
dependencies:
hasha "^5.0.0"
@@ -5825,7 +5617,7 @@ caching-transform@^4.0.0:
call-bind@^1.0.0, call-bind@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+ resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
dependencies:
function-bind "^1.1.1"
@@ -5833,7 +5625,7 @@ call-bind@^1.0.0, call-bind@^1.0.2:
call-bind@^1.0.5:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9"
+ resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz"
integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==
dependencies:
es-define-property "^1.0.0"
@@ -5844,12 +5636,12 @@ call-bind@^1.0.5:
callsites@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+ resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
camel-case@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
+ resolved "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz"
integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
dependencies:
pascal-case "^3.1.2"
@@ -5857,7 +5649,7 @@ camel-case@^4.1.2:
camelcase-keys@^6.2.2:
version "6.2.2"
- resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0"
+ resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz"
integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
dependencies:
camelcase "^5.3.1"
@@ -5866,32 +5658,27 @@ camelcase-keys@^6.2.2:
camelcase@^5.0.0, camelcase@^5.3.1:
version "5.3.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
+ resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
camelcase@^6.2.0:
version "6.3.0"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
+ resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426:
- version "1.0.30001509"
- resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz"
- integrity sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==
-
-caniuse-lite@^1.0.30001503:
- version "1.0.30001517"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz#90fabae294215c3495807eb24fc809e11dc2f0a8"
- integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==
+caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001646:
+ version "1.0.30001657"
+ resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001657.tgz"
+ integrity sha512-DPbJAlP8/BAXy3IgiWmZKItubb3TYGP0WscQQlVGIfT4s/YlFYVuJgyOsQNP7rJRChx/qdMeLJQJP0Sgg2yjNA==
caniuse-lite@^1.0.30001587:
version "1.0.30001621"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz#4adcb443c8b9c8303e04498318f987616b8fea2e"
+ resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001621.tgz"
integrity sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==
capital-case@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669"
+ resolved "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz"
integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==
dependencies:
no-case "^3.0.4"
@@ -5900,7 +5687,7 @@ capital-case@^1.0.4:
cardinal@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505"
+ resolved "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz"
integrity sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==
dependencies:
ansicolors "~0.3.2"
@@ -5908,17 +5695,17 @@ cardinal@^2.1.1:
caseless@~0.12.0:
version "0.12.0"
- resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
+ resolved "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"
integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==
ccount@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5"
+ resolved "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz"
integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==
chai@^4:
version "4.3.7"
- resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51"
+ resolved "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz"
integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==
dependencies:
assertion-error "^1.1.0"
@@ -5931,7 +5718,7 @@ chai@^4:
chalk@2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz"
integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==
dependencies:
ansi-styles "^3.1.0"
@@ -5940,7 +5727,7 @@ chalk@2.3.0:
chalk@4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz"
integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
dependencies:
ansi-styles "^4.1.0"
@@ -5948,7 +5735,7 @@ chalk@4.1.0:
chalk@4.1.2, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2, chalk@~4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
dependencies:
ansi-styles "^4.1.0"
@@ -5956,12 +5743,12 @@ chalk@4.1.2, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.
chalk@5.3.0:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz"
integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==
chalk@^1.0.0, chalk@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"
integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==
dependencies:
ansi-styles "^2.2.1"
@@ -5970,23 +5757,31 @@ chalk@^1.0.0, chalk@^1.1.3:
strip-ansi "^3.0.0"
supports-color "^2.0.0"
-chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
+chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
dependencies:
ansi-styles "^3.2.1"
escape-string-regexp "^1.0.5"
supports-color "^5.3.0"
+chalk@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz"
+ integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
chalk@^5.2.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3"
+ resolved "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz"
integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
change-case-all@1.0.14:
version "1.0.14"
- resolved "https://registry.yarnpkg.com/change-case-all/-/change-case-all-1.0.14.tgz#bac04da08ad143278d0ac3dda7eccd39280bfba1"
+ resolved "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz"
integrity sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==
dependencies:
change-case "^4.1.2"
@@ -6002,7 +5797,7 @@ change-case-all@1.0.14:
change-case-all@1.0.15:
version "1.0.15"
- resolved "https://registry.yarnpkg.com/change-case-all/-/change-case-all-1.0.15.tgz#de29393167fc101d646cd76b0ef23e27d09756ad"
+ resolved "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.15.tgz"
integrity sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==
dependencies:
change-case "^4.1.2"
@@ -6018,7 +5813,7 @@ change-case-all@1.0.15:
change-case@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12"
+ resolved "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz"
integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==
dependencies:
camel-case "^4.1.2"
@@ -6036,52 +5831,52 @@ change-case@^4.1.2:
char-regex@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
+ resolved "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
character-entities-html4@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b"
+ resolved "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz"
integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==
character-entities-legacy@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b"
+ resolved "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz"
integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==
character-entities@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22"
+ resolved "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz"
integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==
character-reference-invalid@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9"
+ resolved "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz"
integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==
chardet@^0.7.0:
version "0.7.0"
- resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
+ resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"
integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
charenc@0.0.2:
version "0.0.2"
- resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
+ resolved "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz"
integrity sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==
check-error@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
+ resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz"
integrity sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==
check-more-types@^2.24.0:
version "2.24.0"
- resolved "https://registry.yarnpkg.com/check-more-types/-/check-more-types-2.24.0.tgz#1420ffb10fd444dcfc79b43891bbfffd32a84600"
+ resolved "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz"
integrity sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.2, chokidar@^3.5.3:
version "3.5.3"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
+ resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
dependencies:
anymatch "~3.1.2"
@@ -6096,17 +5891,17 @@ check-more-types@^2.24.0:
chownr@^1.1.1:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
+ resolved "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz"
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
chownr@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
+ resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz"
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
chrome-launcher@^0.13.4:
version "0.13.4"
- resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-0.13.4.tgz#4c7d81333c98282899c4e38256da23e00ed32f73"
+ resolved "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.13.4.tgz"
integrity sha512-nnzXiDbGKjDSK6t2I+35OAPBy5Pw/39bgkb/ZAFwMhwJbdYBp6aH+vW28ZgtjdU890Q7D+3wN/tB8N66q5Gi2A==
dependencies:
"@types/node" "*"
@@ -6118,7 +5913,7 @@ chrome-launcher@^0.13.4:
chrome-launcher@^0.15.0:
version "0.15.1"
- resolved "https://registry.yarnpkg.com/chrome-launcher/-/chrome-launcher-0.15.1.tgz#0a0208037063641e2b3613b7e42b0fcb3fa2d399"
+ resolved "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz"
integrity sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==
dependencies:
"@types/node" "*"
@@ -6128,87 +5923,87 @@ chrome-launcher@^0.15.0:
ci-info@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
+ resolved "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz"
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
ci-info@^3.2.0, ci-info@^3.6.1:
- version "3.9.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4"
- integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==
+ version "3.7.1"
+ resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz"
+ integrity sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==
ci-job-number@^1.2.2:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/ci-job-number/-/ci-job-number-1.2.2.tgz#f4e5918fcaeeda95b604f214be7d7d4a961fe0c0"
+ resolved "https://registry.npmjs.org/ci-job-number/-/ci-job-number-1.2.2.tgz"
integrity sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==
cjs-module-lexer@^1.0.0:
version "1.2.3"
- resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107"
+ resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz"
integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==
clean-stack@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
+ resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
clean-stack@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz#155bf0b2221bf5f4fba89528d24c5953f17fe3a8"
+ resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-3.0.1.tgz"
integrity sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg==
dependencies:
escape-string-regexp "4.0.0"
cli-boxes@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
+ resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz"
integrity sha512-3Fo5wu8Ytle8q9iCzS4D2MWVL2X7JVWRiS1BnXbTFDhS9c/REkM9vd1AmabsoZoY5/dGi5TT9iKL8Kb6DeBRQg==
cli-boxes@^2.2.0:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.1.tgz#ddd5035d25094fce220e9cab40a45840a440318f"
+ resolved "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz"
integrity sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==
cli-cursor@3.1.0, cli-cursor@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+ resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz"
integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
dependencies:
restore-cursor "^3.1.0"
cli-cursor@^2.0.0, cli-cursor@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
+ resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"
integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==
dependencies:
restore-cursor "^2.0.0"
cli-cursor@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea"
+ resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz"
integrity sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==
dependencies:
restore-cursor "^4.0.0"
cli-progress@^3.10.0:
version "3.11.2"
- resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.11.2.tgz#f8c89bd157e74f3f2c43bcfb3505670b4d48fc77"
+ resolved "https://registry.npmjs.org/cli-progress/-/cli-progress-3.11.2.tgz"
integrity sha512-lCPoS6ncgX4+rJu5bS3F/iCz17kZ9MPZ6dpuTtI0KXKABkhyXIdYB3Inby1OpaGti3YlI3EeEkM9AuWpelJrVA==
dependencies:
string-width "^4.2.3"
cli-spinners@2.6.1:
version "2.6.1"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d"
+ resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz"
integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==
cli-spinners@^2.5.0, cli-spinners@^2.9.2:
version "2.9.2"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41"
+ resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz"
integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==
cli-table3@~0.6.1:
version "0.6.3"
- resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2"
+ resolved "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz"
integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==
dependencies:
string-width "^4.2.0"
@@ -6217,14 +6012,14 @@ cli-table3@~0.6.1:
cli-table@^0.3.1:
version "0.3.11"
- resolved "https://registry.yarnpkg.com/cli-table/-/cli-table-0.3.11.tgz#ac69cdecbe81dccdba4889b9a18b7da312a9d3ee"
+ resolved "https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz"
integrity sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==
dependencies:
colors "1.0.3"
cli-truncate@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574"
+ resolved "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz"
integrity sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==
dependencies:
slice-ansi "0.0.4"
@@ -6232,7 +6027,7 @@ cli-truncate@^0.2.1:
cli-truncate@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7"
+ resolved "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz"
integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==
dependencies:
slice-ansi "^3.0.0"
@@ -6240,7 +6035,7 @@ cli-truncate@^2.1.0:
cli-truncate@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a"
+ resolved "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz"
integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==
dependencies:
slice-ansi "^5.0.0"
@@ -6248,27 +6043,27 @@ cli-truncate@^4.0.0:
cli-width@^2.0.0:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
+ resolved "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz"
integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==
cli-width@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
+ resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz"
integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
cli-width@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5"
+ resolved "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz"
integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==
client-only@0.0.1, client-only@^0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1"
+ resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz"
integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
clipboardy@1.2.2:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.2.tgz#2ce320b9ed9be1514f79878b53ff9765420903e2"
+ resolved "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.2.tgz"
integrity sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==
dependencies:
arch "^2.1.0"
@@ -6276,7 +6071,7 @@ clipboardy@1.2.2:
cliui@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
+ resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"
integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
dependencies:
string-width "^4.2.0"
@@ -6285,7 +6080,7 @@ cliui@^6.0.0:
cliui@^7.0.2:
version "7.0.4"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
+ resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
dependencies:
string-width "^4.2.0"
@@ -6294,7 +6089,7 @@ cliui@^7.0.2:
cliui@^8.0.1:
version "8.0.1"
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
+ resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz"
integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==
dependencies:
string-width "^4.2.0"
@@ -6303,12 +6098,12 @@ cliui@^8.0.1:
clone-buffer@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58"
+ resolved "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz"
integrity sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==
clone-deep@4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
+ resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz"
integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
dependencies:
is-plain-object "^2.0.4"
@@ -6317,29 +6112,29 @@ clone-deep@4.0.1:
clone-response@^1.0.2:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3"
+ resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz"
integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==
dependencies:
mimic-response "^1.0.0"
clone-stats@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680"
+ resolved "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz"
integrity sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==
clone@^1.0.2:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
+ resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"
integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==
clone@^2.1.1:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
+ resolved "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz"
integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==
cloneable-readable@^1.0.0:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec"
+ resolved "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz"
integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==
dependencies:
inherits "^2.0.1"
@@ -6348,63 +6143,63 @@ cloneable-readable@^1.0.0:
clsx@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12"
+ resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz"
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
cmd-shim@6.0.1:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-6.0.1.tgz#a65878080548e1dca760b3aea1e21ed05194da9d"
+ resolved "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.1.tgz"
integrity sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q==
cmd-shim@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-5.0.0.tgz#8d0aaa1a6b0708630694c4dbde070ed94c707724"
+ resolved "https://registry.npmjs.org/cmd-shim/-/cmd-shim-5.0.0.tgz"
integrity sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==
dependencies:
mkdirp-infer-owner "^2.0.0"
co@^4.6.0:
version "4.6.0"
- resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
+ resolved "https://registry.npmjs.org/co/-/co-4.6.0.tgz"
integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
code-point-at@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
+ resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"
integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==
collect-v8-coverage@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59"
+ resolved "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"
integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==
color-convert@^1.9.0:
version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+ resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
dependencies:
color-name "1.1.3"
color-convert@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
dependencies:
color-name "~1.1.4"
color-name@1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+ resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
color-name@^1.0.0, color-name@~1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
color-string@^1.9.0:
version "1.9.1"
- resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
+ resolved "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz"
integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
dependencies:
color-name "^1.0.0"
@@ -6412,12 +6207,12 @@ color-string@^1.9.0:
color-support@^1.1.2, color-support@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
+ resolved "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz"
integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
color@^4.2.3:
version "4.2.3"
- resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a"
+ resolved "https://registry.npmjs.org/color/-/color-4.2.3.tgz"
integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==
dependencies:
color-convert "^2.0.1"
@@ -6425,27 +6220,27 @@ color@^4.2.3:
colord@^2.9.3:
version "2.9.3"
- resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43"
+ resolved "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz"
integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==
colorette@^2.0.16:
version "2.0.19"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798"
+ resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz"
integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==
colorette@^2.0.20:
version "2.0.20"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
+ resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz"
integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
colors@1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
+ resolved "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"
integrity sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==
columnify@1.6.0:
version "1.6.0"
- resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3"
+ resolved "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz"
integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==
dependencies:
strip-ansi "^6.0.1"
@@ -6453,64 +6248,59 @@ columnify@1.6.0:
combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
dependencies:
delayed-stream "~1.0.0"
comma-separated-tokens@^2.0.0:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee"
+ resolved "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz"
integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==
commander@11.1.0:
version "11.1.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-11.1.0.tgz#62fdce76006a68e5c1ab3314dc92e800eb83d906"
+ resolved "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz"
integrity sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==
commander@7:
version "7.2.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
+ resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
commander@7.1.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-7.1.0.tgz#f2eaecf131f10e36e07d894698226e36ae0eb5ff"
+ resolved "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz"
integrity sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==
-commander@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
- integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==
-
commander@^6.2.1:
version "6.2.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c"
+ resolved "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz"
integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==
commander@^8.0.0, commander@^8.3.0:
version "8.3.0"
- resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
+ resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"
integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
common-ancestor-path@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7"
+ resolved "https://registry.npmjs.org/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz"
integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==
common-tags@1.8.2, common-tags@^1.8.0:
version "1.8.2"
- resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6"
+ resolved "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz"
integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==
commondir@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
+ resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"
integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==
compare-func@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3"
+ resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz"
integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
dependencies:
array-ify "^1.0.0"
@@ -6518,14 +6308,14 @@ compare-func@^2.0.0:
compressible@~2.0.16:
version "2.0.18"
- resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+ resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"
integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
dependencies:
mime-db ">= 1.43.0 < 2"
compression@^1.7.4:
version "1.7.4"
- resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+ resolved "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"
integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
dependencies:
accepts "~1.3.5"
@@ -6538,17 +6328,17 @@ compression@^1.7.4:
compute-scroll-into-view@^2.0.2:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-2.0.3.tgz#e78c9804a2396a7a47159523b23b0695ad2391cc"
+ resolved "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-2.0.3.tgz"
integrity sha512-mj/AjC7WqXeVlUB6zUq5Qrivb6et0kyasDQcbCWLDusYUqaXng+BfOnhCdRqPOa5/dWNn5e9+u40H6w2BYRdNQ==
concat-map@0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
concat-stream@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1"
+ resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz"
integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==
dependencies:
buffer-from "^1.0.0"
@@ -6558,7 +6348,7 @@ concat-stream@^2.0.0:
concurrently@^6.2.1:
version "6.5.1"
- resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-6.5.1.tgz#4518c67f7ac680cf5c34d5adf399a2a2047edc8c"
+ resolved "https://registry.npmjs.org/concurrently/-/concurrently-6.5.1.tgz"
integrity sha512-FlSwNpGjWQfRwPLXvJ/OgysbBxPkWpiVjy1042b0U7on7S7qwwMIILRj7WTN1mTgqa582bG6NFuScOoh6Zgdag==
dependencies:
chalk "^4.1.0"
@@ -6572,7 +6362,7 @@ concurrently@^6.2.1:
concurrently@^7.6.0:
version "7.6.0"
- resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-7.6.0.tgz#531a6f5f30cf616f355a4afb8f8fcb2bba65a49a"
+ resolved "https://registry.npmjs.org/concurrently/-/concurrently-7.6.0.tgz"
integrity sha512-BKtRgvcJGeZ4XttiDiNcFiRlxoAeZOseqUvyYRUp/Vtd+9p1ULmeoSqGsDA+2ivdeDFpqrJvGvmI+StKfKl5hw==
dependencies:
chalk "^4.1.0"
@@ -6587,7 +6377,7 @@ concurrently@^7.6.0:
configstore@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/configstore/-/configstore-4.0.0.tgz#5933311e95d3687efb592c528b922d9262d227e7"
+ resolved "https://registry.npmjs.org/configstore/-/configstore-4.0.0.tgz"
integrity sha512-CmquAXFBocrzaSM8mtGPMM/HiWmyIpr4CcJl/rgY2uCObZ/S7cKU0silxslqJejl+t/T9HS8E0PUNQD81JGUEQ==
dependencies:
dot-prop "^4.1.0"
@@ -6599,7 +6389,7 @@ configstore@^4.0.0:
configstore@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/configstore/-/configstore-5.0.1.tgz#d365021b5df4b98cdd187d6a3b0e3f6a7cc5ed96"
+ resolved "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz"
integrity sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==
dependencies:
dot-prop "^5.2.0"
@@ -6611,12 +6401,12 @@ configstore@^5.0.1:
console-control-strings@^1.0.0, console-control-strings@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
+ resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"
integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==
constant-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1"
+ resolved "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz"
integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==
dependencies:
no-case "^3.0.4"
@@ -6625,26 +6415,26 @@ constant-case@^3.0.4:
content-disposition@0.5.4:
version "0.5.4"
- resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
+ resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz"
integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
dependencies:
safe-buffer "5.2.1"
content-type@^1.0.4, content-type@~1.0.4, content-type@~1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
+ resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
conventional-changelog-angular@7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz#5eec8edbff15aa9b1680a8dcfbd53e2d7eb2ba7a"
+ resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz"
integrity sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==
dependencies:
compare-func "^2.0.0"
conventional-changelog-conventionalcommits@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz#41bdce54eb65a848a4a3ffdca93e92fa22b64a86"
+ resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz"
integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==
dependencies:
compare-func "^2.0.0"
@@ -6653,7 +6443,7 @@ conventional-changelog-conventionalcommits@^5.0.0:
conventional-changelog-core@5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz#3c331b155d5b9850f47b4760aeddfc983a92ad49"
+ resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz"
integrity sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A==
dependencies:
add-stream "^1.0.0"
@@ -6670,12 +6460,12 @@ conventional-changelog-core@5.0.1:
conventional-changelog-preset-loader@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz#14975ef759d22515d6eabae6396c2ae721d4c105"
+ resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz"
integrity sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA==
conventional-changelog-writer@^6.0.0:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz#d8d3bb5e1f6230caed969dcc762b1c368a8f7b01"
+ resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz"
integrity sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ==
dependencies:
conventional-commits-filter "^3.0.0"
@@ -6688,7 +6478,7 @@ conventional-changelog-writer@^6.0.0:
conventional-commits-filter@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz#bf1113266151dd64c49cd269e3eb7d71d7015ee2"
+ resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz"
integrity sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q==
dependencies:
lodash.ismatch "^4.4.0"
@@ -6696,7 +6486,7 @@ conventional-commits-filter@^3.0.0:
conventional-commits-parser@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz#02ae1178a381304839bce7cea9da5f1b549ae505"
+ resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz"
integrity sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==
dependencies:
JSONStream "^1.3.5"
@@ -6706,7 +6496,7 @@ conventional-commits-parser@^4.0.0:
conventional-recommended-bump@7.0.1:
version "7.0.1"
- resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz#ec01f6c7f5d0e2491c2d89488b0d757393392424"
+ resolved "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz"
integrity sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA==
dependencies:
concat-stream "^2.0.0"
@@ -6719,32 +6509,32 @@ conventional-recommended-bump@7.0.1:
convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.9.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
+ resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
convert-source-map@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
+ resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
cookie-signature@1.0.6:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+ resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"
integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
cookie@0.3.1:
version "0.3.1"
- resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
+ resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"
integrity sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==
cookie@0.6.0, cookie@^0.6.0:
version "0.6.0"
- resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051"
+ resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz"
integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
copyfiles@^2.4.1:
version "2.4.1"
- resolved "https://registry.yarnpkg.com/copyfiles/-/copyfiles-2.4.1.tgz#d2dcff60aaad1015f09d0b66e7f0f1c5cd3c5da5"
+ resolved "https://registry.npmjs.org/copyfiles/-/copyfiles-2.4.1.tgz"
integrity sha512-fereAvAvxDrQDOXybk3Qu3dPbOoKoysFMWtkY3mv5BsL8//OSZVL5DCLYqgRfY5cWirgRzlC+WSrxp6Bo3eNZg==
dependencies:
glob "^7.0.5"
@@ -6757,41 +6547,41 @@ copyfiles@^2.4.1:
core-js-pure@^3.25.1:
version "3.27.1"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.27.1.tgz#ede4a6b8440585c7190062757069c01d37a19dca"
+ resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.1.tgz"
integrity sha512-BS2NHgwwUppfeoqOXqi08mUqS5FiZpuRuJJpKsaME7kJz0xxuk0xkhDdfMIlP/zLa80krBqss1LtD7f889heAw==
core-js@^3.4:
version "3.27.1"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.27.1.tgz#23cc909b315a6bb4e418bf40a52758af2103ba46"
+ resolved "https://registry.npmjs.org/core-js/-/core-js-3.27.1.tgz"
integrity sha512-GutwJLBChfGCpwwhbYoqfv03LAfmiz7e7D/BNxzeMxwQf10GRSzqiOjx7AmtEk+heiD/JWmBuyBPgFtx0Sg1ww==
core-util-is@1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
+ resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==
core-util-is@~1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
+ resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
cose-base@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-1.0.3.tgz#650334b41b869578a543358b80cda7e0abe0a60a"
+ resolved "https://registry.npmjs.org/cose-base/-/cose-base-1.0.3.tgz"
integrity sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==
dependencies:
layout-base "^1.0.0"
cose-base@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-2.2.0.tgz#1c395c35b6e10bb83f9769ca8b817d614add5c01"
+ resolved "https://registry.npmjs.org/cose-base/-/cose-base-2.2.0.tgz"
integrity sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==
dependencies:
layout-base "^2.0.0"
cosmiconfig@8.0.0:
version "8.0.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97"
+ resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz"
integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==
dependencies:
import-fresh "^3.2.1"
@@ -6801,7 +6591,7 @@ cosmiconfig@8.0.0:
cosmiconfig@^7.0.0, cosmiconfig@^7.1.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
+ resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"
integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
dependencies:
"@types/parse-json" "^4.0.0"
@@ -6812,7 +6602,7 @@ cosmiconfig@^7.0.0, cosmiconfig@^7.1.0:
cosmiconfig@^8.1.0, cosmiconfig@^8.1.3, cosmiconfig@^8.2.0:
version "8.3.6"
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3"
+ resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz"
integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
dependencies:
import-fresh "^3.3.0"
@@ -6822,7 +6612,7 @@ cosmiconfig@^8.1.0, cosmiconfig@^8.1.3, cosmiconfig@^8.2.0:
create-jest@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320"
+ resolved "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz"
integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==
dependencies:
"@jest/types" "^29.6.3"
@@ -6835,33 +6625,33 @@ create-jest@^29.7.0:
create-require@^1.1.0:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
+ resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
cross-env@^7.0.2:
version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf"
+ resolved "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz"
integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==
dependencies:
cross-spawn "^7.0.1"
cross-fetch@^3.1.5:
version "3.1.5"
- resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f"
+ resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz"
integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==
dependencies:
node-fetch "2.6.7"
cross-inspect@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/cross-inspect/-/cross-inspect-1.0.0.tgz#5fda1af759a148594d2d58394a9e21364f6849af"
+ resolved "https://registry.npmjs.org/cross-inspect/-/cross-inspect-1.0.0.tgz"
integrity sha512-4PFfn4b5ZN6FMNGSZlyb7wUhuN8wvj8t/VQHZdM4JsDcruGJ8L2kf9zao98QIrBPFCpdk27qst/AGTl7pL3ypQ==
dependencies:
tslib "^2.4.0"
cross-spawn@^5.0.1:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
+ resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"
integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==
dependencies:
lru-cache "^4.0.1"
@@ -6870,7 +6660,7 @@ cross-spawn@^5.0.1:
cross-spawn@^6.0.5:
version "6.0.5"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
+ resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
dependencies:
nice-try "^1.0.4"
@@ -6881,7 +6671,7 @@ cross-spawn@^6.0.5:
cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+ resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
dependencies:
path-key "^3.1.0"
@@ -6890,32 +6680,32 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
crypt@0.0.2:
version "0.0.2"
- resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
+ resolved "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"
integrity sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==
crypto-random-string@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
+ resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"
integrity sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==
crypto-random-string@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
+ resolved "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz"
integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==
csp_evaluator@1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/csp_evaluator/-/csp_evaluator-1.1.0.tgz#7fb3378a08163de4caf0a5297e92a5f70ef42d21"
+ resolved "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1.0.tgz"
integrity sha512-TcB+ZH9wZBG314jAUpKHPl1oYbRJV+nAT2YwZ9y4fmUN0FkEJa8e/hKZoOgzLYp1Z/CJdFhbhhGIGh0XG8W54Q==
css-functions-list@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/css-functions-list/-/css-functions-list-3.1.0.tgz#cf5b09f835ad91a00e5959bcfc627cd498e1321b"
+ resolved "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.1.0.tgz"
integrity sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==
css-loader@^6.7.1:
version "6.7.3"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.3.tgz#1e8799f3ccc5874fdd55461af51137fcc5befbcd"
+ resolved "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz"
integrity sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==
dependencies:
icss-utils "^5.1.0"
@@ -6927,101 +6717,58 @@ css-loader@^6.7.1:
postcss-value-parser "^4.2.0"
semver "^7.3.8"
+css.escape@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz"
+ integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==
+
cssesc@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+ resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
cssom@0.3.x, cssom@~0.3.6:
version "0.3.8"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
+ resolved "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz"
integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
cssom@^0.5.0:
version "0.5.0"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.5.0.tgz#d254fa92cd8b6fbd83811b9fbaed34663cc17c36"
+ resolved "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz"
integrity sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==
cssstyle@1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.1.tgz#3aceb2759eaf514ac1a21628d723d6043a819495"
+ resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.1.tgz"
integrity sha512-7DYm8qe+gPx/h77QlCyFmX80+fGaE/6A/Ekl0zaszYOubvySO2saYFdQ78P29D0UsULxFKCetDGNaNRUdSF+2A==
dependencies:
cssom "0.3.x"
cssstyle@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
+ resolved "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz"
integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
dependencies:
cssom "~0.3.6"
csstype@^3.0.2:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9"
+ resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz"
integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
cypress-axe@^1.5.0:
version "1.5.0"
- resolved "https://registry.yarnpkg.com/cypress-axe/-/cypress-axe-1.5.0.tgz#95082734583da77b51ce9b7784e14a442016c7a1"
+ resolved "https://registry.npmjs.org/cypress-axe/-/cypress-axe-1.5.0.tgz"
integrity sha512-Hy/owCjfj+25KMsecvDgo4fC/781ccL+e8p+UUYoadGVM2ogZF9XIKbiM6KI8Y3cEaSreymdD6ZzccbI2bY0lQ==
cypress-wait-until@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/cypress-wait-until/-/cypress-wait-until-2.0.1.tgz#69c575c7207d83e4ae023e2aaecf2b66148c9fc0"
+ resolved "https://registry.npmjs.org/cypress-wait-until/-/cypress-wait-until-2.0.1.tgz"
integrity sha512-+IyVnYNiaX1+C+V/LazrJWAi/CqiwfNoRSrFviECQEyolW1gDRy765PZosL2alSSGK8V10Y7BGfOQyZUDgmnjQ==
-cypress@*:
- version "12.5.1"
- resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.5.1.tgz#effdcccdd5a6187d61d497300903d4f3b5b21b6e"
- integrity sha512-ZmCmJ3lsyeOpBfh410m5+AO2CO1AxAzFBt7k6/uVbNcrNZje1vdiwYTpj2ksPKg9mjr9lR6V8tmlDNMvr4H/YQ==
- dependencies:
- "@cypress/request" "^2.88.10"
- "@cypress/xvfb" "^1.2.4"
- "@types/node" "^14.14.31"
- "@types/sinonjs__fake-timers" "8.1.1"
- "@types/sizzle" "^2.3.2"
- arch "^2.2.0"
- blob-util "^2.0.2"
- bluebird "^3.7.2"
- buffer "^5.6.0"
- cachedir "^2.3.0"
- chalk "^4.1.0"
- check-more-types "^2.24.0"
- cli-cursor "^3.1.0"
- cli-table3 "~0.6.1"
- commander "^5.1.0"
- common-tags "^1.8.0"
- dayjs "^1.10.4"
- debug "^4.3.2"
- enquirer "^2.3.6"
- eventemitter2 "6.4.7"
- execa "4.1.0"
- executable "^4.1.1"
- extract-zip "2.0.1"
- figures "^3.2.0"
- fs-extra "^9.1.0"
- getos "^3.2.1"
- is-ci "^3.0.0"
- is-installed-globally "~0.4.0"
- lazy-ass "^1.6.0"
- listr2 "^3.8.3"
- lodash "^4.17.21"
- log-symbols "^4.0.0"
- minimist "^1.2.6"
- ospath "^1.2.2"
- pretty-bytes "^5.6.0"
- proxy-from-env "1.0.0"
- request-progress "^3.0.0"
- semver "^7.3.2"
- supports-color "^8.1.1"
- tmp "~0.2.1"
- untildify "^4.0.0"
- yauzl "^2.10.0"
-
-cypress@12.17.4:
+cypress@*, cypress@12.17.4:
version "12.17.4"
- resolved "https://registry.yarnpkg.com/cypress/-/cypress-12.17.4.tgz#b4dadf41673058493fa0d2362faa3da1f6ae2e6c"
+ resolved "https://registry.npmjs.org/cypress/-/cypress-12.17.4.tgz"
integrity sha512-gAN8Pmns9MA5eCDFSDJXWKUpaL3IDd89N9TtIupjYnzLSmlpVr+ZR+vb4U/qaMp+lB6tBvAmt7504c3Z4RU5KQ==
dependencies:
"@cypress/request" "2.88.12"
@@ -7070,21 +6817,21 @@ cypress@12.17.4:
cytoscape-cose-bilkent@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz#762fa121df9930ffeb51a495d87917c570ac209b"
+ resolved "https://registry.npmjs.org/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz"
integrity sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==
dependencies:
cose-base "^1.0.0"
cytoscape-fcose@^2.1.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz#e4d6f6490df4fab58ae9cea9e5c3ab8d7472f471"
+ resolved "https://registry.npmjs.org/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz"
integrity sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==
dependencies:
cose-base "^2.2.0"
cytoscape@^3.23.0:
version "3.25.0"
- resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.25.0.tgz#5289e9d18be0293b073bfe93f83bb95b908b2dc1"
+ resolved "https://registry.npmjs.org/cytoscape/-/cytoscape-3.25.0.tgz"
integrity sha512-7MW3Iz57mCUo6JQCho6CmPBCbTlJr7LzyEtIkutG255HLVd4XuBg2I9BkTZLI/e4HoaOB/BiAzXuQybQ95+r9Q==
dependencies:
heap "^0.2.6"
@@ -7092,19 +6839,19 @@ cytoscape@^3.23.0:
"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0:
version "3.2.4"
- resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5"
+ resolved "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz"
integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==
dependencies:
internmap "1 - 2"
d3-axis@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322"
+ resolved "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz"
integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==
d3-brush@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c"
+ resolved "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz"
integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==
dependencies:
d3-dispatch "1 - 3"
@@ -7115,38 +6862,38 @@ d3-brush@3:
d3-chord@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966"
+ resolved "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz"
integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==
dependencies:
d3-path "1 - 3"
"d3-color@1 - 3", d3-color@3:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2"
+ resolved "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz"
integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==
d3-contour@4:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc"
+ resolved "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz"
integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==
dependencies:
d3-array "^3.2.0"
d3-delaunay@6:
version "6.0.4"
- resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b"
+ resolved "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz"
integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==
dependencies:
delaunator "5"
"d3-dispatch@1 - 3", d3-dispatch@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e"
+ resolved "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz"
integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==
"d3-drag@2 - 3", d3-drag@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba"
+ resolved "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz"
integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==
dependencies:
d3-dispatch "1 - 3"
@@ -7154,7 +6901,7 @@ d3-delaunay@6:
"d3-dsv@1 - 3", d3-dsv@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73"
+ resolved "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz"
integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==
dependencies:
commander "7"
@@ -7163,19 +6910,19 @@ d3-delaunay@6:
"d3-ease@1 - 3", d3-ease@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4"
+ resolved "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz"
integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==
d3-fetch@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22"
+ resolved "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz"
integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==
dependencies:
d3-dsv "1 - 3"
d3-force@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4"
+ resolved "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz"
integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==
dependencies:
d3-dispatch "1 - 3"
@@ -7184,51 +6931,51 @@ d3-force@3:
"d3-format@1 - 3", d3-format@3:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641"
+ resolved "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz"
integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==
d3-geo@3:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.0.tgz#74fd54e1f4cebd5185ac2039217a98d39b0a4c0e"
+ resolved "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.0.tgz"
integrity sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==
dependencies:
d3-array "2.5.0 - 3"
d3-hierarchy@3:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6"
+ resolved "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz"
integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==
"d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d"
+ resolved "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz"
integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==
dependencies:
d3-color "1 - 3"
"d3-path@1 - 3", d3-path@3, d3-path@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526"
+ resolved "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz"
integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==
d3-polygon@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398"
+ resolved "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz"
integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==
"d3-quadtree@1 - 3", d3-quadtree@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f"
+ resolved "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz"
integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==
d3-random@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4"
+ resolved "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz"
integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==
d3-scale-chromatic@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz#15b4ceb8ca2bb0dcb6d1a641ee03d59c3b62376a"
+ resolved "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.0.0.tgz"
integrity sha512-Lx9thtxAKrO2Pq6OO2Ua474opeziKr279P/TKZsMAhYyNDD3EnCffdbgeSYN5O7m2ByQsxtuP2CSDczNUIZ22g==
dependencies:
d3-color "1 - 3"
@@ -7236,7 +6983,7 @@ d3-scale-chromatic@3:
d3-scale@4:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396"
+ resolved "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz"
integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==
dependencies:
d3-array "2.10.0 - 3"
@@ -7247,38 +6994,38 @@ d3-scale@4:
"d3-selection@2 - 3", d3-selection@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31"
+ resolved "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz"
integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==
d3-shape@3:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5"
+ resolved "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz"
integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==
dependencies:
d3-path "^3.1.0"
"d3-time-format@2 - 4", d3-time-format@4:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a"
+ resolved "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz"
integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==
dependencies:
d3-time "1 - 3"
"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7"
+ resolved "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz"
integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==
dependencies:
d3-array "2 - 3"
"d3-timer@1 - 3", d3-timer@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0"
+ resolved "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz"
integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==
"d3-transition@2 - 3", d3-transition@3:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f"
+ resolved "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz"
integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==
dependencies:
d3-color "1 - 3"
@@ -7289,7 +7036,7 @@ d3-shape@3:
d3-zoom@3:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3"
+ resolved "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz"
integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==
dependencies:
d3-dispatch "1 - 3"
@@ -7300,7 +7047,7 @@ d3-zoom@3:
d3@^7.4.0, d3@^7.8.2:
version "7.8.5"
- resolved "https://registry.yarnpkg.com/d3/-/d3-7.8.5.tgz#fde4b760d4486cdb6f0cc8e2cbff318af844635c"
+ resolved "https://registry.npmjs.org/d3/-/d3-7.8.5.tgz"
integrity sha512-JgoahDG51ncUfJu6wX/1vWQEqOflgXyl4MaHqlcSruTez7yhaRKR9i8VjjcQGeS2en/jnFivXuaIMnseMMt0XA==
dependencies:
d3-array "3"
@@ -7336,7 +7083,7 @@ d3@^7.4.0, d3@^7.8.2:
dagre-d3-es@7.0.10:
version "7.0.10"
- resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz#19800d4be674379a3cd8c86a8216a2ac6827cadc"
+ resolved "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz"
integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==
dependencies:
d3 "^7.8.2"
@@ -7344,24 +7091,24 @@ dagre-d3-es@7.0.10:
damerau-levenshtein@^1.0.8:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
+ resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz"
integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
dargs@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc"
+ resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz"
integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==
dashdash@^1.12.0:
version "1.14.1"
- resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
+ resolved "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"
integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==
dependencies:
assert-plus "^1.0.0"
data-urls@^3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-3.0.2.tgz#9cf24a477ae22bcef5cd5f6f0bfbc1d2d3be9143"
+ resolved "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz"
integrity sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==
dependencies:
abab "^2.0.6"
@@ -7370,83 +7117,83 @@ data-urls@^3.0.2:
dataloader@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.1.0.tgz#c69c538235e85e7ac6c6c444bae8ecabf5de9df7"
+ resolved "https://registry.npmjs.org/dataloader/-/dataloader-2.1.0.tgz"
integrity sha512-qTcEYLen3r7ojZNgVUaRggOI+KM7jrKxXeSHhogh/TWxYMeONEMqY+hmkobiYQozsGIyg9OYVzO4ZIfoB4I0pQ==
dataloader@^2.2.2:
version "2.2.2"
- resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-2.2.2.tgz#216dc509b5abe39d43a9b9d97e6e5e473dfbe3e0"
+ resolved "https://registry.npmjs.org/dataloader/-/dataloader-2.2.2.tgz"
integrity sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==
date-fns@^1.27.2:
version "1.30.1"
- resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
+ resolved "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz"
integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
date-fns@^2.16.1, date-fns@^2.29.1:
version "2.29.3"
- resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.29.3.tgz#27402d2fc67eb442b511b70bbdf98e6411cd68a8"
+ resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz"
integrity sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==
dateformat@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
+ resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz"
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
dateformat@^4.5.0:
version "4.6.3"
- resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5"
+ resolved "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz"
integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==
dayjs@1.11.9:
version "1.11.9"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.9.tgz#9ca491933fadd0a60a2c19f6c237c03517d71d1a"
+ resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.9.tgz"
integrity sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==
dayjs@^1.10.4:
version "1.11.7"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.7.tgz#4b296922642f70999544d1144a2c25730fce63e2"
+ resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz"
integrity sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==
dayjs@^1.11.7:
version "1.11.8"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea"
+ resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.8.tgz"
integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ==
debounce@^1.2.0:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
+ resolved "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
debug@2.6.9, debug@^2.6.8, debug@^2.6.9:
version "2.6.9"
- resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
dependencies:
ms "2.0.0"
debug@4, debug@4.3.4, debug@^4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
version "4.3.4"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+ resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"
debug@^3.1.0, debug@^3.2.7:
version "3.2.7"
- resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
dependencies:
ms "^2.1.1"
debuglog@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
+ resolved "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz"
integrity sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw==
decamelize-keys@^1.1.0:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8"
+ resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz"
integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==
dependencies:
decamelize "^1.1.0"
@@ -7454,55 +7201,55 @@ decamelize-keys@^1.1.0:
decamelize@^1.1.0, decamelize@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
+ resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
decimal.js@^10.4.2:
version "10.4.3"
- resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23"
+ resolved "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz"
integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==
decode-named-character-reference@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e"
+ resolved "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz"
integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==
dependencies:
character-entities "^2.0.0"
decompress-response@^3.3.0:
version "3.3.0"
- resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
+ resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz"
integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==
dependencies:
mimic-response "^1.0.0"
decompress-response@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc"
+ resolved "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz"
integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==
dependencies:
mimic-response "^3.1.0"
dedent@0.7.0:
version "0.7.0"
- resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
+ resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz"
integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
dedent@^1.0.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.3.0.tgz#15d6809eb15b581d5587a2dc208f34118e35bee3"
+ resolved "https://registry.npmjs.org/dedent/-/dedent-1.3.0.tgz"
integrity sha512-7glNLfvdsMzZm3FpRY1CHuI2lbYDR+71YmrhmTZjYFD5pfT0ACgnGRdrrC9Mk2uICnzkcdelCx5at787UDGOvg==
deep-eql@^4.1.2:
version "4.1.3"
- resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d"
+ resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz"
integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==
dependencies:
type-detect "^4.0.0"
deep-equal@^2.0.5:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.0.tgz#5caeace9c781028b9ff459f33b779346637c43e6"
+ resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz"
integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==
dependencies:
call-bind "^1.0.2"
@@ -7525,46 +7272,51 @@ deep-equal@^2.0.5:
deep-extend@^0.6.0:
version "0.6.0"
- resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
+ resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
deep-is@^0.1.3:
version "0.1.4"
- resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
+ resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
-deepmerge@^4.2.2, deepmerge@^4.3.1:
+deepmerge@^4.2.2:
+ version "4.2.2"
+ resolved "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
+ integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+
+deepmerge@^4.3.1:
version "4.3.1"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
default-require-extensions@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-3.0.1.tgz#bfae00feeaeada68c2ae256c62540f60b80625bd"
+ resolved "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz"
integrity sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==
dependencies:
strip-bom "^4.0.0"
defaults@^1.0.3:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a"
+ resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz"
integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==
dependencies:
clone "^1.0.2"
defer-to-connect@^1.0.1:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591"
+ resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz"
integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==
defer-to-connect@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"
+ resolved "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz"
integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
define-data-property@^1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
+ resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz"
integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
dependencies:
es-define-property "^1.0.0"
@@ -7573,12 +7325,12 @@ define-data-property@^1.1.4:
define-lazy-prop@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
+ resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz"
integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
define-properties@^1.1.3, define-properties@^1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
+ resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"
integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
dependencies:
has-property-descriptors "^1.0.0"
@@ -7586,138 +7338,138 @@ define-properties@^1.1.3, define-properties@^1.1.4:
degit@^2.8.4:
version "2.8.4"
- resolved "https://registry.yarnpkg.com/degit/-/degit-2.8.4.tgz#3bb9c5c00f157c44724dd4a50724e4aa75a54d38"
+ resolved "https://registry.npmjs.org/degit/-/degit-2.8.4.tgz"
integrity sha512-vqYuzmSA5I50J882jd+AbAhQtgK6bdKUJIex1JNfEUPENCgYsxugzKVZlFyMwV4i06MmnV47/Iqi5Io86zf3Ng==
delaunator@5:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.0.tgz#60f052b28bd91c9b4566850ebf7756efe821d81b"
+ resolved "https://registry.npmjs.org/delaunator/-/delaunator-5.0.0.tgz"
integrity sha512-AyLvtyJdbv/U1GkiS6gUUzclRoAY4Gs75qkMygJJhU75LW4DNuSF2RMzpxs9jw9Oz1BobHjTdkG3zdP55VxAqw==
dependencies:
robust-predicates "^3.0.0"
delayed-stream@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+ resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
delegates@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+ resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"
integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==
depd@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
+ resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"
integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
depd@^1.1.2, depd@~1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+ resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"
integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
dependency-graph@^0.11.0:
version "0.11.0"
- resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27"
+ resolved "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz"
integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==
deprecation@^2.0.0, deprecation@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919"
+ resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz"
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
dequal@^2.0.0:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
+ resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz"
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
destroy@1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
+ resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz"
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
detect-indent@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d"
+ resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz"
integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==
detect-indent@^6.0.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6"
+ resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz"
integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==
detect-libc@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
+ resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"
integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
detect-libc@^2.0.0, detect-libc@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d"
+ resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz"
integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==
detect-newline@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651"
+ resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
dezalgo@^1.0.0:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.4.tgz#751235260469084c132157dfa857f386d4c33d81"
+ resolved "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz"
integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==
dependencies:
asap "^2.0.0"
wrappy "1"
-diff-sequences@^29.4.3:
- version "29.4.3"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2"
- integrity sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==
-
diff-sequences@^29.6.3:
version "29.6.3"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921"
+ resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz"
integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==
diff@^4.0.1:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
+ resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
diff@^5.0.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
+ resolved "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz"
integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
dir-glob@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+ resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
dependencies:
path-type "^4.0.0"
doctrine@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
+ resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
dependencies:
esutils "^2.0.2"
doctrine@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+ resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
dependencies:
esutils "^2.0.2"
dom-accessibility-api@^0.5.9:
version "0.5.16"
- resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453"
+ resolved "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz"
integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==
+dom-accessibility-api@^0.6.3:
+ version "0.6.3"
+ resolved "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz"
+ integrity sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==
+
dom-serializer@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53"
+ resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz"
integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==
dependencies:
domelementtype "^2.3.0"
@@ -7726,38 +7478,38 @@ dom-serializer@^2.0.0:
domelementtype@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
+ resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz"
integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
domexception@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
+ resolved "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz"
integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
dependencies:
webidl-conversions "^4.0.2"
domexception@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673"
+ resolved "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz"
integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==
dependencies:
webidl-conversions "^7.0.0"
domhandler@^5.0.2, domhandler@^5.0.3:
version "5.0.3"
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
+ resolved "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz"
integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
dependencies:
domelementtype "^2.3.0"
dompurify@3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.0.3.tgz#4b115d15a091ddc96f232bcef668550a2f6f1430"
+ resolved "https://registry.npmjs.org/dompurify/-/dompurify-3.0.3.tgz"
integrity sha512-axQ9zieHLnAnHh0sfAamKYiqXMJAVwu+LM/alQ7WDagoWessyWvMSFyW65CqF3owufNu8HBcE4cM2Vflu7YWcQ==
domutils@^3.0.1:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
+ resolved "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz"
integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
dependencies:
dom-serializer "^2.0.0"
@@ -7766,7 +7518,7 @@ domutils@^3.0.1:
dot-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751"
+ resolved "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz"
integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==
dependencies:
no-case "^3.0.4"
@@ -7774,71 +7526,71 @@ dot-case@^3.0.4:
dot-prop@^4.1.0:
version "4.2.1"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4"
+ resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz"
integrity sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==
dependencies:
is-obj "^1.0.0"
dot-prop@^5.1.0, dot-prop@^5.2.0:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
+ resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz"
integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
dependencies:
is-obj "^2.0.0"
dotenv-expand@~10.0.0:
version "10.0.0"
- resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37"
+ resolved "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz"
integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==
-dotenv@16.0.3, dotenv@^16.0.0:
+dotenv@16.0.3:
version "16.0.3"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07"
+ resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz"
integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==
-dotenv@^16.4.5:
+dotenv@^16.0.0, dotenv@^16.4.5:
version "16.4.5"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
+ resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz"
integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==
dotenv@^8.2.0:
version "8.6.0"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b"
+ resolved "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz"
integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==
dotenv@~16.3.1:
version "16.3.2"
- resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.2.tgz#3cb611ce5a63002dbabf7c281bc331f69d28f03f"
+ resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz"
integrity sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==
draftjs-to-html@^0.9.1:
version "0.9.1"
- resolved "https://registry.yarnpkg.com/draftjs-to-html/-/draftjs-to-html-0.9.1.tgz#1c870fbb588d2390204cb4d0ee7e04ad0c709969"
+ resolved "https://registry.npmjs.org/draftjs-to-html/-/draftjs-to-html-0.9.1.tgz"
integrity sha512-fFstE6+IayaVFBEvaFt/wN8vdj8FsTRzij7dy7LI9QIwf5LgfHFi9zSpvCg+feJ2tbYVqHxUkjcibwpsTpgFVQ==
dset@^3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.2.tgz#89c436ca6450398396dc6538ea00abc0c54cd45a"
+ resolved "https://registry.npmjs.org/dset/-/dset-3.1.2.tgz"
integrity sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==
duplexer3@^0.1.4:
version "0.1.5"
- resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e"
+ resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz"
integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==
duplexer@^0.1.1:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
+ resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"
integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
eastasianwidth@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
+ resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"
integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
ecc-jsbn@~0.1.1:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
+ resolved "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==
dependencies:
jsbn "~0.1.0"
@@ -7846,132 +7598,127 @@ ecc-jsbn@~0.1.1:
ee-first@1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+ resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
ejs@^3.1.6, ejs@^3.1.7, ejs@^3.1.8:
version "3.1.10"
- resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b"
+ resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz"
integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==
dependencies:
jake "^10.8.5"
-electron-to-chromium@^1.4.251:
- version "1.4.284"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
- integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
-
-electron-to-chromium@^1.4.431:
- version "1.4.475"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.475.tgz#2fee0e2a70cc1538b94f7f90aabcc436e4dcc827"
- integrity sha512-mTye5u5P98kSJO2n7zYALhpJDmoSQejIGya0iR01GpoRady8eK3bw7YHHnjA1Rfi4ZSLdpuzlAC7Zw+1Zu7Z6A==
-
electron-to-chromium@^1.4.668:
version "1.4.778"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.778.tgz#1e429f3f9cf572936693a898c0527adf6123ef76"
+ resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.778.tgz"
integrity sha512-C6q/xcUJf/2yODRxAVCfIk4j3y3LMsD0ehiE2RQNV2cxc8XU62gR6vvYh3+etSUzlgTfil+qDHI1vubpdf0TOA==
+electron-to-chromium@^1.5.4:
+ version "1.5.15"
+ resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.15.tgz"
+ integrity sha512-Z4rIDoImwEJW+YYKnPul4DzqsWVqYetYVN3XqDmRpgV0mjz0hYTaeeh+8/9CL1bk3AHYmF4freW/NTiVoXA2gA==
+
elegant-spinner@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e"
+ resolved "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz"
integrity sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==
elkjs@^0.8.2:
version "0.8.2"
- resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.8.2.tgz#c37763c5a3e24e042e318455e0147c912a7c248e"
+ resolved "https://registry.npmjs.org/elkjs/-/elkjs-0.8.2.tgz"
integrity sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ==
emittery@^0.13.1:
version "0.13.1"
- resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad"
+ resolved "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz"
integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==
emoji-regex@^10.3.0:
version "10.3.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23"
+ resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz"
integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==
emoji-regex@^7.0.1:
version "7.0.3"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
+ resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"
integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==
emoji-regex@^8.0.0:
version "8.0.0"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
emoji-regex@^9.2.2:
version "9.2.2"
- resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
+ resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz"
integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
emojis-list@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
+ resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz"
integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
encodeurl@~1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+ resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
encoding@^0.1.12, encoding@^0.1.13:
version "0.1.13"
- resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
+ resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz"
integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
dependencies:
iconv-lite "^0.6.2"
end-of-stream@^1.1.0, end-of-stream@^1.4.1:
version "1.4.4"
- resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
+ resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
dependencies:
once "^1.4.0"
enquirer@^2.3.5, enquirer@^2.3.6, enquirer@~2.3.6:
version "2.3.6"
- resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d"
+ resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"
integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==
dependencies:
ansi-colors "^4.1.1"
entities@^4.2.0, entities@^4.4.0:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+ resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz"
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
env-paths@^2.2.0:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
+ resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz"
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
envinfo@7.8.1:
version "7.8.1"
- resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
+ resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz"
integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
err-code@^2.0.2:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9"
+ resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz"
integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==
error-ex@^1.3.1:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
+ resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
dependencies:
is-arrayish "^0.2.1"
error@^10.4.0:
version "10.4.0"
- resolved "https://registry.yarnpkg.com/error/-/error-10.4.0.tgz#6fcf0fd64bceb1e750f8ed9a3dd880f00e46a487"
+ resolved "https://registry.npmjs.org/error/-/error-10.4.0.tgz"
integrity sha512-YxIFEJuhgcICugOUvRx5th0UM+ActZ9sjY0QJmeVwsQdvosZ7kYzc9QqS0Da3R5iUmgU5meGIxh0xBeZpMVeLw==
es-abstract@^1.19.0, es-abstract@^1.20.4:
version "1.21.0"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.0.tgz#dd1b69ea5bfc3c27199c9753efd4de015102c252"
+ resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.0.tgz"
integrity sha512-GUGtW7eXQay0c+PRq0sGIKSdaBorfVqsCMhGHo4elP7YVqZu9nCZS4UkK4gv71gOWNMra/PaSKD3ao1oWExO0g==
dependencies:
call-bind "^1.0.2"
@@ -8009,19 +7756,19 @@ es-abstract@^1.19.0, es-abstract@^1.20.4:
es-define-property@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845"
+ resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz"
integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==
dependencies:
get-intrinsic "^1.2.4"
es-errors@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
+ resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz"
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
es-get-iterator@^1.1.2:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6"
+ resolved "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz"
integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==
dependencies:
call-bind "^1.0.2"
@@ -8036,7 +7783,7 @@ es-get-iterator@^1.1.2:
es-set-tostringtag@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.0.tgz#b33fdef554fb35a264fe022c1f095f1f2022fa85"
+ resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.0.tgz"
integrity sha512-vZVAIWss0FcR/+a08s6e2/GjGjjYBCZJXDrOnj6l5kJCKhQvJs4cnVqUxkVepIhqHbKHm3uwOvPb8lRcqA3DSg==
dependencies:
get-intrinsic "^1.1.3"
@@ -8044,14 +7791,14 @@ es-set-tostringtag@^2.0.0:
es-shim-unscopables@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
+ resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz"
integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
dependencies:
has "^1.0.3"
es-to-primitive@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
+ resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
dependencies:
is-callable "^1.1.4"
@@ -8060,7 +7807,7 @@ es-to-primitive@^1.2.1:
es6-error@^4.0.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d"
+ resolved "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz"
integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==
esbuild-android-64@0.14.54:
@@ -8080,7 +7827,7 @@ esbuild-darwin-64@0.14.54:
esbuild-darwin-arm64@0.14.54:
version "0.14.54"
- resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz#3f7cdb78888ee05e488d250a2bdaab1fa671bf73"
+ resolved "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz"
integrity sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==
esbuild-freebsd-64@0.14.54:
@@ -8165,7 +7912,7 @@ esbuild-windows-arm64@0.14.54:
esbuild@^0.14.18:
version "0.14.54"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.54.tgz#8b44dcf2b0f1a66fc22459943dccf477535e9aa2"
+ resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.14.54.tgz"
integrity sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==
optionalDependencies:
"@esbuild/linux-loong64" "0.14.54"
@@ -8192,7 +7939,7 @@ esbuild@^0.14.18:
esbuild@~0.18.20:
version "0.18.20"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6"
+ resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz"
integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==
optionalDependencies:
"@esbuild/android-arm" "0.18.20"
@@ -8219,38 +7966,38 @@ esbuild@~0.18.20:
"@esbuild/win32-x64" "0.18.20"
escalade@^3.1.1, escalade@^3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27"
- integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==
+ version "3.2.0"
+ resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz"
+ integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
escape-html@~1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+ resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
+ resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+ resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
escape-string-regexp@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
+ resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz"
integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
escape-string-regexp@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
+ resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz"
integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
escodegen@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.1.0.tgz#ba93bbb7a43986d29d6041f99f5262da773e2e17"
+ resolved "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz"
integrity sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==
dependencies:
esprima "^4.0.1"
@@ -8261,7 +8008,7 @@ escodegen@^2.0.0:
eslint-config-next@13.0.0:
version "13.0.0"
- resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.0.0.tgz#d533ee1dbd6576fd3759ba4db4d5a6c4e039c242"
+ resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.0.0.tgz"
integrity sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==
dependencies:
"@next/eslint-plugin-next" "13.0.0"
@@ -8276,19 +8023,19 @@ eslint-config-next@13.0.0:
eslint-config-prettier@^8.3.0:
version "8.6.0"
- resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz#dec1d29ab728f4fa63061774e1672ac4e363d207"
+ resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz"
integrity sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==
eslint-config-turbo@^1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/eslint-config-turbo/-/eslint-config-turbo-1.13.3.tgz#baadfa978459acd123d5806f2f4124700e225e46"
- integrity sha512-if/QtwEiWZ5b7Bg8yZBPSvS0TeCG2Zvfa/+XBYANS7uSYucjmW+BBC8enJB0PqpB/YLGGOumeo3x7h1Nuba9iw==
+ version "1.13.4"
+ resolved "https://registry.npmjs.org/eslint-config-turbo/-/eslint-config-turbo-1.13.4.tgz"
+ integrity sha512-+we4eWdZlmlEn7LnhXHCIPX/wtujbHCS7XjQM/TN09BHNEl2fZ8id4rHfdfUKIYTSKyy8U/nNyJ0DNoZj5Q8bw==
dependencies:
- eslint-plugin-turbo "1.13.3"
+ eslint-plugin-turbo "1.13.4"
eslint-import-resolver-node@^0.3.6:
version "0.3.6"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
+ resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"
integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
dependencies:
debug "^3.2.7"
@@ -8296,7 +8043,7 @@ eslint-import-resolver-node@^0.3.6:
eslint-import-resolver-typescript@^2.7.1:
version "2.7.1"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751"
+ resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz"
integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==
dependencies:
debug "^4.3.4"
@@ -8307,14 +8054,14 @@ eslint-import-resolver-typescript@^2.7.1:
eslint-module-utils@^2.7.3:
version "2.7.4"
- resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974"
+ resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz"
integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==
dependencies:
debug "^3.2.7"
eslint-plugin-import@^2.26.0:
version "2.26.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b"
+ resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz"
integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
dependencies:
array-includes "^3.1.4"
@@ -8333,7 +8080,7 @@ eslint-plugin-import@^2.26.0:
eslint-plugin-jsx-a11y@^6.5.1:
version "6.6.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff"
+ resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz"
integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==
dependencies:
"@babel/runtime" "^7.18.9"
@@ -8352,12 +8099,12 @@ eslint-plugin-jsx-a11y@^6.5.1:
eslint-plugin-react-hooks@^4.5.0:
version "4.6.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
+ resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz"
integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
eslint-plugin-react@7.31.8:
version "7.31.8"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz#3a4f80c10be1bcbc8197be9e8b641b2a3ef219bf"
+ resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz"
integrity sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==
dependencies:
array-includes "^3.1.5"
@@ -8377,7 +8124,7 @@ eslint-plugin-react@7.31.8:
eslint-plugin-react@^7.31.7:
version "7.31.11"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz#011521d2b16dcf95795df688a4770b4eaab364c8"
+ resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz"
integrity sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==
dependencies:
array-includes "^3.1.6"
@@ -8396,16 +8143,16 @@ eslint-plugin-react@^7.31.7:
semver "^6.3.0"
string.prototype.matchall "^4.0.8"
-eslint-plugin-turbo@1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/eslint-plugin-turbo/-/eslint-plugin-turbo-1.13.3.tgz#0db533867a92457cb9d2be28fe6413389da2e1ab"
- integrity sha512-RjmlnqYsEqnJ+U3M3IS5jLJDjWv5NsvReCpsC61n5pJ4JMHTZ/lU0EIoL1ccuL1L5wP0APzdXdByBxERcPQ+Nw==
+eslint-plugin-turbo@1.13.4:
+ version "1.13.4"
+ resolved "https://registry.npmjs.org/eslint-plugin-turbo/-/eslint-plugin-turbo-1.13.4.tgz"
+ integrity sha512-82GfMzrewI/DJB92Bbch239GWbGx4j1zvjk1lqb06lxIlMPnVwUHVwPbAnLfyLG3JuhLv9whxGkO/q1CL18JTg==
dependencies:
dotenv "16.0.3"
eslint-scope@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
+ resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
dependencies:
esrecurse "^4.3.0"
@@ -8413,29 +8160,29 @@ eslint-scope@^5.1.1:
eslint-utils@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27"
+ resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"
integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==
dependencies:
eslint-visitor-keys "^1.1.0"
eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
+ resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz"
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==
eslint-visitor-keys@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
+ resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
eslint-visitor-keys@^3.3.0:
version "3.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
+ resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
eslint@7.32.0, eslint@^7.32.0:
version "7.32.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d"
+ resolved "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"
integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==
dependencies:
"@babel/code-frame" "7.12.11"
@@ -8481,7 +8228,7 @@ eslint@7.32.0, eslint@^7.32.0:
espree@^7.3.0, espree@^7.3.1:
version "7.3.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
+ resolved "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"
integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
dependencies:
acorn "^7.4.0"
@@ -8490,43 +8237,43 @@ espree@^7.3.0, espree@^7.3.1:
esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+ resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
esquery@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
+ resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
dependencies:
estraverse "^5.1.0"
esrecurse@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
dependencies:
estraverse "^5.2.0"
estraverse@^4.1.1:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+ resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz"
integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+ resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
estree-util-attach-comments@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.1.0.tgz#47d69900588bcbc6bf58c3798803ec5f1f3008de"
+ resolved "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-2.1.0.tgz"
integrity sha512-rJz6I4L0GaXYtHpoMScgDIwM0/Vwbu5shbMeER596rB2D1EWF6+Gj0e0UKzJPZrpoOc87+Q2kgVFHfjAymIqmw==
dependencies:
"@types/estree" "^1.0.0"
estree-util-build-jsx@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.2.0.tgz#d4307bbeee28c14eb4d63b75c9aad28fa61d84f5"
+ resolved "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-2.2.0.tgz"
integrity sha512-apsfRxF9uLrqosApvHVtYZjISPvTJ+lBiIydpC+9wE6cF6ssbhnjyQLqaIjgzGxvC2Hbmec1M7g91PoBayYoQQ==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -8535,12 +8282,12 @@ estree-util-build-jsx@^2.0.0:
estree-util-is-identifier-name@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz#cf07867f42705892718d9d89eb2d85eaa8f0fcb5"
+ resolved "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz"
integrity sha512-rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ==
estree-util-to-js@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/estree-util-to-js/-/estree-util-to-js-1.1.0.tgz#3bd9bb86354063537cc3d81259be2f0d4c3af39f"
+ resolved "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-1.1.0.tgz"
integrity sha512-490lbfCcpLk+ofK6HCgqDfYs4KAfq6QVvDw3+Bm1YoKRgiOjKiKYGAVQE1uwh7zVxBgWhqp4FDtp5SqunpUk1A==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -8549,14 +8296,14 @@ estree-util-to-js@^1.1.0:
estree-util-value-to-estree@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz#1d3125594b4d6680f666644491e7ac1745a3df49"
+ resolved "https://registry.npmjs.org/estree-util-value-to-estree/-/estree-util-value-to-estree-1.3.0.tgz"
integrity sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==
dependencies:
is-plain-obj "^3.0.0"
estree-util-visit@^1.0.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.0.tgz#aa0311a9c2f2aa56e9ae5e8b9d87eac14e4ec8f8"
+ resolved "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.0.tgz"
integrity sha512-wdsoqhWueuJKsh5hqLw3j8lwFqNStm92VcwtAOAny8g/KS/l5Y8RISjR4k5W6skCj3Nirag/WUCMS0Nfy3sgsg==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -8564,47 +8311,47 @@ estree-util-visit@^1.0.0:
estree-walker@^2.0.1:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
+ resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
estree-walker@^3.0.0:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.2.tgz#2d17ff18067683aaf97aed83fe0d300603db9b67"
+ resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.2.tgz"
integrity sha512-C03BvXCQIH/po+PNPONx/zSM9ziPr9weX8xNhYb/IJtdJ9z+L4z9VKPTB+UTHdmhnIopA2kc419ueyVyHVktwA==
esutils@^2.0.2:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+ resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
etag@~1.8.1:
version "1.8.1"
- resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+ resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
eventemitter2@6.4.7:
version "6.4.7"
- resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d"
+ resolved "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.7.tgz"
integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==
eventemitter3@^4.0.4:
version "4.0.7"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
+ resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz"
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
eventemitter3@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
+ resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz"
integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
events@1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
+ resolved "https://registry.npmjs.org/events/-/events-1.1.1.tgz"
integrity sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==
execa@4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a"
+ resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz"
integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==
dependencies:
cross-spawn "^7.0.0"
@@ -8619,7 +8366,7 @@ execa@4.1.0:
execa@5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376"
+ resolved "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz"
integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==
dependencies:
cross-spawn "^7.0.3"
@@ -8634,7 +8381,7 @@ execa@5.0.0:
execa@8.0.1:
version "8.0.1"
- resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c"
+ resolved "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz"
integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==
dependencies:
cross-spawn "^7.0.3"
@@ -8649,7 +8396,7 @@ execa@8.0.1:
execa@^0.7.0:
version "0.7.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
+ resolved "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"
integrity sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==
dependencies:
cross-spawn "^5.0.1"
@@ -8662,7 +8409,7 @@ execa@^0.7.0:
execa@^0.8.0:
version "0.8.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"
+ resolved "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz"
integrity sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==
dependencies:
cross-spawn "^5.0.1"
@@ -8675,7 +8422,7 @@ execa@^0.8.0:
execa@^5.0.0, execa@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
+ resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz"
integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
dependencies:
cross-spawn "^7.0.3"
@@ -8690,36 +8437,24 @@ execa@^5.0.0, execa@^5.1.1:
executable@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c"
+ resolved "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz"
integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==
dependencies:
pify "^2.2.0"
exit@^0.1.2:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
+ resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"
integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==
expand-template@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c"
+ resolved "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz"
integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==
-expect@^29.0.0:
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/expect/-/expect-29.6.2.tgz#7b08e83eba18ddc4a2cf62b5f2d1918f5cd84521"
- integrity sha512-iAErsLxJ8C+S02QbLAwgSGSezLQK+XXRDt8IuFXFpwCNw2ECmzZSmjKcCaFVp5VRMk+WAvz6h6jokzEzBFZEuA==
- dependencies:
- "@jest/expect-utils" "^29.6.2"
- "@types/node" "*"
- jest-get-type "^29.4.3"
- jest-matcher-utils "^29.6.2"
- jest-message-util "^29.6.2"
- jest-util "^29.6.2"
-
-expect@^29.7.0:
+expect@^29.0.0, expect@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc"
+ resolved "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz"
integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==
dependencies:
"@jest/expect-utils" "^29.7.0"
@@ -8730,12 +8465,12 @@ expect@^29.7.0:
exponential-backoff@^3.1.1:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6"
+ resolved "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz"
integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==
express-graphql@^0.12.0:
version "0.12.0"
- resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.12.0.tgz#58deabc309909ca2c9fe2f83f5fbe94429aa23df"
+ resolved "https://registry.npmjs.org/express-graphql/-/express-graphql-0.12.0.tgz"
integrity sha512-DwYaJQy0amdy3pgNtiTDuGGM2BLdj+YO2SgbKoLliCfuHv3VVTt7vNG/ZqK2hRYjtYHE2t2KB705EU94mE64zg==
dependencies:
accepts "^1.3.7"
@@ -8745,7 +8480,7 @@ express-graphql@^0.12.0:
express@^4.17.1, express@^4.17.3:
version "4.19.2"
- resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465"
+ resolved "https://registry.npmjs.org/express/-/express-4.19.2.tgz"
integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==
dependencies:
accepts "~1.3.8"
@@ -8782,19 +8517,19 @@ express@^4.17.1, express@^4.17.3:
extend-shallow@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+ resolved "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"
integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==
dependencies:
is-extendable "^0.1.0"
extend@^3.0.0, extend@~3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+ resolved "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
external-editor@^3.0.3, external-editor@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
+ resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"
integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==
dependencies:
chardet "^0.7.0"
@@ -8803,12 +8538,12 @@ external-editor@^3.0.3, external-editor@^3.1.0:
extract-files@^11.0.0:
version "11.0.0"
- resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a"
+ resolved "https://registry.npmjs.org/extract-files/-/extract-files-11.0.0.tgz"
integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==
extract-zip@2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a"
+ resolved "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz"
integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==
dependencies:
debug "^4.1.1"
@@ -8819,39 +8554,39 @@ extract-zip@2.0.1:
extsprintf@1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
+ resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==
extsprintf@^1.2.0:
version "1.4.1"
- resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07"
+ resolved "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz"
integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==
fake-indexeddb@^3.1.3:
version "3.1.8"
- resolved "https://registry.yarnpkg.com/fake-indexeddb/-/fake-indexeddb-3.1.8.tgz#229e3cff6fa7355aebb3f147b908d2efa4605d70"
+ resolved "https://registry.npmjs.org/fake-indexeddb/-/fake-indexeddb-3.1.8.tgz"
integrity sha512-7umIgcdnDfNcjw0ZaoD6yR2BflngKmPsyzZC+sV2fdttwz5bH6B6CCaNzzD+MURfRg8pvr/aL0trfNx65FLiDg==
dependencies:
realistic-structured-clone "^2.0.1"
fast-decode-uri-component@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz#46f8b6c22b30ff7a81357d4f59abfae938202543"
+ resolved "https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz"
integrity sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==
fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
fast-fifo@^1.1.0, fast-fifo@^1.2.0:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c"
+ resolved "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz"
integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==
-fast-glob@^3.1.1, fast-glob@^3.2.12:
+fast-glob@^3.1.1, fast-glob@^3.2.12, fast-glob@^3.2.9:
version "3.2.12"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80"
+ resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"
integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
@@ -8860,25 +8595,14 @@ fast-glob@^3.1.1, fast-glob@^3.2.12:
merge2 "^1.3.0"
micromatch "^4.0.4"
-fast-glob@^3.2.9:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129"
- integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
- dependencies:
- "@nodelib/fs.stat" "^2.0.2"
- "@nodelib/fs.walk" "^1.2.3"
- glob-parent "^5.1.2"
- merge2 "^1.3.0"
- micromatch "^4.0.4"
-
fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+ resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
fast-json-stringify@^1.21.0:
version "1.21.0"
- resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-1.21.0.tgz#51bc8c6d77d8c7b2cc7e5fa754f7f909f9e1262f"
+ resolved "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-1.21.0.tgz"
integrity sha512-xY6gyjmHN3AK1Y15BCbMpeO9+dea5ePVsp3BouHCdukcx0hOHbXwFhRodhcI0NpZIgDChSeAKkHW9YjKvhwKBA==
dependencies:
ajv "^6.11.0"
@@ -8887,57 +8611,57 @@ fast-json-stringify@^1.21.0:
fast-levenshtein@^2.0.6:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+ resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
fast-levenshtein@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz#37b899ae47e1090e40e3fd2318e4d5f0142ca912"
+ resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz"
integrity sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==
dependencies:
fastest-levenshtein "^1.0.7"
fast-querystring@^1.1.1:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/fast-querystring/-/fast-querystring-1.1.2.tgz#a6d24937b4fc6f791b4ee31dcb6f53aeafb89f53"
+ resolved "https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.2.tgz"
integrity sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==
dependencies:
fast-decode-uri-component "^1.0.1"
fast-url-parser@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/fast-url-parser/-/fast-url-parser-1.1.3.tgz#f4af3ea9f34d8a271cf58ad2b3759f431f0b318d"
+ resolved "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz"
integrity sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==
dependencies:
punycode "^1.3.2"
fastest-levenshtein@^1.0.16, fastest-levenshtein@^1.0.7:
version "1.0.16"
- resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5"
+ resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz"
integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==
fastq@^1.6.0:
- version "1.17.1"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47"
- integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
+ version "1.15.0"
+ resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz"
+ integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
dependencies:
reusify "^1.0.4"
fb-watchman@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c"
+ resolved "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz"
integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==
dependencies:
bser "2.1.1"
fbjs-css-vars@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz#216551136ae02fe255932c3ec8775f18e2c078b8"
+ resolved "https://registry.npmjs.org/fbjs-css-vars/-/fbjs-css-vars-1.0.2.tgz"
integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
fbjs@^3.0.0:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.4.tgz#e1871c6bd3083bac71ff2da868ad5067d37716c6"
+ resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz"
integrity sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==
dependencies:
cross-fetch "^3.1.5"
@@ -8950,26 +8674,26 @@ fbjs@^3.0.0:
fd-slicer@~1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e"
+ resolved "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz"
integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==
dependencies:
pend "~1.2.0"
fetch-retry@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/fetch-retry/-/fetch-retry-4.1.1.tgz#fafe0bb22b54f4d0a9c788dff6dd7f8673ca63f3"
+ resolved "https://registry.npmjs.org/fetch-retry/-/fetch-retry-4.1.1.tgz"
integrity sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==
figures@3.2.0, figures@^3.0.0, figures@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
+ resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"
integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
dependencies:
escape-string-regexp "^1.0.5"
figures@^1.7.0:
version "1.7.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
+ resolved "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz"
integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==
dependencies:
escape-string-regexp "^1.0.5"
@@ -8977,35 +8701,35 @@ figures@^1.7.0:
figures@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
+ resolved "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz"
integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==
dependencies:
escape-string-regexp "^1.0.5"
file-entry-cache@^6.0.1:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
+ resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
dependencies:
flat-cache "^3.0.4"
-filelist@^1.0.4:
+filelist@^1.0.1:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5"
+ resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz"
integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==
dependencies:
minimatch "^5.0.1"
-fill-range@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
- integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
+fill-range@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
dependencies:
to-regex-range "^5.0.1"
finalhandler@1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32"
+ resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz"
integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==
dependencies:
debug "2.6.9"
@@ -9018,7 +8742,7 @@ finalhandler@1.2.0:
find-cache-dir@^3.2.0, find-cache-dir@^3.3.1:
version "3.3.2"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"
+ resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"
integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
dependencies:
commondir "^1.0.1"
@@ -9027,14 +8751,14 @@ find-cache-dir@^3.2.0, find-cache-dir@^3.3.1:
find-up@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
+ resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"
integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==
dependencies:
locate-path "^2.0.0"
find-up@^4.0.0, find-up@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
dependencies:
locate-path "^5.0.0"
@@ -9042,7 +8766,7 @@ find-up@^4.0.0, find-up@^4.1.0:
find-up@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+ resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
dependencies:
locate-path "^6.0.0"
@@ -9050,7 +8774,7 @@ find-up@^5.0.0:
find-yarn-workspace-root2@1.2.16:
version "1.2.16"
- resolved "https://registry.yarnpkg.com/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz#60287009dd2f324f59646bdb4b7610a6b301c2a9"
+ resolved "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz"
integrity sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==
dependencies:
micromatch "^4.0.2"
@@ -9058,21 +8782,21 @@ find-yarn-workspace-root2@1.2.16:
find-yarn-workspace-root@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd"
+ resolved "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz"
integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==
dependencies:
micromatch "^4.0.2"
first-chunk-stream@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70"
+ resolved "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz"
integrity sha512-X8Z+b/0L4lToKYq+lwnKqi9X/Zek0NibLpsJgVsSxpoYq7JtiCtRb5HqKVEjEw/qAb/4AKKRLOwwKHlWNpm2Eg==
dependencies:
readable-stream "^2.0.2"
flat-cache@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
+ resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"
integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
dependencies:
flatted "^3.1.0"
@@ -9080,39 +8804,39 @@ flat-cache@^3.0.4:
flat@^5.0.2:
version "5.0.2"
- resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
+ resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz"
integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
flatted@^3.1.0:
version "3.2.7"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787"
+ resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz"
integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
flexsearch@^0.7.21:
version "0.7.31"
- resolved "https://registry.yarnpkg.com/flexsearch/-/flexsearch-0.7.31.tgz#065d4110b95083110b9b6c762a71a77cc52e4702"
+ resolved "https://registry.npmjs.org/flexsearch/-/flexsearch-0.7.31.tgz"
integrity sha512-XGozTsMPYkm+6b5QL3Z9wQcJjNYxp0CYn3U1gO7dwD6PAqU1SVWZxI9CCg3z+ml3YfqdPnrBehaBrnH2AGKbNA==
focus-visible@^5.2.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/focus-visible/-/focus-visible-5.2.0.tgz#3a9e41fccf587bd25dcc2ef045508284f0a4d6b3"
+ resolved "https://registry.npmjs.org/focus-visible/-/focus-visible-5.2.0.tgz"
integrity sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==
follow-redirects@^1.15.6:
version "1.15.6"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b"
+ resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz"
integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==
for-each@^0.3.3:
version "0.3.3"
- resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"
integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
dependencies:
is-callable "^1.1.3"
foreground-child@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53"
+ resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz"
integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==
dependencies:
cross-spawn "^7.0.0"
@@ -9120,7 +8844,7 @@ foreground-child@^2.0.0:
foreground-child@^3.1.0:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d"
+ resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz"
integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==
dependencies:
cross-spawn "^7.0.0"
@@ -9128,12 +8852,12 @@ foreground-child@^3.1.0:
forever-agent@~0.6.1:
version "0.6.1"
- resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
+ resolved "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==
form-data@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
+ resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz"
integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
dependencies:
asynckit "^0.4.0"
@@ -9142,7 +8866,7 @@ form-data@^4.0.0:
form-data@~2.3.2:
version "2.3.3"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
+ resolved "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"
integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==
dependencies:
asynckit "^0.4.0"
@@ -9151,32 +8875,32 @@ form-data@~2.3.2:
forwarded@0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
+ resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz"
integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
fraction.js@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
+ resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"
integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
fresh@0.5.2:
version "0.5.2"
- resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+ resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
fromentries@^1.2.0:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a"
+ resolved "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz"
integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==
fs-constants@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
+ resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz"
integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
fs-extra@^10.1.0:
version "10.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"
integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
dependencies:
graceful-fs "^4.2.0"
@@ -9185,7 +8909,7 @@ fs-extra@^10.1.0:
fs-extra@^11.1.0, fs-extra@^11.1.1:
version "11.2.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.2.0.tgz#e70e17dfad64232287d01929399e0ea7c86b0e5b"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz"
integrity sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==
dependencies:
graceful-fs "^4.2.0"
@@ -9194,7 +8918,7 @@ fs-extra@^11.1.0, fs-extra@^11.1.1:
fs-extra@^8.1:
version "8.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"
integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
dependencies:
graceful-fs "^4.2.0"
@@ -9203,7 +8927,7 @@ fs-extra@^8.1:
fs-extra@^9.0.1, fs-extra@^9.1.0:
version "9.1.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"
integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
dependencies:
at-least-node "^1.0.0"
@@ -9213,41 +8937,46 @@ fs-extra@^9.0.1, fs-extra@^9.1.0:
fs-minipass@^2.0.0, fs-minipass@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
+ resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz"
integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
dependencies:
minipass "^3.0.0"
fs-minipass@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54"
+ resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz"
integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==
dependencies:
minipass "^7.0.3"
fs.realpath@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+ resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
fsevents@^2.3.2, fsevents@~2.3.2:
version "2.3.2"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
+ resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
fsevents@~2.3.3:
version "2.3.3"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+ resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
-function-bind@^1.1.1, function-bind@^1.1.2:
+function-bind@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
+ integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+
+function-bind@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
function.prototype.name@^1.1.5:
version "1.1.5"
- resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
+ resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"
integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
dependencies:
call-bind "^1.0.2"
@@ -9257,17 +8986,17 @@ function.prototype.name@^1.1.5:
functional-red-black-tree@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
+ resolved "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
functions-have-names@^1.2.2:
version "1.2.3"
- resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
+ resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
gauge@^3.0.0:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395"
+ resolved "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz"
integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==
dependencies:
aproba "^1.0.3 || ^2.0.0"
@@ -9282,7 +9011,7 @@ gauge@^3.0.0:
gauge@^4.0.3:
version "4.0.4"
- resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce"
+ resolved "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz"
integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==
dependencies:
aproba "^1.0.3 || ^2.0.0"
@@ -9296,34 +9025,34 @@ gauge@^4.0.3:
generate-function@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f"
+ resolved "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz"
integrity sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==
dependencies:
is-property "^1.0.2"
gensync@^1.0.0-beta.2:
version "1.0.0-beta.2"
- resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
+ resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
get-caller-file@^2.0.1, get-caller-file@^2.0.5:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
get-east-asian-width@^1.0.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz#5e6ebd9baee6fb8b7b6bd505221065f0cd91f64e"
+ resolved "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz"
integrity sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==
get-func-name@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41"
+ resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz"
integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==
get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
+ resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"
integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
dependencies:
function-bind "^1.1.1"
@@ -9332,7 +9061,7 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
get-intrinsic@^1.2.4:
version "1.2.4"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd"
+ resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz"
integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==
dependencies:
es-errors "^1.3.0"
@@ -9343,12 +9072,12 @@ get-intrinsic@^1.2.4:
get-package-type@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a"
+ resolved "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"
integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==
get-pkg-repo@^4.2.1:
version "4.2.1"
- resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385"
+ resolved "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz"
integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==
dependencies:
"@hutson/parse-repository-url" "^3.0.0"
@@ -9358,51 +9087,51 @@ get-pkg-repo@^4.2.1:
get-port@5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193"
+ resolved "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz"
integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==
get-stdin@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
+ resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"
integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==
get-stream@6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz"
integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==
get-stream@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"
integrity sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==
get-stream@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"
integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==
dependencies:
pump "^3.0.0"
get-stream@^5.0.0, get-stream@^5.1.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz"
integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==
dependencies:
pump "^3.0.0"
get-stream@^6.0.0:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
get-stream@^8.0.1:
version "8.0.1"
- resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
+ resolved "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz"
integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==
get-symbol-description@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
+ resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
dependencies:
call-bind "^1.0.2"
@@ -9410,28 +9139,28 @@ get-symbol-description@^1.0.0:
get-tsconfig@^4.7.2:
version "4.7.2"
- resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce"
+ resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz"
integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==
dependencies:
resolve-pkg-maps "^1.0.0"
getos@^3.2.1:
version "3.2.1"
- resolved "https://registry.yarnpkg.com/getos/-/getos-3.2.1.tgz#0134d1f4e00eb46144c5a9c0ac4dc087cbb27dc5"
+ resolved "https://registry.npmjs.org/getos/-/getos-3.2.1.tgz"
integrity sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==
dependencies:
async "^3.2.0"
getpass@^0.1.1:
version "0.1.7"
- resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
+ resolved "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"
integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==
dependencies:
assert-plus "^1.0.0"
git-raw-commits@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-3.0.0.tgz#5432f053a9744f67e8db03dbc48add81252cfdeb"
+ resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-3.0.0.tgz"
integrity sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==
dependencies:
dargs "^7.0.0"
@@ -9440,7 +9169,7 @@ git-raw-commits@^3.0.0:
git-remote-origin-url@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f"
+ resolved "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz"
integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==
dependencies:
gitconfiglocal "^1.0.0"
@@ -9448,7 +9177,7 @@ git-remote-origin-url@^2.0.0:
git-semver-tags@^5.0.0:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-5.0.1.tgz#db748aa0e43d313bf38dcd68624d8443234e1c15"
+ resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-5.0.1.tgz"
integrity sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA==
dependencies:
meow "^8.1.2"
@@ -9456,7 +9185,7 @@ git-semver-tags@^5.0.0:
git-up@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467"
+ resolved "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz"
integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==
dependencies:
is-ssh "^1.4.0"
@@ -9464,55 +9193,55 @@ git-up@^7.0.0:
git-url-parse@13.1.0, git-url-parse@^13.1.0:
version "13.1.0"
- resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.0.tgz#07e136b5baa08d59fabdf0e33170de425adf07b4"
+ resolved "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz"
integrity sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==
dependencies:
git-up "^7.0.0"
gitconfiglocal@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b"
+ resolved "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz"
integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==
dependencies:
ini "^1.3.2"
github-from-package@0.0.0:
version "0.0.0"
- resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce"
+ resolved "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz"
integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==
github-slugger@^1.5.0:
version "1.5.0"
- resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.5.0.tgz#17891bbc73232051474d68bd867a34625c955f7d"
+ resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz"
integrity sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==
github-slugger@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-2.0.0.tgz#52cf2f9279a21eb6c59dd385b410f0c0adda8f1a"
+ resolved "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz"
integrity sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==
github-username@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/github-username/-/github-username-6.0.0.tgz#d543eced7295102996cd8e4e19050ebdcbe60658"
+ resolved "https://registry.npmjs.org/github-username/-/github-username-6.0.0.tgz"
integrity sha512-7TTrRjxblSI5l6adk9zd+cV5d6i1OrJSo3Vr9xdGqFLBQo0mz5P9eIfKCDJ7eekVGGFLbce0qbPSnktXV2BjDQ==
dependencies:
"@octokit/rest" "^18.0.6"
glob-parent@5.1.2, glob-parent@^5.1.2, glob-parent@~5.1.2:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+ resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
dependencies:
is-glob "^4.0.1"
glob-to-regexp@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+ resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz"
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
glob@7.1.7:
version "7.1.7"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
+ resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
dependencies:
fs.realpath "^1.0.0"
@@ -9524,7 +9253,7 @@ glob@7.1.7:
glob@^10.2.2, glob@^10.3.10:
version "10.3.12"
- resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b"
+ resolved "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz"
integrity sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==
dependencies:
foreground-child "^3.1.0"
@@ -9535,7 +9264,7 @@ glob@^10.2.2, glob@^10.3.10:
glob@^7.0.0, glob@^7.0.5, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0:
version "7.2.3"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+ resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
dependencies:
fs.realpath "^1.0.0"
@@ -9547,7 +9276,7 @@ glob@^7.0.0, glob@^7.0.5, glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, gl
glob@^8.0.1:
version "8.1.0"
- resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
+ resolved "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"
integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
dependencies:
fs.realpath "^1.0.0"
@@ -9558,7 +9287,7 @@ glob@^8.0.1:
glob@^9.2.0:
version "9.3.5"
- resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.5.tgz#ca2ed8ca452781a3009685607fdf025a899dfe21"
+ resolved "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz"
integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==
dependencies:
fs.realpath "^1.0.0"
@@ -9568,28 +9297,28 @@ glob@^9.2.0:
global-dirs@^0.1.0:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
+ resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz"
integrity sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==
dependencies:
ini "^1.3.4"
global-dirs@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485"
+ resolved "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz"
integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==
dependencies:
ini "2.0.0"
global-modules@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
+ resolved "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz"
integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==
dependencies:
global-prefix "^3.0.0"
global-prefix@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
+ resolved "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz"
integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==
dependencies:
ini "^1.3.5"
@@ -9598,26 +9327,26 @@ global-prefix@^3.0.0:
globals@^11.1.0:
version "11.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+ resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.6.0, globals@^13.9.0:
version "13.19.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
+ resolved "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz"
integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
dependencies:
type-fest "^0.20.2"
globalthis@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz"
integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
dependencies:
define-properties "^1.1.3"
globby@11.0.4:
version "11.0.4"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5"
+ resolved "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"
integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==
dependencies:
array-union "^2.1.0"
@@ -9629,7 +9358,7 @@ globby@11.0.4:
globby@11.1.0, globby@^11.0.1, globby@^11.0.3, globby@^11.0.4, globby@^11.1.0:
version "11.1.0"
- resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
+ resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
dependencies:
array-union "^2.1.0"
@@ -9641,19 +9370,19 @@ globby@11.1.0, globby@^11.0.1, globby@^11.0.3, globby@^11.0.4, globby@^11.1.0:
globjoin@^0.1.4:
version "0.1.4"
- resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43"
+ resolved "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz"
integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==
gopd@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz"
integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
dependencies:
get-intrinsic "^1.1.3"
got@^11:
version "11.8.6"
- resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a"
+ resolved "https://registry.npmjs.org/got/-/got-11.8.6.tgz"
integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==
dependencies:
"@sindresorhus/is" "^4.0.0"
@@ -9670,7 +9399,7 @@ got@^11:
got@^9.6.0:
version "9.6.0"
- resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85"
+ resolved "https://registry.npmjs.org/got/-/got-9.6.0.tgz"
integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==
dependencies:
"@sindresorhus/is" "^0.14.0"
@@ -9685,19 +9414,19 @@ got@^9.6.0:
to-readable-stream "^1.0.0"
url-parse-lax "^3.0.0"
-graceful-fs@4.2.11, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.6:
+graceful-fs@4.2.11, graceful-fs@^4.2.11:
version "4.2.11"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
-graceful-fs@^4.1.5, graceful-fs@^4.2.9:
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
+ resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
graphql-config@^4.0.1:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-4.5.0.tgz#257c2338950b8dce295a27f75c5f6c39f8f777b2"
+ resolved "https://registry.npmjs.org/graphql-config/-/graphql-config-4.5.0.tgz"
integrity sha512-x6D0/cftpLUJ0Ch1e5sj1TZn6Wcxx4oMfmhaG9shM0DKajA9iR+j1z86GSTQ19fShbGvrSSvbIQsHku6aQ6BBw==
dependencies:
"@graphql-tools/graphql-file-loader" "^7.3.7"
@@ -9714,7 +9443,7 @@ graphql-config@^4.0.1:
graphql-config@^5.0.2:
version "5.0.3"
- resolved "https://registry.yarnpkg.com/graphql-config/-/graphql-config-5.0.3.tgz#d9aa2954cf47a927f9cb83cdc4e42ae55d0b321e"
+ resolved "https://registry.npmjs.org/graphql-config/-/graphql-config-5.0.3.tgz"
integrity sha512-BNGZaoxIBkv9yy6Y7omvsaBUHOzfFcII3UN++tpH8MGOKFPFkCPZuwx09ggANMt8FgyWP1Od8SWPmrUEZca4NQ==
dependencies:
"@graphql-tools/graphql-file-loader" "^8.0.0"
@@ -9731,7 +9460,7 @@ graphql-config@^5.0.2:
graphql-jit@^0.7.0:
version "0.7.4"
- resolved "https://registry.yarnpkg.com/graphql-jit/-/graphql-jit-0.7.4.tgz#bc8ccf79596d13dff3835902a466f9a5ecc3a8c1"
+ resolved "https://registry.npmjs.org/graphql-jit/-/graphql-jit-0.7.4.tgz"
integrity sha512-kWyHmsQtKMD6xcKDgf4dgPLyIZhviqA6IWGdnA0ElL9wgrIOTxf3eI4c0/U3tnoAU3t09zliVCfDkfIptzYjIA==
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
@@ -9744,7 +9473,7 @@ graphql-jit@^0.7.0:
graphql-request@^6.0.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-6.1.0.tgz#f4eb2107967af3c7a5907eb3131c671eac89be4f"
+ resolved "https://registry.npmjs.org/graphql-request/-/graphql-request-6.1.0.tgz"
integrity sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==
dependencies:
"@graphql-typed-document-node/core" "^3.2.0"
@@ -9752,29 +9481,29 @@ graphql-request@^6.0.0:
graphql-tag@^2.11.0, graphql-tag@^2.2.2:
version "2.12.6"
- resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1"
+ resolved "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz"
integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==
dependencies:
tslib "^2.1.0"
graphql-ws@5.12.1:
version "5.12.1"
- resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.12.1.tgz#c62d5ac54dbd409cc6520b0b39de374b3d59d0dd"
+ resolved "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.12.1.tgz"
integrity sha512-umt4f5NnMK46ChM2coO36PTFhHouBrK9stWWBczERguwYrGnPNxJ9dimU6IyOBfOkC6Izhkg4H8+F51W/8CYDg==
graphql-ws@^5.14.0:
version "5.16.0"
- resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.16.0.tgz#849efe02f384b4332109329be01d74c345842729"
+ resolved "https://registry.npmjs.org/graphql-ws/-/graphql-ws-5.16.0.tgz"
integrity sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==
graphql@^15.6.0:
version "15.8.0"
- resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38"
+ resolved "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz"
integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==
gray-matter@^4.0.3:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798"
+ resolved "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz"
integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==
dependencies:
js-yaml "^3.13.1"
@@ -9784,12 +9513,12 @@ gray-matter@^4.0.3:
grouped-queue@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/grouped-queue/-/grouped-queue-2.0.0.tgz#a2c6713f2171e45db2c300a3a9d7c119d694dac8"
+ resolved "https://registry.npmjs.org/grouped-queue/-/grouped-queue-2.0.0.tgz"
integrity sha512-/PiFUa7WIsl48dUeCvhIHnwNmAAzlI/eHoJl0vu3nsFA366JleY7Ff8EVTplZu5kO0MIdZjKTTnzItL61ahbnw==
handlebars@^4.7.7:
version "4.7.8"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9"
+ resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz"
integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==
dependencies:
minimist "^1.2.5"
@@ -9801,85 +9530,87 @@ handlebars@^4.7.7:
hard-rejection@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883"
+ resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"
integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
has-ansi@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
+ resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"
integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==
dependencies:
ansi-regex "^2.0.0"
has-bigints@^1.0.1, has-bigints@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
+ resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
has-flag@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
+ resolved "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz"
integrity sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==
has-flag@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
+ resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
has-flag@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
has-property-descriptors@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
+ resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"
integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
dependencies:
get-intrinsic "^1.1.1"
has-property-descriptors@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
+ resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz"
integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
dependencies:
es-define-property "^1.0.0"
has-proto@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"
integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
+ resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
has-tostringtag@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
+ resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
dependencies:
has-symbols "^1.0.2"
has-unicode@2.0.1, has-unicode@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
+ resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"
integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
has-yarn@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77"
+ resolved "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz"
integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==
has@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/has/-/has-1.0.4.tgz#2eb2860e000011dae4f1406a86fe80e530fb2ec6"
- integrity sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==
+ version "1.0.3"
+ resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
+ integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+ dependencies:
+ function-bind "^1.1.1"
hash-obj@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/hash-obj/-/hash-obj-4.0.0.tgz#3fafeb0b5f17994441dbe04efbdee82e26b74c8c"
+ resolved "https://registry.npmjs.org/hash-obj/-/hash-obj-4.0.0.tgz"
integrity sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==
dependencies:
is-obj "^3.0.0"
@@ -9888,13 +9619,13 @@ hash-obj@^4.0.0:
hasha@^5.0.0:
version "5.2.2"
- resolved "https://registry.yarnpkg.com/hasha/-/hasha-5.2.2.tgz#a48477989b3b327aea3c04f53096d816d97522a1"
+ resolved "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz"
integrity sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==
dependencies:
is-stream "^2.0.0"
type-fest "^0.8.0"
-hasown@^2.0.0:
+hasown@^2.0.0, hasown@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
@@ -9903,7 +9634,7 @@ hasown@^2.0.0:
hast-util-from-dom@^4.0.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/hast-util-from-dom/-/hast-util-from-dom-4.2.0.tgz#25836ddecc3cc0849d32749c2a7aec03e94b59a7"
+ resolved "https://registry.npmjs.org/hast-util-from-dom/-/hast-util-from-dom-4.2.0.tgz"
integrity sha512-t1RJW/OpJbCAJQeKi3Qrj1cAOLA0+av/iPFori112+0X7R3wng+jxLA+kXec8K4szqPRGI8vPxbbpEYvvpwaeQ==
dependencies:
hastscript "^7.0.0"
@@ -9911,7 +9642,7 @@ hast-util-from-dom@^4.0.0:
hast-util-from-html-isomorphic@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-1.0.0.tgz#592b2bea880d476665b76ca1cf7d1a94925c80ec"
+ resolved "https://registry.npmjs.org/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-1.0.0.tgz"
integrity sha512-Yu480AKeOEN/+l5LA674a+7BmIvtDj24GvOt7MtQWuhzUwlaaRWdEPXAh3Qm5vhuthpAipFb2vTetKXWOjmTvw==
dependencies:
"@types/hast" "^2.0.0"
@@ -9921,7 +9652,7 @@ hast-util-from-html-isomorphic@^1.0.0:
hast-util-from-html@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/hast-util-from-html/-/hast-util-from-html-1.0.2.tgz#2482fd701b2d8270b912b3909d6fb645d4a346cf"
+ resolved "https://registry.npmjs.org/hast-util-from-html/-/hast-util-from-html-1.0.2.tgz"
integrity sha512-LhrTA2gfCbLOGJq2u/asp4kwuG0y6NhWTXiPKP+n0qNukKy7hc10whqqCFfyvIA1Q5U5d0sp9HhNim9gglEH4A==
dependencies:
"@types/hast" "^2.0.0"
@@ -9932,7 +9663,7 @@ hast-util-from-html@^1.0.0:
hast-util-from-parse5@^7.0.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz#c129dd3a24dd8a867ab8a029ca47e27aa54864b7"
+ resolved "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz"
integrity sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ==
dependencies:
"@types/hast" "^2.0.0"
@@ -9946,7 +9677,7 @@ hast-util-from-parse5@^7.0.0:
hast-util-is-element@^2.0.0:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz#fc0b0dc7cef3895e839b8d66979d57b0338c68f3"
+ resolved "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz"
integrity sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==
dependencies:
"@types/hast" "^2.0.0"
@@ -9954,14 +9685,14 @@ hast-util-is-element@^2.0.0:
hast-util-parse-selector@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz#a519e27e8b61bd5a98fad494ed06131ce68d9c3f"
+ resolved "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz"
integrity sha512-AyjlI2pTAZEOeu7GeBPZhROx0RHBnydkQIXlhnFzDi0qfXTmGUWoCYZtomHbrdrheV4VFUlPcfJ6LMF5T6sQzg==
dependencies:
"@types/hast" "^2.0.0"
hast-util-to-estree@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.1.0.tgz#aeac70aad0102ae309570907b3f56a08231d5323"
+ resolved "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-2.1.0.tgz"
integrity sha512-Vwch1etMRmm89xGgz+voWXvVHba2iiMdGMKmaMfYt35rbVtFDq8JNwwAIvi8zHMkO6Gvqo9oTMwJTmzVRfXh4g==
dependencies:
"@types/estree" "^1.0.0"
@@ -9982,7 +9713,7 @@ hast-util-to-estree@^2.0.0:
hast-util-to-text@^3.1.0:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/hast-util-to-text/-/hast-util-to-text-3.1.1.tgz#b7699a75f7a61af6e0befb67660cd78460d96dc6"
+ resolved "https://registry.npmjs.org/hast-util-to-text/-/hast-util-to-text-3.1.1.tgz"
integrity sha512-7S3mOBxACy8syL45hCn3J7rHqYaXkxRfsX6LXEU5Shz4nt4GxdjtMUtG+T6G/ZLUHd7kslFAf14kAN71bz30xA==
dependencies:
"@types/hast" "^2.0.0"
@@ -9991,12 +9722,12 @@ hast-util-to-text@^3.1.0:
hast-util-whitespace@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz#4fc1086467cc1ef5ba20673cb6b03cec3a970f1c"
+ resolved "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz"
integrity sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==
hastscript@^7.0.0:
version "7.2.0"
- resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-7.2.0.tgz#0eafb7afb153d047077fa2a833dc9b7ec604d10b"
+ resolved "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz"
integrity sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==
dependencies:
"@types/hast" "^2.0.0"
@@ -10007,7 +9738,7 @@ hastscript@^7.0.0:
header-case@^2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063"
+ resolved "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz"
integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==
dependencies:
capital-case "^1.0.4"
@@ -10015,62 +9746,62 @@ header-case@^2.0.4:
heap@^0.2.6:
version "0.2.7"
- resolved "https://registry.yarnpkg.com/heap/-/heap-0.2.7.tgz#1e6adf711d3f27ce35a81fe3b7bd576c2260a8fc"
+ resolved "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz"
integrity sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==
hosted-git-info@^2.1.4:
version "2.8.9"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
+ resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
hosted-git-info@^3.0.6:
version "3.0.8"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d"
+ resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz"
integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==
dependencies:
lru-cache "^6.0.0"
hosted-git-info@^4.0.0, hosted-git-info@^4.0.1:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224"
+ resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz"
integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==
dependencies:
lru-cache "^6.0.0"
hosted-git-info@^6.0.0:
version "6.1.1"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-6.1.1.tgz#629442c7889a69c05de604d52996b74fe6f26d58"
+ resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz"
integrity sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==
dependencies:
lru-cache "^7.5.1"
hosted-git-info@^7.0.0:
version "7.0.1"
- resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-7.0.1.tgz#9985fcb2700467fecf7f33a4d4874e30680b5322"
+ resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz"
integrity sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==
dependencies:
lru-cache "^10.0.1"
html-encoding-sniffer@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9"
+ resolved "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz"
integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==
dependencies:
whatwg-encoding "^2.0.0"
html-escaper@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
+ resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
html-tags@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.2.0.tgz#dbb3518d20b726524e4dd43de397eb0a95726961"
+ resolved "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz"
integrity sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==
htmlparser2@^8.0.0:
version "8.0.2"
- resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21"
+ resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz"
integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==
dependencies:
domelementtype "^2.3.0"
@@ -10080,12 +9811,12 @@ htmlparser2@^8.0.0:
http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0, http-cache-semantics@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a"
+ resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz"
integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==
http-call@^5.2.2:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/http-call/-/http-call-5.3.0.tgz#4ded815b13f423de176eb0942d69c43b25b148db"
+ resolved "https://registry.npmjs.org/http-call/-/http-call-5.3.0.tgz"
integrity sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w==
dependencies:
content-type "^1.0.4"
@@ -10097,7 +9828,7 @@ http-call@^5.2.2:
http-errors@1.8.0:
version "1.8.0"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.0.tgz#75d1bbe497e1044f51e4ee9e704a62f28d336507"
+ resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.8.0.tgz"
integrity sha512-4I8r0C5JDhT5VkvI47QktDW75rNlGVsUf/8hzjCC/wkWI/jdTRmBb9aI7erSG82r1bjKY3F6k28WnsVxB1C73A==
dependencies:
depd "~1.1.2"
@@ -10108,7 +9839,7 @@ http-errors@1.8.0:
http-errors@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
+ resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz"
integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
dependencies:
depd "2.0.0"
@@ -10119,12 +9850,12 @@ http-errors@2.0.0:
http-link-header@^0.8.0:
version "0.8.0"
- resolved "https://registry.yarnpkg.com/http-link-header/-/http-link-header-0.8.0.tgz#a22b41a0c9b1e2d8fac1bf1b697c6bd532d5f5e4"
+ resolved "https://registry.npmjs.org/http-link-header/-/http-link-header-0.8.0.tgz"
integrity sha512-qsh/wKe1Mk1vtYEFr+LpQBFWTO1gxZQBdii2D0Umj+IUQ23r5sT088Rhpq4XzpSyIpaX7vwjB8Rrtx8u9JTg+Q==
http-proxy-agent@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
+ resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz"
integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
dependencies:
"@tootallnate/once" "1"
@@ -10133,7 +9864,7 @@ http-proxy-agent@^4.0.1:
http-proxy-agent@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43"
+ resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz"
integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==
dependencies:
"@tootallnate/once" "2"
@@ -10142,7 +9873,7 @@ http-proxy-agent@^5.0.0:
http-proxy-agent@^6.0.0:
version "6.1.1"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-6.1.1.tgz#dc04f1a84e09511740cfbd984a56f86cc42e4277"
+ resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-6.1.1.tgz"
integrity sha512-JRCz+4Whs6yrrIoIlrH+ZTmhrRwtMnmOHsHn8GFEn9O2sVfSE+DAZ3oyyGIKF8tjJEeSJmP89j7aTjVsSqsU0g==
dependencies:
agent-base "^7.1.0"
@@ -10150,7 +9881,7 @@ http-proxy-agent@^6.0.0:
http-proxy-agent@^7.0.0:
version "7.0.2"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz#9a8b1f246866c028509486585f62b8f2c18c270e"
+ resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz"
integrity sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==
dependencies:
agent-base "^7.1.0"
@@ -10158,7 +9889,7 @@ http-proxy-agent@^7.0.0:
http-signature@~1.3.6:
version "1.3.6"
- resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.3.6.tgz#cb6fbfdf86d1c974f343be94e87f7fc128662cf9"
+ resolved "https://registry.npmjs.org/http-signature/-/http-signature-1.3.6.tgz"
integrity sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==
dependencies:
assert-plus "^1.0.0"
@@ -10167,7 +9898,7 @@ http-signature@~1.3.6:
http2-wrapper@^1.0.0-beta.5.2:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d"
+ resolved "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz"
integrity sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==
dependencies:
quick-lru "^5.1.1"
@@ -10175,7 +9906,7 @@ http2-wrapper@^1.0.0-beta.5.2:
https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
+ resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"
integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
dependencies:
agent-base "6"
@@ -10183,7 +9914,7 @@ https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1:
https-proxy-agent@^6.0.0:
version "6.2.1"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-6.2.1.tgz#0965ab47371b3e531cf6794d1eb148710a992ba7"
+ resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-6.2.1.tgz"
integrity sha512-ONsE3+yfZF2caH5+bJlcddtWqNI3Gvs5A38+ngvljxaBiRXRswym2c7yf8UAeFpRFKjFNHIFEHqR/OLAWJzyiA==
dependencies:
agent-base "^7.0.2"
@@ -10191,7 +9922,7 @@ https-proxy-agent@^6.0.0:
https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1:
version "7.0.4"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz#8e97b841a029ad8ddc8731f26595bad868cb4168"
+ resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz"
integrity sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==
dependencies:
agent-base "^7.0.2"
@@ -10199,131 +9930,126 @@ https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1:
human-signals@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3"
+ resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz"
integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==
human-signals@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
+ resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
human-signals@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28"
+ resolved "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz"
integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==
humanize-ms@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
+ resolved "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz"
integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==
dependencies:
ms "^2.0.0"
husky@^5.2.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/husky/-/husky-5.2.0.tgz#fc5e1c2300d34855d47de4753607d00943fc0802"
+ resolved "https://registry.npmjs.org/husky/-/husky-5.2.0.tgz"
integrity sha512-AM8T/auHXRBxlrfPVLKP6jt49GCM2Zz47m8G3FOMsLmTv8Dj/fKVWE0Rh2d4Qrvmy131xEsdQnb3OXRib67PGg==
hyperlinker@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e"
+ resolved "https://registry.npmjs.org/hyperlinker/-/hyperlinker-1.0.0.tgz"
integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ==
iconv-lite@0.4.24, iconv-lite@^0.4.24:
version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
dependencies:
safer-buffer ">= 2.1.2 < 3"
iconv-lite@0.6, iconv-lite@0.6.3, iconv-lite@^0.6.2:
version "0.6.3"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
+ resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
dependencies:
safer-buffer ">= 2.1.2 < 3.0.0"
icss-utils@^5.0.0, icss-utils@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
+ resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
idb-keyval@^5.1.3:
version "5.1.5"
- resolved "https://registry.yarnpkg.com/idb-keyval/-/idb-keyval-5.1.5.tgz#be11174bac0cb756dba4cc86fb36b6cd63f5ce6d"
+ resolved "https://registry.npmjs.org/idb-keyval/-/idb-keyval-5.1.5.tgz"
integrity sha512-J1utxYWQokYjy01LvDQ7WmiAtZCGUSkVi9EIBfUSyLOr/BesnMIxNGASTh9A1LzeISSjSqEPsfFdTss7EE7ofQ==
dependencies:
safari-14-idb-fix "^1.0.6"
ieee754@1.1.13:
version "1.1.13"
- resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
+ resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz"
integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==
ieee754@^1.1.13, ieee754@^1.1.4:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+ resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
ignore-by-default@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"
+ resolved "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz"
integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==
ignore-walk@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-4.0.1.tgz#fc840e8346cf88a3a9380c5b17933cd8f4d39fa3"
+ resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz"
integrity sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==
dependencies:
minimatch "^3.0.4"
ignore-walk@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-5.0.1.tgz#5f199e23e1288f518d90358d461387788a154776"
+ resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz"
integrity sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==
dependencies:
minimatch "^5.0.1"
ignore-walk@^6.0.4:
version "6.0.4"
- resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.4.tgz#89950be94b4f522225eb63a13c56badb639190e9"
+ resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz"
integrity sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==
dependencies:
minimatch "^9.0.0"
ignore@^4.0.6:
version "4.0.6"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
+ resolved "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
-ignore@^5.0.4, ignore@^5.2.0:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
- integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
-
-ignore@^5.1.4, ignore@^5.2.1:
+ignore@^5.0.4, ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.1:
version "5.2.4"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz"
integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
image-ssim@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/image-ssim/-/image-ssim-0.2.0.tgz#83b42c7a2e6e4b85505477fe6917f5dbc56420e5"
+ resolved "https://registry.npmjs.org/image-ssim/-/image-ssim-0.2.0.tgz"
integrity sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==
immutable@^4.0.0:
version "4.2.2"
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.2.2.tgz#2da9ff4384a4330c36d4d1bc88e90f9e0b0ccd16"
+ resolved "https://registry.npmjs.org/immutable/-/immutable-4.2.2.tgz"
integrity sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==
immutable@~3.7.6:
version "3.7.6"
- resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b"
+ resolved "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz"
integrity sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==
import-fresh@^3.0.0, import-fresh@^3.2.1, import-fresh@^3.3.0:
version "3.3.0"
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
+ resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
dependencies:
parent-module "^1.0.0"
@@ -10331,22 +10057,22 @@ import-fresh@^3.0.0, import-fresh@^3.2.1, import-fresh@^3.3.0:
import-from@4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-4.0.0.tgz#2710b8d66817d232e16f4166e319248d3d5492e2"
+ resolved "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz"
integrity sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==
import-lazy@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43"
+ resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz"
integrity sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==
import-lazy@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153"
+ resolved "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz"
integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==
import-local@3.1.0, import-local@^3.0.2:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4"
+ resolved "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz"
integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==
dependencies:
pkg-dir "^4.2.0"
@@ -10354,32 +10080,32 @@ import-local@3.1.0, import-local@^3.0.2:
imurmurhash@^0.1.4:
version "0.1.4"
- resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+ resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
include-media@^1.4.10:
version "1.4.10"
- resolved "https://registry.yarnpkg.com/include-media/-/include-media-1.4.10.tgz#7a311c92c396c808504ec6a5365115d30571f259"
+ resolved "https://registry.npmjs.org/include-media/-/include-media-1.4.10.tgz"
integrity sha512-TymQzKF7oWHbItEcEHOCponZ90lRr1I9QbYeD+qCxXy4Z0/pSpS4Ocz2bq3FMOERlXXrY9Sawsh9GjiObVQA6A==
indent-string@^3.0.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
+ resolved "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz"
integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==
indent-string@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+ resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
infer-owner@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
+ resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz"
integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
inflight@^1.0.4:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
dependencies:
once "^1.3.0"
@@ -10387,27 +10113,27 @@ inflight@^1.0.4:
inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
inherits@2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"
integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
ini@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5"
+ resolved "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz"
integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==
ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@^1.3.8, ini@~1.3.0:
version "1.3.8"
- resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+ resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
init-package-json@5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-5.0.0.tgz#030cf0ea9c84cfc1b0dc2e898b45d171393e4b40"
+ resolved "https://registry.npmjs.org/init-package-json/-/init-package-json-5.0.0.tgz"
integrity sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw==
dependencies:
npm-package-arg "^10.0.0"
@@ -10420,12 +10146,12 @@ init-package-json@5.0.0:
inline-style-parser@0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
+ resolved "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz"
integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
inquirer@^6.3.1:
version "6.5.2"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca"
+ resolved "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz"
integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==
dependencies:
ansi-escapes "^3.2.0"
@@ -10444,7 +10170,7 @@ inquirer@^6.3.1:
inquirer@^7.3.3:
version "7.3.3"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003"
+ resolved "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz"
integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==
dependencies:
ansi-escapes "^4.2.1"
@@ -10463,7 +10189,7 @@ inquirer@^7.3.3:
inquirer@^8.0.0:
version "8.2.5"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8"
+ resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz"
integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==
dependencies:
ansi-escapes "^4.2.1"
@@ -10484,7 +10210,7 @@ inquirer@^8.0.0:
inquirer@^8.2.4:
version "8.2.6"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.6.tgz#733b74888195d8d400a67ac332011b5fae5ea562"
+ resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz"
integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==
dependencies:
ansi-escapes "^4.2.1"
@@ -10505,7 +10231,7 @@ inquirer@^8.2.4:
internal-slot@^1.0.3, internal-slot@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.4.tgz#8551e7baf74a7a6ba5f749cfb16aa60722f0d6f3"
+ resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz"
integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==
dependencies:
get-intrinsic "^1.1.3"
@@ -10514,41 +10240,41 @@ internal-slot@^1.0.3, internal-slot@^1.0.4:
"internmap@1 - 2":
version "2.0.3"
- resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
+ resolved "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz"
integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==
interpret@^1.0.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
+ resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz"
integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
intersection-observer@^0.12.2:
version "0.12.2"
- resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375"
+ resolved "https://registry.npmjs.org/intersection-observer/-/intersection-observer-0.12.2.tgz"
integrity sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==
intl-messageformat-parser@^1.8.1:
version "1.8.1"
- resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz#0eb14c5618333be4c95c409457b66c8c33ddcc01"
+ resolved "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz"
integrity sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==
intl-messageformat@^4.4.0:
version "4.4.0"
- resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-4.4.0.tgz#aa196a4d04b573f4090bc417f982d81de4f74fad"
+ resolved "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-4.4.0.tgz"
integrity sha512-z+Bj2rS3LZSYU4+sNitdHrwnBhr0wO80ZJSW8EzKDBowwUe3Q/UsvgCGjrwa+HPzoGCLEb9HAjfJgo4j2Sac8w==
dependencies:
intl-messageformat-parser "^1.8.1"
invariant@^2.2.4:
version "2.2.4"
- resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
+ resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
dependencies:
loose-envify "^1.0.0"
ip-address@^9.0.5:
version "9.0.5"
- resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a"
+ resolved "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz"
integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==
dependencies:
jsbn "1.1.0"
@@ -10556,12 +10282,12 @@ ip-address@^9.0.5:
ipaddr.js@1.9.1:
version "1.9.1"
- resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"
integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
is-absolute@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576"
+ resolved "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"
integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==
dependencies:
is-relative "^1.0.0"
@@ -10569,12 +10295,12 @@ is-absolute@^1.0.0:
is-alphabetical@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b"
+ resolved "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz"
integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==
is-alphanumerical@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875"
+ resolved "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz"
integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==
dependencies:
is-alphabetical "^2.0.0"
@@ -10582,7 +10308,7 @@ is-alphanumerical@^2.0.0:
is-arguments@^1.0.4, is-arguments@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
+ resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz"
integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
dependencies:
call-bind "^1.0.2"
@@ -10590,7 +10316,7 @@ is-arguments@^1.0.4, is-arguments@^1.1.1:
is-array-buffer@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.0.tgz#d93aaf24dade5e5391e2992e884c378482f078c1"
+ resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.0.tgz"
integrity sha512-TI2hnvT6dPUnn/jARFCJBKL1eeabAfLnKZ2lmW5Uh317s1Ii2IMroL1yMciEk/G+OETykVzlsH6x/L4q/avhgw==
dependencies:
call-bind "^1.0.2"
@@ -10598,7 +10324,7 @@ is-array-buffer@^3.0.0:
is-array-buffer@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.1.tgz#deb1db4fcae48308d54ef2442706c0393997052a"
+ resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz"
integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==
dependencies:
call-bind "^1.0.2"
@@ -10607,31 +10333,31 @@ is-array-buffer@^3.0.1:
is-arrayish@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
+ resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
is-arrayish@^0.3.1:
version "0.3.2"
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
+ resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz"
integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
is-bigint@^1.0.1:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
+ resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"
integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
dependencies:
has-bigints "^1.0.1"
is-binary-path@~2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+ resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
dependencies:
binary-extensions "^2.0.0"
is-boolean-object@^1.1.0:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
+ resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"
integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
dependencies:
call-bind "^1.0.2"
@@ -10639,123 +10365,130 @@ is-boolean-object@^1.1.0:
is-buffer@^2.0.0:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
+ resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz"
integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
is-buffer@~1.1.6:
version "1.1.6"
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
+ resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
version "1.2.7"
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
is-ci@3.0.1, is-ci@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867"
+ resolved "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz"
integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==
dependencies:
ci-info "^3.2.0"
is-ci@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
+ resolved "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"
integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
dependencies:
ci-info "^2.0.0"
-is-core-module@^2.13.0, is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
- version "2.13.1"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384"
- integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==
+is-core-module@^2.13.0:
+ version "2.15.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.1.tgz#a7363a25bee942fefab0de13bf6aa372c82dcc37"
+ integrity sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==
dependencies:
- hasown "^2.0.0"
+ hasown "^2.0.2"
+
+is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
+ version "2.11.0"
+ resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
+ integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
+ dependencies:
+ has "^1.0.3"
is-date-object@^1.0.1, is-date-object@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
+ resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
dependencies:
has-tostringtag "^1.0.0"
is-decimal@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7"
+ resolved "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz"
integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==
is-docker@^2.0.0, is-docker@^2.1.1:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
+ resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz"
integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
is-extendable@^0.1.0:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+ resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
is-extglob@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
is-fullwidth-code-point@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"
integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==
dependencies:
number-is-nan "^1.0.0"
is-fullwidth-code-point@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"
integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==
is-fullwidth-code-point@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
is-fullwidth-code-point@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz"
integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==
is-fullwidth-code-point@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704"
+ resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz"
integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==
dependencies:
get-east-asian-width "^1.0.0"
is-generator-fn@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
+ resolved "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz"
integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
is-generator-function@^1.0.7:
version "1.0.10"
- resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72"
+ resolved "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz"
integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==
dependencies:
has-tostringtag "^1.0.0"
is-glob@4.0.3, is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
+ resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
dependencies:
is-extglob "^2.1.1"
is-hexadecimal@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027"
+ resolved "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz"
integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==
is-installed-globally@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80"
+ resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz"
integrity sha512-ERNhMg+i/XgDwPIPF3u24qpajVreaiSuvpb1Uu0jugw7KKcxGyCX8cgp8P5fwTmAuXku6beDHHECdKArjlg7tw==
dependencies:
global-dirs "^0.1.0"
@@ -10763,7 +10496,7 @@ is-installed-globally@^0.1.0:
is-installed-globally@~0.4.0:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520"
+ resolved "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz"
integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==
dependencies:
global-dirs "^3.0.0"
@@ -10771,139 +10504,139 @@ is-installed-globally@~0.4.0:
is-interactive@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
+ resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz"
integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
is-lambda@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
+ resolved "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz"
integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==
is-lower-case@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-2.0.2.tgz#1c0884d3012c841556243483aa5d522f47396d2a"
+ resolved "https://registry.npmjs.org/is-lower-case/-/is-lower-case-2.0.2.tgz"
integrity sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==
dependencies:
tslib "^2.0.3"
is-map@^2.0.1, is-map@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
+ resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz"
integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
is-negative-zero@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
+ resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
is-npm@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-3.0.0.tgz#ec9147bfb629c43f494cf67936a961edec7e8053"
+ resolved "https://registry.npmjs.org/is-npm/-/is-npm-3.0.0.tgz"
integrity sha512-wsigDr1Kkschp2opC4G3yA6r9EgVA6NjRpWzIi9axXqeIaAATPRJc4uLujXe3Nd9uO8KoDyA4MD6aZSeXTADhA==
is-number-object@^1.0.4:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
+ resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
dependencies:
has-tostringtag "^1.0.0"
is-number@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
is-obj@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
+ resolved "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"
integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==
is-obj@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
+ resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz"
integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
is-obj@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-3.0.0.tgz#b0889f1f9f8cb87e87df53a8d1230a2250f8b9be"
+ resolved "https://registry.npmjs.org/is-obj/-/is-obj-3.0.0.tgz"
integrity sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==
is-observable@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e"
+ resolved "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz"
integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==
dependencies:
symbol-observable "^1.1.0"
is-path-inside@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
+ resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz"
integrity sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==
dependencies:
path-is-inside "^1.0.1"
is-path-inside@^3.0.2:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+ resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
+ resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"
integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
is-plain-obj@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+ resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz"
integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
is-plain-obj@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
+ resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz"
integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==
is-plain-obj@^4.0.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0"
+ resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz"
integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
is-plain-object@^2.0.4:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+ resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
dependencies:
isobject "^3.0.1"
is-plain-object@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
+ resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz"
integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
is-potential-custom-element-name@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
+ resolved "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz"
integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
is-promise@^2.1.0:
version "2.2.2"
- resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
+ resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz"
integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
is-property@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
+ resolved "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"
integrity sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==
is-reference@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.1.tgz#d400f4260f7e55733955e60d361d827eb4d3b831"
+ resolved "https://registry.npmjs.org/is-reference/-/is-reference-3.0.1.tgz"
integrity sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==
dependencies:
"@types/estree" "*"
is-regex@^1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
+ resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
dependencies:
call-bind "^1.0.2"
@@ -10911,86 +10644,86 @@ is-regex@^1.1.4:
is-relative@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"
+ resolved "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"
integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==
dependencies:
is-unc-path "^1.0.0"
is-retry-allowed@^1.1.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
+ resolved "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz"
integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
is-scoped@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/is-scoped/-/is-scoped-2.1.0.tgz#fef0713772658bdf5bee418608267ddae6d3566d"
+ resolved "https://registry.npmjs.org/is-scoped/-/is-scoped-2.1.0.tgz"
integrity sha512-Cv4OpPTHAK9kHYzkzCrof3VJh7H/PrG2MBUMvvJebaaUMbqhm0YAtXnvh0I3Hnj2tMZWwrRROWLSgfJrKqWmlQ==
dependencies:
scoped-regex "^2.0.0"
is-set@^2.0.1, is-set@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
+ resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz"
integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
is-shared-array-buffer@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
+ resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"
integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
dependencies:
call-bind "^1.0.2"
is-ssh@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2"
+ resolved "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz"
integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==
dependencies:
protocols "^2.0.1"
is-stream@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
+ resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
is-stream@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+ resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==
is-stream@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
+ resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
is-stream@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac"
+ resolved "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz"
integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
is-string@^1.0.5, is-string@^1.0.7:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
+ resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
dependencies:
has-tostringtag "^1.0.0"
is-symbol@^1.0.2, is-symbol@^1.0.3:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
+ resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
dependencies:
has-symbols "^1.0.2"
is-text-path@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e"
+ resolved "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz"
integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==
dependencies:
text-extensions "^1.0.0"
is-typed-array@^1.1.10, is-typed-array@^1.1.3, is-typed-array@^1.1.9:
version "1.1.10"
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+ resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz"
integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
dependencies:
available-typed-arrays "^1.0.5"
@@ -11001,48 +10734,48 @@ is-typed-array@^1.1.10, is-typed-array@^1.1.3, is-typed-array@^1.1.9:
is-typedarray@^1.0.0, is-typedarray@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
+ resolved "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
is-unc-path@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d"
+ resolved "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"
integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==
dependencies:
unc-path-regex "^0.1.2"
is-unicode-supported@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
+ resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz"
integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
is-upper-case@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-2.0.2.tgz#f1105ced1fe4de906a5f39553e7d3803fd804649"
+ resolved "https://registry.npmjs.org/is-upper-case/-/is-upper-case-2.0.2.tgz"
integrity sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==
dependencies:
tslib "^2.0.3"
is-utf8@^0.2.0, is-utf8@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
+ resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"
integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==
is-weakmap@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2"
+ resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz"
integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==
is-weakref@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
+ resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
dependencies:
call-bind "^1.0.2"
is-weakset@^2.0.1:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d"
+ resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz"
integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==
dependencies:
call-bind "^1.0.2"
@@ -11050,44 +10783,44 @@ is-weakset@^2.0.1:
is-windows@^1.0.1, is-windows@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+ resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
is-wsl@^2.1.1, is-wsl@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
+ resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz"
integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
dependencies:
is-docker "^2.0.0"
is-yarn-global@^0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232"
+ resolved "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz"
integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==
isarray@0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==
isarray@^1.0.0, isarray@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
isarray@^2.0.5:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz"
integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
isbinaryfile@^4.0.10, isbinaryfile@^4.0.8:
version "4.0.10"
- resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3"
+ resolved "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz"
integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==
isexe@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+ resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
isexe@^3.1.1:
@@ -11097,12 +10830,12 @@ isexe@^3.1.1:
isobject@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"
integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
isomorphic-fetch@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz#0267b005049046d2421207215d45d6a262b8b8b4"
+ resolved "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz"
integrity sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==
dependencies:
node-fetch "^2.6.1"
@@ -11110,7 +10843,7 @@ isomorphic-fetch@^3.0.0:
isomorphic-unfetch@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz#87341d5f4f7b63843d468438128cb087b7c3e98f"
+ resolved "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz"
integrity sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==
dependencies:
node-fetch "^2.6.1"
@@ -11118,34 +10851,34 @@ isomorphic-unfetch@^3.1.0:
isomorphic-ws@5.0.0, isomorphic-ws@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf"
+ resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz"
integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==
isstream@~0.1.2:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
+ resolved "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
istanbul-lib-coverage@3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec"
+ resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz"
integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==
istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3"
+ resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"
integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==
istanbul-lib-hook@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz#8f84c9434888cc6b1d0a9d7092a76d239ebf0cc6"
+ resolved "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz"
integrity sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==
dependencies:
append-transform "^2.0.0"
istanbul-lib-instrument@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d"
+ resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"
integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==
dependencies:
"@babel/core" "^7.7.5"
@@ -11155,7 +10888,7 @@ istanbul-lib-instrument@^4.0.0:
istanbul-lib-instrument@^5.0.4:
version "5.2.1"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d"
+ resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz"
integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==
dependencies:
"@babel/core" "^7.12.3"
@@ -11166,7 +10899,7 @@ istanbul-lib-instrument@^5.0.4:
istanbul-lib-instrument@^6.0.0:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz#71e87707e8041428732518c6fb5211761753fbdf"
+ resolved "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz"
integrity sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==
dependencies:
"@babel/core" "^7.12.3"
@@ -11177,7 +10910,7 @@ istanbul-lib-instrument@^6.0.0:
istanbul-lib-processinfo@^2.0.2:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz#366d454cd0dcb7eb6e0e419378e60072c8626169"
+ resolved "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz"
integrity sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==
dependencies:
archy "^1.0.0"
@@ -11189,7 +10922,7 @@ istanbul-lib-processinfo@^2.0.2:
istanbul-lib-report@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6"
+ resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==
dependencies:
istanbul-lib-coverage "^3.0.0"
@@ -11198,7 +10931,7 @@ istanbul-lib-report@^3.0.0:
istanbul-lib-source-maps@^4.0.0:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551"
+ resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"
integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==
dependencies:
debug "^4.1.1"
@@ -11207,7 +10940,7 @@ istanbul-lib-source-maps@^4.0.0:
istanbul-reports@^3.0.2:
version "3.1.5"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae"
+ resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz"
integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==
dependencies:
html-escaper "^2.0.0"
@@ -11215,7 +10948,7 @@ istanbul-reports@^3.0.2:
istanbul-reports@^3.1.3:
version "3.1.6"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz#2544bcab4768154281a2f0870471902704ccaa1a"
+ resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz"
integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==
dependencies:
html-escaper "^2.0.0"
@@ -11223,7 +10956,7 @@ istanbul-reports@^3.1.3:
jackspeak@^2.3.6:
version "2.3.6"
- resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
+ resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz"
integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
dependencies:
"@isaacs/cliui" "^8.0.2"
@@ -11231,18 +10964,28 @@ jackspeak@^2.3.6:
"@pkgjs/parseargs" "^0.11.0"
jake@^10.8.5:
- version "10.8.7"
- resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f"
- integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==
+ version "10.8.5"
+ resolved "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz"
+ integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==
dependencies:
async "^3.2.3"
chalk "^4.0.2"
- filelist "^1.0.4"
- minimatch "^3.1.2"
+ filelist "^1.0.1"
+ minimatch "^3.0.4"
+
+jest-axe@^9.0.0:
+ version "9.0.0"
+ resolved "https://registry.yarnpkg.com/jest-axe/-/jest-axe-9.0.0.tgz#9794dc0427f9f2c6a5224d30acece6183cefb2f2"
+ integrity sha512-Xt7O0+wIpW31lv0SO1wQZUTyJE7DEmnDEZeTt9/S9L5WUywxrv8BrgvTuQEqujtfaQOcJ70p4wg7UUgK1E2F5g==
+ dependencies:
+ axe-core "4.9.1"
+ chalk "4.1.2"
+ jest-matcher-utils "29.2.2"
+ lodash.merge "4.6.2"
jest-changed-files@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a"
+ resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz"
integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==
dependencies:
execa "^5.0.0"
@@ -11251,7 +10994,7 @@ jest-changed-files@^29.7.0:
jest-circus@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a"
+ resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz"
integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==
dependencies:
"@jest/environment" "^29.7.0"
@@ -11277,7 +11020,7 @@ jest-circus@^29.7.0:
jest-cli@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995"
+ resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz"
integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==
dependencies:
"@jest/core" "^29.7.0"
@@ -11294,7 +11037,7 @@ jest-cli@^29.7.0:
jest-config@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f"
+ resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz"
integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==
dependencies:
"@babel/core" "^7.11.6"
@@ -11320,9 +11063,9 @@ jest-config@^29.7.0:
slash "^3.0.0"
strip-json-comments "^3.1.1"
-"jest-diff@>=29.4.3 < 30", jest-diff@^29.4.1, jest-diff@^29.7.0:
+"jest-diff@>=29.4.3 < 30", jest-diff@^29.2.1, jest-diff@^29.4.1, jest-diff@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a"
+ resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz"
integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==
dependencies:
chalk "^4.0.0"
@@ -11330,26 +11073,16 @@ jest-config@^29.7.0:
jest-get-type "^29.6.3"
pretty-format "^29.7.0"
-jest-diff@^29.6.2:
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.6.2.tgz#c36001e5543e82a0805051d3ceac32e6825c1c46"
- integrity sha512-t+ST7CB9GX5F2xKwhwCf0TAR17uNDiaPTZnVymP9lw0lssa9vG+AFyDZoeIHStU3WowFFwT+ky+er0WVl2yGhA==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^29.4.3"
- jest-get-type "^29.4.3"
- pretty-format "^29.6.2"
-
jest-docblock@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a"
+ resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz"
integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==
dependencies:
detect-newline "^3.0.0"
jest-each@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1"
+ resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz"
integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==
dependencies:
"@jest/types" "^29.6.3"
@@ -11360,7 +11093,7 @@ jest-each@^29.7.0:
jest-environment-jsdom@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz#d206fa3551933c3fd519e5dfdb58a0f5139a837f"
+ resolved "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz"
integrity sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==
dependencies:
"@jest/environment" "^29.7.0"
@@ -11374,7 +11107,7 @@ jest-environment-jsdom@^29.7.0:
jest-environment-node@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376"
+ resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz"
integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==
dependencies:
"@jest/environment" "^29.7.0"
@@ -11384,19 +11117,14 @@ jest-environment-node@^29.7.0:
jest-mock "^29.7.0"
jest-util "^29.7.0"
-jest-get-type@^29.4.3:
- version "29.4.3"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5"
- integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==
-
-jest-get-type@^29.6.3:
+jest-get-type@^29.2.0, jest-get-type@^29.6.3:
version "29.6.3"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1"
+ resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz"
integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==
jest-haste-map@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104"
+ resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz"
integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==
dependencies:
"@jest/types" "^29.6.3"
@@ -11415,25 +11143,25 @@ jest-haste-map@^29.7.0:
jest-leak-detector@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728"
+ resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz"
integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==
dependencies:
jest-get-type "^29.6.3"
pretty-format "^29.7.0"
-jest-matcher-utils@^29.6.2:
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.6.2.tgz#39de0be2baca7a64eacb27291f0bd834fea3a535"
- integrity sha512-4LiAk3hSSobtomeIAzFTe+N8kL6z0JtF3n6I4fg29iIW7tt99R7ZcIFW34QkX+DuVrf+CUe6wuVOpm7ZKFJzZQ==
+jest-matcher-utils@29.2.2:
+ version "29.2.2"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.2.2.tgz#9202f8e8d3a54733266784ce7763e9a08688269c"
+ integrity sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==
dependencies:
chalk "^4.0.0"
- jest-diff "^29.6.2"
- jest-get-type "^29.4.3"
- pretty-format "^29.6.2"
+ jest-diff "^29.2.1"
+ jest-get-type "^29.2.0"
+ pretty-format "^29.2.1"
jest-matcher-utils@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12"
+ resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz"
integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==
dependencies:
chalk "^4.0.0"
@@ -11441,24 +11169,9 @@ jest-matcher-utils@^29.7.0:
jest-get-type "^29.6.3"
pretty-format "^29.7.0"
-jest-message-util@^29.6.2:
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.6.2.tgz#af7adc2209c552f3f5ae31e77cf0a261f23dc2bb"
- integrity sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==
- dependencies:
- "@babel/code-frame" "^7.12.13"
- "@jest/types" "^29.6.1"
- "@types/stack-utils" "^2.0.0"
- chalk "^4.0.0"
- graceful-fs "^4.2.9"
- micromatch "^4.0.4"
- pretty-format "^29.6.2"
- slash "^3.0.0"
- stack-utils "^2.0.3"
-
jest-message-util@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3"
+ resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz"
integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==
dependencies:
"@babel/code-frame" "^7.12.13"
@@ -11473,7 +11186,7 @@ jest-message-util@^29.7.0:
jest-mock@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347"
+ resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz"
integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==
dependencies:
"@jest/types" "^29.6.3"
@@ -11482,17 +11195,17 @@ jest-mock@^29.7.0:
jest-pnp-resolver@^1.2.2:
version "1.2.3"
- resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e"
+ resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz"
integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==
jest-regex-util@^29.6.3:
version "29.6.3"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52"
+ resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz"
integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==
jest-resolve-dependencies@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428"
+ resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz"
integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==
dependencies:
jest-regex-util "^29.6.3"
@@ -11500,7 +11213,7 @@ jest-resolve-dependencies@^29.7.0:
jest-resolve@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30"
+ resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz"
integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==
dependencies:
chalk "^4.0.0"
@@ -11515,7 +11228,7 @@ jest-resolve@^29.7.0:
jest-runner@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e"
+ resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz"
integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==
dependencies:
"@jest/console" "^29.7.0"
@@ -11542,7 +11255,7 @@ jest-runner@^29.7.0:
jest-runtime@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817"
+ resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz"
integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==
dependencies:
"@jest/environment" "^29.7.0"
@@ -11570,7 +11283,7 @@ jest-runtime@^29.7.0:
jest-snapshot@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5"
+ resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz"
integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==
dependencies:
"@babel/core" "^7.11.6"
@@ -11594,21 +11307,9 @@ jest-snapshot@^29.7.0:
pretty-format "^29.7.0"
semver "^7.5.3"
-jest-util@^29.0.0, jest-util@^29.6.2:
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.6.2.tgz#8a052df8fff2eebe446769fd88814521a517664d"
- integrity sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==
- dependencies:
- "@jest/types" "^29.6.1"
- "@types/node" "*"
- chalk "^4.0.0"
- ci-info "^3.2.0"
- graceful-fs "^4.2.9"
- picomatch "^2.2.3"
-
-jest-util@^29.7.0:
+jest-util@^29.0.0, jest-util@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc"
+ resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz"
integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==
dependencies:
"@jest/types" "^29.6.3"
@@ -11620,7 +11321,7 @@ jest-util@^29.7.0:
jest-validate@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c"
+ resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz"
integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==
dependencies:
"@jest/types" "^29.6.3"
@@ -11632,7 +11333,7 @@ jest-validate@^29.7.0:
jest-watcher@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2"
+ resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz"
integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==
dependencies:
"@jest/test-result" "^29.7.0"
@@ -11646,7 +11347,7 @@ jest-watcher@^29.7.0:
jest-worker@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a"
+ resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz"
integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==
dependencies:
"@types/node" "*"
@@ -11656,7 +11357,7 @@ jest-worker@^29.7.0:
jest@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613"
+ resolved "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz"
integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==
dependencies:
"@jest/core" "^29.7.0"
@@ -11666,47 +11367,47 @@ jest@^29.7.0:
jiti@1.17.1:
version "1.17.1"
- resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.17.1.tgz#264daa43ee89a03e8be28c3d712ccc4eb9f1e8ed"
+ resolved "https://registry.npmjs.org/jiti/-/jiti-1.17.1.tgz"
integrity sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==
jiti@^1.17.1:
version "1.19.3"
- resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.19.3.tgz#ef554f76465b3c2b222dc077834a71f0d4a37569"
+ resolved "https://registry.npmjs.org/jiti/-/jiti-1.19.3.tgz"
integrity sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==
jiti@^1.18.2:
version "1.21.0"
- resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d"
+ resolved "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz"
integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==
jmespath@0.16.0:
version "0.16.0"
- resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.16.0.tgz#b15b0a85dfd4d930d43e69ed605943c802785076"
+ resolved "https://registry.npmjs.org/jmespath/-/jmespath-0.16.0.tgz"
integrity sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==
jose@^4.11.4:
version "4.15.5"
- resolved "https://registry.yarnpkg.com/jose/-/jose-4.15.5.tgz#6475d0f467ecd3c630a1b5dadd2735a7288df706"
+ resolved "https://registry.npmjs.org/jose/-/jose-4.15.5.tgz"
integrity sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==
jose@^5.0.0:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/jose/-/jose-5.3.0.tgz#61dadf6399e0141d621ad18c1b36a0d6ab17a972"
+ resolved "https://registry.npmjs.org/jose/-/jose-5.3.0.tgz"
integrity sha512-IChe9AtAE79ru084ow8jzkN2lNrG3Ntfiv65Cvj9uOCE2m5LNsdHG+9EbxWxAoWRF9TgDOqLN5jm08++owDVRg==
jpeg-js@^0.4.1, jpeg-js@^0.4.3:
version "0.4.4"
- resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.4.tgz#a9f1c6f1f9f0fa80cdb3484ed9635054d28936aa"
+ resolved "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz"
integrity sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==
js-library-detector@^6.4.0:
version "6.6.0"
- resolved "https://registry.yarnpkg.com/js-library-detector/-/js-library-detector-6.6.0.tgz#b531a4784f8242d87f68f6f3eafc771a0650fb9d"
+ resolved "https://registry.npmjs.org/js-library-detector/-/js-library-detector-6.6.0.tgz"
integrity sha512-z8OkDmXALZ22bIzBtIW8cpJ39MV93/Zu1rWrFdhsNw+sity2rOLaGT2kfWWQ6mnRTWs4ddONY5kiroA8e98Gvg==
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+ resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
js-yaml@4.1.0, js-yaml@^4.0.0, js-yaml@^4.1.0:
@@ -11718,7 +11419,7 @@ js-yaml@4.1.0, js-yaml@^4.0.0, js-yaml@^4.1.0:
js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.14.1:
version "3.14.1"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
+ resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
dependencies:
argparse "^1.0.7"
@@ -11726,17 +11427,17 @@ js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.14.1:
jsbn@1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040"
+ resolved "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz"
integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==
jsbn@~0.1.0:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
+ resolved "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==
jsdom@^20.0.0:
version "20.0.3"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-20.0.3.tgz#886a41ba1d4726f67a8858028c99489fed6ad4db"
+ resolved "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz"
integrity sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==
dependencies:
abab "^2.0.6"
@@ -11768,57 +11469,57 @@ jsdom@^20.0.0:
jsesc@^2.5.1:
version "2.5.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
+ resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
json-buffer@3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
+ resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz"
integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==
json-buffer@3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
+ resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz"
integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
json-parse-better-errors@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
+ resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
+ resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
json-parse-even-better-errors@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz#02bb29fb5da90b5444581749c22cedd3597c6cb0"
+ resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz"
integrity sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==
json-schema-traverse@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+ resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
json-schema-traverse@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+ resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
json-schema@0.4.0, json-schema@^0.4.0:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5"
+ resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"
integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
json-stable-stringify-without-jsonify@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+ resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
json-stable-stringify@^1.0.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz#52d4361b47d49168bcc4e564189a42e5a7439454"
+ resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz"
integrity sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==
dependencies:
call-bind "^1.0.5"
@@ -11828,17 +11529,17 @@ json-stable-stringify@^1.0.1:
json-stringify-nice@^1.1.4:
version "1.1.4"
- resolved "https://registry.yarnpkg.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67"
+ resolved "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz"
integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw==
json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
+ resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
json-to-pretty-yaml@^1.2.2:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz#f4cd0bd0a5e8fe1df25aaf5ba118b099fd992d5b"
+ resolved "https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz"
integrity sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A==
dependencies:
remedial "^1.0.7"
@@ -11846,31 +11547,31 @@ json-to-pretty-yaml@^1.2.2:
json5@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
+ resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz"
integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
dependencies:
minimist "^1.2.0"
json5@^2.1.2, json5@^2.2.2, json5@^2.2.3:
version "2.2.3"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
jsonc-parser@3.2.0, jsonc-parser@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
+ resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz"
integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
jsonfile@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
+ resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"
integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==
optionalDependencies:
graceful-fs "^4.1.6"
jsonfile@^6.0.1:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
+ resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz"
integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
dependencies:
universalify "^2.0.0"
@@ -11879,17 +11580,17 @@ jsonfile@^6.0.1:
jsonify@^0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978"
+ resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz"
integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==
jsonparse@^1.2.0, jsonparse@^1.3.1:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
+ resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"
integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
jsprim@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-2.0.2.tgz#77ca23dbcd4135cd364800d22ff82c2185803d4d"
+ resolved "https://registry.npmjs.org/jsprim/-/jsprim-2.0.2.tgz"
integrity sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==
dependencies:
assert-plus "1.0.0"
@@ -11899,7 +11600,7 @@ jsprim@^2.0.2:
"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2:
version "3.3.3"
- resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea"
+ resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz"
integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==
dependencies:
array-includes "^3.1.5"
@@ -11907,109 +11608,109 @@ jsprim@^2.0.2:
just-diff-apply@^5.2.0:
version "5.5.0"
- resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-5.5.0.tgz#771c2ca9fa69f3d2b54e7c3f5c1dfcbcc47f9f0f"
+ resolved "https://registry.npmjs.org/just-diff-apply/-/just-diff-apply-5.5.0.tgz"
integrity sha512-OYTthRfSh55WOItVqwpefPtNt2VdKsq5AnAK6apdtR6yCH8pr0CmSr710J0Mf+WdQy7K/OzMy7K2MgAfdQURDw==
just-diff@^5.0.1:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/just-diff/-/just-diff-5.2.0.tgz#60dca55891cf24cd4a094e33504660692348a241"
+ resolved "https://registry.npmjs.org/just-diff/-/just-diff-5.2.0.tgz"
integrity sha512-6ufhP9SHjb7jibNFrNxyFZ6od3g+An6Ai9mhGRvcYe8UJlH0prseN64M+6ZBBUoKYHZsitDP42gAJ8+eVWr3lw==
katex@^0.13.0:
version "0.13.24"
- resolved "https://registry.yarnpkg.com/katex/-/katex-0.13.24.tgz#fe55455eb455698cb24b911a353d16a3c855d905"
+ resolved "https://registry.npmjs.org/katex/-/katex-0.13.24.tgz"
integrity sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w==
dependencies:
commander "^8.0.0"
katex@^0.16.0, katex@^0.16.7:
version "0.16.8"
- resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.8.tgz#89b453f40e8557f423f31a1009e9298dd99d5ceb"
+ resolved "https://registry.npmjs.org/katex/-/katex-0.16.8.tgz"
integrity sha512-ftuDnJbcbOckGY11OO+zg3OofESlbR5DRl2cmN8HeWeeFIV7wTXvAOx8kEjZjobhA+9wh2fbKeO6cdcA9Mnovg==
dependencies:
commander "^8.3.0"
keyv@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9"
+ resolved "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz"
integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==
dependencies:
json-buffer "3.0.0"
keyv@^4.0.0:
version "4.5.2"
- resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56"
+ resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz"
integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==
dependencies:
json-buffer "3.0.1"
khroma@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.0.0.tgz#7577de98aed9f36c7a474c4d453d94c0d6c6588b"
+ resolved "https://registry.npmjs.org/khroma/-/khroma-2.0.0.tgz"
integrity sha512-2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g==
kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
version "6.0.3"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
kleur@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
+ resolved "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
kleur@^4.0.3:
version "4.1.5"
- resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
+ resolved "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz"
integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
klona@^2.0.4:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.6.tgz#85bffbf819c03b2f53270412420a4555ef882e22"
+ resolved "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz"
integrity sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==
known-css-properties@^0.26.0:
version "0.26.0"
- resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.26.0.tgz#008295115abddc045a9f4ed7e2a84dc8b3a77649"
+ resolved "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz"
integrity sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==
language-subtag-registry@^0.3.20:
version "0.3.22"
- resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d"
+ resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz"
integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==
language-tags@^1.0.5:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.7.tgz#41cc248730f3f12a452c2e2efe32bc0bbce67967"
+ resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.7.tgz"
integrity sha512-bSytju1/657hFjgUzPAPqszxH62ouE8nQFoFaVlIQfne4wO/wXC9A4+m8jYve7YBBvi59eq0SUpcshvG8h5Usw==
dependencies:
language-subtag-registry "^0.3.20"
latest-version@5.1.0, latest-version@^5.0.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face"
+ resolved "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz"
integrity sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==
dependencies:
package-json "^6.3.0"
layout-base@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-1.0.2.tgz#1291e296883c322a9dd4c5dd82063721b53e26e2"
+ resolved "https://registry.npmjs.org/layout-base/-/layout-base-1.0.2.tgz"
integrity sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==
layout-base@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-2.0.1.tgz#d0337913586c90f9c2c075292069f5c2da5dd285"
+ resolved "https://registry.npmjs.org/layout-base/-/layout-base-2.0.1.tgz"
integrity sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==
lazy-ass@^1.6.0:
version "1.6.0"
- resolved "https://registry.yarnpkg.com/lazy-ass/-/lazy-ass-1.6.0.tgz#7999655e8646c17f089fdd187d150d3324d54513"
+ resolved "https://registry.npmjs.org/lazy-ass/-/lazy-ass-1.6.0.tgz"
integrity sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==
lerna@^8.0.0:
version "8.1.2"
- resolved "https://registry.yarnpkg.com/lerna/-/lerna-8.1.2.tgz#441e8078d0b68557b4ef5b33202a16a6bc2a50d3"
+ resolved "https://registry.npmjs.org/lerna/-/lerna-8.1.2.tgz"
integrity sha512-RCyBAn3XsqqvHbz3TxLfD7ylqzCi1A2UJnFEZmhURgx589vM3qYWQa/uOMeEEf565q6cAdtmulITciX1wgkAtw==
dependencies:
"@lerna/create" "8.1.2"
@@ -12089,12 +11790,12 @@ lerna@^8.0.0:
leven@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
+ resolved "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
levn@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+ resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
dependencies:
prelude-ls "^1.2.1"
@@ -12102,7 +11803,7 @@ levn@^0.4.1:
libnpmaccess@7.0.2:
version "7.0.2"
- resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-7.0.2.tgz#7f056c8c933dd9c8ba771fa6493556b53c5aac52"
+ resolved "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-7.0.2.tgz"
integrity sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw==
dependencies:
npm-package-arg "^10.1.0"
@@ -12110,7 +11811,7 @@ libnpmaccess@7.0.2:
libnpmpublish@7.3.0:
version "7.3.0"
- resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-7.3.0.tgz#2ceb2b36866d75a6cd7b4aa748808169f4d17e37"
+ resolved "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-7.3.0.tgz"
integrity sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg==
dependencies:
ci-info "^3.6.1"
@@ -12124,7 +11825,7 @@ libnpmpublish@7.3.0:
lighthouse-logger@1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz#b76d56935e9c137e86a04741f6bb9b2776e886ca"
+ resolved "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz"
integrity sha512-wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw==
dependencies:
debug "^2.6.8"
@@ -12132,7 +11833,7 @@ lighthouse-logger@1.2.0:
lighthouse-logger@^1.0.0, lighthouse-logger@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz#ba6303e739307c4eee18f08249524e7dafd510db"
+ resolved "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.3.0.tgz"
integrity sha512-BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==
dependencies:
debug "^2.6.9"
@@ -12140,12 +11841,12 @@ lighthouse-logger@^1.0.0, lighthouse-logger@^1.3.0:
lighthouse-stack-packs@^1.7.0:
version "1.9.0"
- resolved "https://registry.yarnpkg.com/lighthouse-stack-packs/-/lighthouse-stack-packs-1.9.0.tgz#2353aaab497b01ea7679a1cbcb04ea234f374211"
+ resolved "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.9.0.tgz"
integrity sha512-xV6thXsxoHWgIluhLhp4zQ09c0T2zZNIDXoKy0emRoD2xCGJAFxoabRdyZpY0VnKwW8evMNXnMdPZtukKk2lhA==
lighthouse@9.3.0:
version "9.3.0"
- resolved "https://registry.yarnpkg.com/lighthouse/-/lighthouse-9.3.0.tgz#97210a56be01eb7cce1f618a3f9131fb8806c1ae"
+ resolved "https://registry.npmjs.org/lighthouse/-/lighthouse-9.3.0.tgz"
integrity sha512-jooRAn9LQYk/KgALmwd9fPcmfGecVnd15pr7Ya4pZ1mhG9SKgVOIWwj8cjxZlWATrMV31ySwkX37dw/Jepm9gw==
dependencies:
axe-core "4.3.5"
@@ -12180,27 +11881,27 @@ lighthouse@9.3.0:
lilconfig@3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.0.0.tgz#f8067feb033b5b74dab4602a5f5029420be749bc"
+ resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz"
integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==
lilconfig@^2.0.4:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4"
+ resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz"
integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==
lines-and-columns@^1.1.6:
version "1.2.4"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
+ resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
lines-and-columns@~2.0.3:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.4.tgz#d00318855905d2660d8c0822e3f5a4715855fc42"
+ resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz"
integrity sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==
lint-staged@^15.2.0:
version "15.2.0"
- resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.0.tgz#3111534ca58096a3c8f70b044b6e7fe21b36f859"
+ resolved "https://registry.npmjs.org/lint-staged/-/lint-staged-15.2.0.tgz"
integrity sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ==
dependencies:
chalk "5.3.0"
@@ -12216,12 +11917,12 @@ lint-staged@^15.2.0:
listr-silent-renderer@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"
+ resolved "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz"
integrity sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==
listr-update-renderer@^0.5.0:
version "0.5.0"
- resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2"
+ resolved "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz"
integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==
dependencies:
chalk "^1.1.3"
@@ -12235,7 +11936,7 @@ listr-update-renderer@^0.5.0:
listr-verbose-renderer@^0.5.0:
version "0.5.0"
- resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db"
+ resolved "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz"
integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==
dependencies:
chalk "^2.4.1"
@@ -12245,7 +11946,7 @@ listr-verbose-renderer@^0.5.0:
listr2@8.0.0:
version "8.0.0"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.0.0.tgz#aa7c230995f8ce378585f7c96c0c6d1cefa4700d"
+ resolved "https://registry.npmjs.org/listr2/-/listr2-8.0.0.tgz"
integrity sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg==
dependencies:
cli-truncate "^4.0.0"
@@ -12257,7 +11958,7 @@ listr2@8.0.0:
listr2@^3.8.3:
version "3.14.0"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e"
+ resolved "https://registry.npmjs.org/listr2/-/listr2-3.14.0.tgz"
integrity sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==
dependencies:
cli-truncate "^2.1.0"
@@ -12271,7 +11972,7 @@ listr2@^3.8.3:
listr2@^4.0.5:
version "4.0.5"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5"
+ resolved "https://registry.npmjs.org/listr2/-/listr2-4.0.5.tgz"
integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==
dependencies:
cli-truncate "^2.1.0"
@@ -12285,7 +11986,7 @@ listr2@^4.0.5:
listr@^0.14.3:
version "0.14.3"
- resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586"
+ resolved "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz"
integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==
dependencies:
"@samverschueren/stream-to-observable" "^0.3.0"
@@ -12300,7 +12001,7 @@ listr@^0.14.3:
load-json-file@6.2.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1"
+ resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz"
integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ==
dependencies:
graceful-fs "^4.1.15"
@@ -12310,7 +12011,7 @@ load-json-file@6.2.0:
load-json-file@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
+ resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"
integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==
dependencies:
graceful-fs "^4.1.2"
@@ -12320,7 +12021,7 @@ load-json-file@^4.0.0:
load-yaml-file@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/load-yaml-file/-/load-yaml-file-0.2.0.tgz#af854edaf2bea89346c07549122753c07372f64d"
+ resolved "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz"
integrity sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==
dependencies:
graceful-fs "^4.1.5"
@@ -12330,7 +12031,7 @@ load-yaml-file@^0.2.0:
loader-utils@^2.0.0:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c"
+ resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz"
integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==
dependencies:
big.js "^5.2.2"
@@ -12339,7 +12040,7 @@ loader-utils@^2.0.0:
locate-path@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
+ resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==
dependencies:
p-locate "^2.0.0"
@@ -12347,103 +12048,103 @@ locate-path@^2.0.0:
locate-path@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+ resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
dependencies:
p-locate "^4.1.0"
locate-path@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+ resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
dependencies:
p-locate "^5.0.0"
lodash-es@^4.17.21:
version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
+ resolved "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz"
integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
lodash.camelcase@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
+ resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"
integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==
lodash.clonedeep@^4.5.0:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
+ resolved "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"
integrity sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==
lodash.flattendeep@^4.4.0:
version "4.4.0"
- resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2"
+ resolved "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"
integrity sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==
lodash.get@^4.4.2:
version "4.4.2"
- resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
+ resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"
integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==
lodash.isequal@^4.5.0:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
+ resolved "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz"
integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==
lodash.ismatch@^4.4.0:
version "4.4.0"
- resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37"
+ resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz"
integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==
lodash.memoize@4.x, lodash.memoize@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+ resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"
integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
lodash.merge@4.6.2, lodash.merge@^4.6.2:
version "4.6.2"
- resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
+ resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
lodash.mergewith@4.6.2:
version "4.6.2"
- resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55"
+ resolved "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz"
integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==
lodash.once@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
+ resolved "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz"
integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==
lodash.set@^4.3.2:
version "4.3.2"
- resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
+ resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"
integrity sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==
lodash.sortby@^4.7.0:
version "4.7.0"
- resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
+ resolved "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"
integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==
lodash.truncate@^4.4.2:
version "4.4.2"
- resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
+ resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"
integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==
lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0, lodash@~4.17.0:
version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
log-symbols@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
+ resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz"
integrity sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==
dependencies:
chalk "^1.0.0"
log-symbols@^4.0.0, log-symbols@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
+ resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz"
integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
dependencies:
chalk "^4.1.0"
@@ -12451,7 +12152,7 @@ log-symbols@^4.0.0, log-symbols@^4.1.0:
log-update@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708"
+ resolved "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz"
integrity sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==
dependencies:
ansi-escapes "^3.0.0"
@@ -12460,7 +12161,7 @@ log-update@^2.3.0:
log-update@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1"
+ resolved "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz"
integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==
dependencies:
ansi-escapes "^4.3.0"
@@ -12470,7 +12171,7 @@ log-update@^4.0.0:
log-update@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.0.0.tgz#0ddeb7ac6ad658c944c1de902993fce7c33f5e59"
+ resolved "https://registry.npmjs.org/log-update/-/log-update-6.0.0.tgz"
integrity sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw==
dependencies:
ansi-escapes "^6.2.0"
@@ -12481,70 +12182,70 @@ log-update@^6.0.0:
long@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
+ resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz"
integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
long@^5.0.0:
version "5.2.3"
- resolved "https://registry.yarnpkg.com/long/-/long-5.2.3.tgz#a3ba97f3877cf1d778eccbcb048525ebb77499e1"
+ resolved "https://registry.npmjs.org/long/-/long-5.2.3.tgz"
integrity sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==
longest-streak@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4"
+ resolved "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz"
integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==
lookup-closest-locale@6.2.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz#57f665e604fd26f77142d48152015402b607bcf3"
+ resolved "https://registry.npmjs.org/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz"
integrity sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ==
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+ resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
loupe@^2.3.1:
version "2.3.6"
- resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
+ resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz"
integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
dependencies:
get-func-name "^2.0.0"
lower-case-first@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-2.0.2.tgz#64c2324a2250bf7c37c5901e76a5b5309301160b"
+ resolved "https://registry.npmjs.org/lower-case-first/-/lower-case-first-2.0.2.tgz"
integrity sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==
dependencies:
tslib "^2.0.3"
lower-case@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28"
+ resolved "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz"
integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==
dependencies:
tslib "^2.0.3"
lowercase-keys@^1.0.0, lowercase-keys@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+ resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz"
integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
lowercase-keys@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
+ resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"
integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
lru-cache@^10.0.1, lru-cache@^10.2.0:
version "10.2.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.1.tgz#e8d901141f22937968e45a6533d52824070151e4"
+ resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.1.tgz"
integrity sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==
lru-cache@^4.0.1:
version "4.1.5"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
+ resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
dependencies:
pseudomap "^1.0.2"
@@ -12552,45 +12253,45 @@ lru-cache@^4.0.1:
lru-cache@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
+ resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"
integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
dependencies:
yallist "^3.0.2"
lru-cache@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
+ resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
dependencies:
yallist "^4.0.0"
lru-cache@^7.5.1, lru-cache@^7.7.1:
version "7.18.3"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89"
+ resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz"
integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==
lz-string@^1.5.0:
version "1.5.0"
- resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"
+ resolved "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz"
integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==
make-dir@4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e"
+ resolved "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz"
integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==
dependencies:
semver "^7.5.3"
make-dir@^1.0.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
+ resolved "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz"
integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==
dependencies:
pify "^3.0.0"
make-dir@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
+ resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
dependencies:
pify "^4.0.1"
@@ -12598,19 +12299,19 @@ make-dir@^2.1.0:
make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
+ resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
dependencies:
semver "^6.0.0"
make-error@1.x, make-error@^1.1.1:
version "1.3.6"
- resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
+ resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz"
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
make-fetch-happen@^10.0.1:
version "10.2.1"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164"
+ resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz"
integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==
dependencies:
agentkeepalive "^4.2.1"
@@ -12632,7 +12333,7 @@ make-fetch-happen@^10.0.1:
make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.1:
version "11.1.1"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f"
+ resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz"
integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==
dependencies:
agentkeepalive "^4.2.1"
@@ -12653,7 +12354,7 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.1:
make-fetch-happen@^13.0.0:
version "13.0.0"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz#705d6f6cbd7faecb8eac2432f551e49475bfedf0"
+ resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz"
integrity sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==
dependencies:
"@npmcli/agent" "^2.0.0"
@@ -12670,7 +12371,7 @@ make-fetch-happen@^13.0.0:
make-fetch-happen@^9.1.0:
version "9.1.0"
- resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968"
+ resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz"
integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==
dependencies:
agentkeepalive "^4.1.3"
@@ -12692,44 +12393,44 @@ make-fetch-happen@^9.1.0:
makeerror@1.0.12:
version "1.0.12"
- resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a"
+ resolved "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz"
integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==
dependencies:
tmpl "1.0.5"
map-cache@^0.2.0:
version "0.2.2"
- resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+ resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"
integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
map-obj@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
+ resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"
integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==
map-obj@^4.0.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
+ resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz"
integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
markdown-extensions@^1.0.0:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3"
+ resolved "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-1.1.1.tgz"
integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==
markdown-table@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.3.tgz#e6331d30e493127e031dd385488b5bd326e4a6bd"
+ resolved "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.3.tgz"
integrity sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==
marky@^1.2.0, marky@^1.2.2:
version "1.2.5"
- resolved "https://registry.yarnpkg.com/marky/-/marky-1.2.5.tgz#55796b688cbd72390d2d399eaaf1832c9413e3c0"
+ resolved "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz"
integrity sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==
match-sorter@^6.3.1:
version "6.3.1"
- resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz#98cc37fda756093424ddf3cbc62bfe9c75b92bda"
+ resolved "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz"
integrity sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==
dependencies:
"@babel/runtime" "^7.12.5"
@@ -12737,12 +12438,12 @@ match-sorter@^6.3.1:
mathml-tag-names@^2.1.3:
version "2.1.3"
- resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3"
+ resolved "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz"
integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==
md5@2.3.0, md5@^2.2.1:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f"
+ resolved "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz"
integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==
dependencies:
charenc "0.0.2"
@@ -12751,7 +12452,7 @@ md5@2.3.0, md5@^2.2.1:
mdast-util-definitions@^5.0.0:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.1.tgz#2c1d684b28e53f84938bb06317944bee8efa79db"
+ resolved "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.1.tgz"
integrity sha512-rQ+Gv7mHttxHOBx2dkF4HWTg+EE+UR78ptQWDylzPKaQuVGdG4HIoY3SrS/pCp80nZ04greFvXbVFHT+uf0JVQ==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12760,7 +12461,7 @@ mdast-util-definitions@^5.0.0:
mdast-util-find-and-replace@^2.0.0:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.1.tgz#249901ef43c5f41d6e8a8d446b3b63b17e592d7c"
+ resolved "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.1.tgz"
integrity sha512-SobxkQXFAdd4b5WmEakmkVoh18icjQRxGy5OWTCzgsLRm1Fu/KCtwD1HIQSsmq5ZRjVH0Ehwg6/Fn3xIUk+nKw==
dependencies:
escape-string-regexp "^5.0.0"
@@ -12769,7 +12470,7 @@ mdast-util-find-and-replace@^2.0.0:
mdast-util-from-markdown@^1.0.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz#84df2924ccc6c995dec1e2368b2b208ad0a76268"
+ resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz"
integrity sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12787,7 +12488,7 @@ mdast-util-from-markdown@^1.0.0:
mdast-util-from-markdown@^1.3.0:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0"
+ resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz"
integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12805,7 +12506,7 @@ mdast-util-from-markdown@^1.3.0:
mdast-util-gfm-autolink-literal@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz#4032dcbaddaef7d4f2f3768ed830475bb22d3970"
+ resolved "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.2.tgz"
integrity sha512-FzopkOd4xTTBeGXhXSBU0OCDDh5lUj2rd+HQqG92Ld+jL4lpUfgX2AT2OHAVP9aEeDKp7G92fuooSZcYJA3cRg==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12815,7 +12516,7 @@ mdast-util-gfm-autolink-literal@^1.0.0:
mdast-util-gfm-footnote@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.1.tgz#11d2d40a1a673a399c459e467fa85e00223191fe"
+ resolved "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.1.tgz"
integrity sha512-p+PrYlkw9DeCRkTVw1duWqPRHX6Ywh2BNKJQcZbCwAuP/59B0Lk9kakuAd7KbQprVO4GzdW8eS5++A9PUSqIyw==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12824,7 +12525,7 @@ mdast-util-gfm-footnote@^1.0.0:
mdast-util-gfm-strikethrough@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.2.tgz#6b4fa4ae37d449ccb988192ac0afbb2710ffcefd"
+ resolved "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.2.tgz"
integrity sha512-T/4DVHXcujH6jx1yqpcAYYwd+z5lAYMw4Ls6yhTfbMMtCt0PHY4gEfhW9+lKsLBtyhUGKRIzcUA2FATVqnvPDA==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12832,7 +12533,7 @@ mdast-util-gfm-strikethrough@^1.0.0:
mdast-util-gfm-table@^1.0.0:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.6.tgz#184e900979fe790745fc3dabf77a4114595fcd7f"
+ resolved "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.6.tgz"
integrity sha512-uHR+fqFq3IvB3Rd4+kzXW8dmpxUhvgCQZep6KdjsLK4O6meK5dYZEayLtIxNus1XO3gfjfcIFe8a7L0HZRGgag==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12842,7 +12543,7 @@ mdast-util-gfm-table@^1.0.0:
mdast-util-gfm-task-list-item@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.1.tgz#6f35f09c6e2bcbe88af62fdea02ac199cc802c5c"
+ resolved "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.1.tgz"
integrity sha512-KZ4KLmPdABXOsfnM6JHUIjxEvcx2ulk656Z/4Balw071/5qgnhz+H1uGtf2zIGnrnvDC8xR4Fj9uKbjAFGNIeA==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12850,7 +12551,7 @@ mdast-util-gfm-task-list-item@^1.0.0:
mdast-util-gfm@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-2.0.1.tgz#16fcf70110ae689a06d77e8f4e346223b64a0ea6"
+ resolved "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.1.tgz"
integrity sha512-42yHBbfWIFisaAfV1eixlabbsa6q7vHeSPY+cg+BBjX51M8xhgMacqH9g6TftB/9+YkcI0ooV4ncfrJslzm/RQ==
dependencies:
mdast-util-from-markdown "^1.0.0"
@@ -12863,7 +12564,7 @@ mdast-util-gfm@^2.0.0:
mdast-util-math@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/mdast-util-math/-/mdast-util-math-2.0.1.tgz#141b8e7e43731d2a7423c5eb8c0335c05d257ad2"
+ resolved "https://registry.npmjs.org/mdast-util-math/-/mdast-util-math-2.0.1.tgz"
integrity sha512-ZZtjyRwobsiVg4bY0Q5CzAZztpbjRIA7ZlMMb0PNkwTXOnJTUoHvzBhVG95LIuek5Mlj1l2P+jBvWviqW7G+0A==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12872,7 +12573,7 @@ mdast-util-math@^2.0.0:
mdast-util-mdx-expression@^1.0.0:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.1.tgz#2224cf0b5b150093704a3c225bd529d2de21f50f"
+ resolved "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.1.tgz"
integrity sha512-TTb6cKyTA1RD+1su1iStZ5PAv3rFfOUKcoU5EstUpv/IZo63uDX03R8+jXjMEhcobXnNOiG6/ccekvVl4eV1zQ==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -12883,7 +12584,7 @@ mdast-util-mdx-expression@^1.0.0:
mdast-util-mdx-jsx@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.0.tgz#029f5a9c38485dbb5cf482059557ee7d788f1947"
+ resolved "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.0.tgz"
integrity sha512-KzgzfWMhdteDkrY4mQtyvTU5bc/W4ppxhe9SzelO6QUUiwLAM+Et2Dnjjprik74a336kHdo0zKm7Tp+n6FFeRg==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -12899,7 +12600,7 @@ mdast-util-mdx-jsx@^2.0.0:
mdast-util-mdx@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz#dd4f6c993cf27da32725e50a04874f595b7b63fb"
+ resolved "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz"
integrity sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==
dependencies:
mdast-util-mdx-expression "^1.0.0"
@@ -12908,7 +12609,7 @@ mdast-util-mdx@^2.0.0:
mdast-util-mdxjs-esm@^1.0.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.0.tgz#137345ef827169aeeeb6069277cd3e090830ce9a"
+ resolved "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.0.tgz"
integrity sha512-7N5ihsOkAEGjFotIX9p/YPdl4TqUoMxL4ajNz7PbT89BqsdWJuBC9rvgt6wpbwTZqWWR0jKWqQbwsOWDBUZv4g==
dependencies:
"@types/estree-jsx" "^1.0.0"
@@ -12919,7 +12620,7 @@ mdast-util-mdxjs-esm@^1.0.0:
mdast-util-phrasing@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-3.0.0.tgz#c44fcf6be61a3cb8da54ab2df22320e61d4537ce"
+ resolved "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.0.tgz"
integrity sha512-S+QYsDRLkGi8U7o5JF1agKa/sdP+CNGXXLqC17pdTVL8FHHgQEiwFGa9yE5aYtUxNiFGYoaDy9V1kC85Sz86Gg==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12927,7 +12628,7 @@ mdast-util-phrasing@^3.0.0:
mdast-util-to-hast@^12.1.0:
version "12.2.5"
- resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.2.5.tgz#91532ebd929a7def21585034f7901eb367d2d272"
+ resolved "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.2.5.tgz"
integrity sha512-EFNhT35ZR/VZ85/EedDdCNTq0oFM+NM/+qBomVGQ0+Lcg0nhI8xIwmdCzNMlVlCJNXRprpobtKP/IUh8cfz6zQ==
dependencies:
"@types/hast" "^2.0.0"
@@ -12942,7 +12643,7 @@ mdast-util-to-hast@^12.1.0:
mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0:
version "1.5.0"
- resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6"
+ resolved "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz"
integrity sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==
dependencies:
"@types/mdast" "^3.0.0"
@@ -12956,17 +12657,17 @@ mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0:
mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz#56c506d065fbf769515235e577b5a261552d56e9"
+ resolved "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz"
integrity sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==
media-typer@0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+ resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"
integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
"mem-fs-editor@^8.1.2 || ^9.0.0":
version "9.5.0"
- resolved "https://registry.yarnpkg.com/mem-fs-editor/-/mem-fs-editor-9.5.0.tgz#9368724bd37f76eebfcf24d71fc6624b01588969"
+ resolved "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.5.0.tgz"
integrity sha512-7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA==
dependencies:
binaryextensions "^4.16.0"
@@ -12982,7 +12683,7 @@ media-typer@0.3.0:
"mem-fs@^1.2.0 || ^2.0.0":
version "2.2.1"
- resolved "https://registry.yarnpkg.com/mem-fs/-/mem-fs-2.2.1.tgz#c87bc8a53fb17971b129d4bcd59a9149fb78c5b1"
+ resolved "https://registry.npmjs.org/mem-fs/-/mem-fs-2.2.1.tgz"
integrity sha512-yiAivd4xFOH/WXlUi6v/nKopBh1QLzwjFi36NK88cGt/PRXI8WeBASqY+YSjIVWvQTx3hR8zHKDBMV6hWmglNA==
dependencies:
"@types/node" "^15.6.1"
@@ -12992,7 +12693,7 @@ media-typer@0.3.0:
meow@^8.1.2:
version "8.1.2"
- resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
+ resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz"
integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==
dependencies:
"@types/minimist" "^1.2.0"
@@ -13009,7 +12710,7 @@ meow@^8.1.2:
meow@^9.0.0:
version "9.0.0"
- resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364"
+ resolved "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz"
integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==
dependencies:
"@types/minimist" "^1.2.0"
@@ -13027,22 +12728,22 @@ meow@^9.0.0:
merge-descriptors@1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
+ resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"
integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==
merge-stream@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+ resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"
integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
merge2@^1.3.0, merge2@^1.4.1:
version "1.4.1"
- resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+ resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
mermaid@^10.2.2:
version "10.2.3"
- resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.2.3.tgz#789d3b582c5da8c69aa4a7c0e2b826562c8c8b12"
+ resolved "https://registry.npmjs.org/mermaid/-/mermaid-10.2.3.tgz"
integrity sha512-cMVE5s9PlQvOwfORkyVpr5beMsLdInrycAosdr+tpZ0WFjG4RJ/bUHST7aTgHNJbujHkdBRAm+N50P3puQOfPw==
dependencies:
"@braintree/sanitize-url" "^6.0.2"
@@ -13065,22 +12766,22 @@ mermaid@^10.2.2:
meros@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/meros/-/meros-1.2.1.tgz#056f7a76e8571d0aaf3c7afcbe7eb6407ff7329e"
+ resolved "https://registry.npmjs.org/meros/-/meros-1.2.1.tgz"
integrity sha512-R2f/jxYqCAGI19KhAvaxSOxALBMkaXWH2a7rOyqQw+ZmizX5bKkEYWLzdhC+U82ZVVPVp6MCXe3EkVligh+12g==
metaviewport-parser@0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/metaviewport-parser/-/metaviewport-parser-0.2.0.tgz#535c3ce1ccf6223a5025fddc6a1c36505f7e7db1"
+ resolved "https://registry.npmjs.org/metaviewport-parser/-/metaviewport-parser-0.2.0.tgz"
integrity sha512-qL5NtY18LGs7lvZCkj3ep2H4Pes9rIiSLZRUyfDdvVw7pWFA0eLwmqaIxApD74RGvUrNEtk9e5Wt1rT+VlCvGw==
methods@~1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+ resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"
integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz#edff4c72e5993d93724a3c206970f5a15b0585ad"
+ resolved "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz"
integrity sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==
dependencies:
decode-named-character-reference "^1.0.0"
@@ -13102,7 +12803,7 @@ micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1:
micromark-extension-gfm-autolink-literal@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz#dc589f9c37eaff31a175bab49f12290edcf96058"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.3.tgz"
integrity sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==
dependencies:
micromark-util-character "^1.0.0"
@@ -13113,7 +12814,7 @@ micromark-extension-gfm-autolink-literal@^1.0.0:
micromark-extension-gfm-footnote@^1.0.0:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.4.tgz#cbfd8873b983e820c494498c6dac0105920818d5"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.0.4.tgz"
integrity sha512-E/fmPmDqLiMUP8mLJ8NbJWJ4bTw6tS+FEQS8CcuDtZpILuOb2kjLqPEeAePF1djXROHXChM/wPJw0iS4kHCcIg==
dependencies:
micromark-core-commonmark "^1.0.0"
@@ -13127,7 +12828,7 @@ micromark-extension-gfm-footnote@^1.0.0:
micromark-extension-gfm-strikethrough@^1.0.0:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz#162232c284ffbedd8c74e59c1525bda217295e18"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.4.tgz"
integrity sha512-/vjHU/lalmjZCT5xt7CcHVJGq8sYRm80z24qAKXzaHzem/xsDYb2yLL+NNVbYvmpLx3O7SYPuGL5pzusL9CLIQ==
dependencies:
micromark-util-chunked "^1.0.0"
@@ -13139,7 +12840,7 @@ micromark-extension-gfm-strikethrough@^1.0.0:
micromark-extension-gfm-table@^1.0.0:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz#7b708b728f8dc4d95d486b9e7a2262f9cddbcbb4"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.5.tgz"
integrity sha512-xAZ8J1X9W9K3JTJTUL7G6wSKhp2ZYHrFk5qJgY/4B33scJzE2kpfRL6oiw/veJTbt7jiM/1rngLlOKPWr1G+vg==
dependencies:
micromark-factory-space "^1.0.0"
@@ -13150,14 +12851,14 @@ micromark-extension-gfm-table@^1.0.0:
micromark-extension-gfm-tagfilter@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz#fb2e303f7daf616db428bb6a26e18fda14a90a4d"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.1.tgz"
integrity sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==
dependencies:
micromark-util-types "^1.0.0"
micromark-extension-gfm-task-list-item@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz#7683641df5d4a09795f353574d7f7f66e47b7fc4"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.3.tgz"
integrity sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==
dependencies:
micromark-factory-space "^1.0.0"
@@ -13168,7 +12869,7 @@ micromark-extension-gfm-task-list-item@^1.0.0:
micromark-extension-gfm@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz#40f3209216127a96297c54c67f5edc7ef2d1a2a2"
+ resolved "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.1.tgz"
integrity sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==
dependencies:
micromark-extension-gfm-autolink-literal "^1.0.0"
@@ -13182,7 +12883,7 @@ micromark-extension-gfm@^2.0.0:
micromark-extension-math@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/micromark-extension-math/-/micromark-extension-math-2.0.2.tgz#bb7d28b907b17f1813dd3d0df2a6df6bb1a4d0e1"
+ resolved "https://registry.npmjs.org/micromark-extension-math/-/micromark-extension-math-2.0.2.tgz"
integrity sha512-cFv2B/E4pFPBBFuGgLHkkNiFAIQv08iDgPH2HCuR2z3AUgMLecES5Cq7AVtwOtZeRrbA80QgMUk8VVW0Z+D2FA==
dependencies:
"@types/katex" "^0.11.0"
@@ -13195,7 +12896,7 @@ micromark-extension-math@^2.0.0:
micromark-extension-mdx-expression@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz#cd3843573921bf55afcfff4ae0cd2e857a16dcfa"
+ resolved "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz"
integrity sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA==
dependencies:
micromark-factory-mdx-expression "^1.0.0"
@@ -13208,7 +12909,7 @@ micromark-extension-mdx-expression@^1.0.0:
micromark-extension-mdx-jsx@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz#9f196be5f65eb09d2a49b237a7b3398bba2999be"
+ resolved "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz"
integrity sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==
dependencies:
"@types/acorn" "^4.0.0"
@@ -13223,14 +12924,14 @@ micromark-extension-mdx-jsx@^1.0.0:
micromark-extension-mdx-md@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz#382f5df9ee3706dd120b51782a211f31f4760d22"
+ resolved "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz"
integrity sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==
dependencies:
micromark-util-types "^1.0.0"
micromark-extension-mdxjs-esm@^1.0.0:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz#630d9dc9db2c2fd470cac8c1e7a824851267404d"
+ resolved "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz"
integrity sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==
dependencies:
micromark-core-commonmark "^1.0.0"
@@ -13244,7 +12945,7 @@ micromark-extension-mdxjs-esm@^1.0.0:
micromark-extension-mdxjs@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz#772644e12fc8299a33e50f59c5aa15727f6689dd"
+ resolved "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz"
integrity sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==
dependencies:
acorn "^8.0.0"
@@ -13258,7 +12959,7 @@ micromark-extension-mdxjs@^1.0.0:
micromark-factory-destination@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz#fef1cb59ad4997c496f887b6977aa3034a5a277e"
+ resolved "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz"
integrity sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==
dependencies:
micromark-util-character "^1.0.0"
@@ -13267,7 +12968,7 @@ micromark-factory-destination@^1.0.0:
micromark-factory-label@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz#6be2551fa8d13542fcbbac478258fb7a20047137"
+ resolved "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz"
integrity sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==
dependencies:
micromark-util-character "^1.0.0"
@@ -13277,7 +12978,7 @@ micromark-factory-label@^1.0.0:
micromark-factory-mdx-expression@^1.0.0:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.6.tgz#917e17d16e6e9c2551f3a862e6a9ebdd22056476"
+ resolved "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.6.tgz"
integrity sha512-WRQIc78FV7KrCfjsEf/sETopbYjElh3xAmNpLkd1ODPqxEngP42eVRGbiPEQWpRV27LzqW+XVTvQAMIIRLPnNA==
dependencies:
micromark-factory-space "^1.0.0"
@@ -13291,7 +12992,7 @@ micromark-factory-mdx-expression@^1.0.0:
micromark-factory-space@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz#cebff49968f2b9616c0fcb239e96685cb9497633"
+ resolved "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz"
integrity sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==
dependencies:
micromark-util-character "^1.0.0"
@@ -13299,7 +13000,7 @@ micromark-factory-space@^1.0.0:
micromark-factory-title@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz#7e09287c3748ff1693930f176e1c4a328382494f"
+ resolved "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz"
integrity sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==
dependencies:
micromark-factory-space "^1.0.0"
@@ -13310,7 +13011,7 @@ micromark-factory-title@^1.0.0:
micromark-factory-whitespace@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz#e991e043ad376c1ba52f4e49858ce0794678621c"
+ resolved "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz"
integrity sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==
dependencies:
micromark-factory-space "^1.0.0"
@@ -13320,7 +13021,7 @@ micromark-factory-whitespace@^1.0.0:
micromark-util-character@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.1.0.tgz#d97c54d5742a0d9611a68ca0cd4124331f264d86"
+ resolved "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-1.1.0.tgz"
integrity sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==
dependencies:
micromark-util-symbol "^1.0.0"
@@ -13328,14 +13029,14 @@ micromark-util-character@^1.0.0:
micromark-util-chunked@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz#5b40d83f3d53b84c4c6bce30ed4257e9a4c79d06"
+ resolved "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz"
integrity sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==
dependencies:
micromark-util-symbol "^1.0.0"
micromark-util-classify-character@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz#cbd7b447cb79ee6997dd274a46fc4eb806460a20"
+ resolved "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz"
integrity sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==
dependencies:
micromark-util-character "^1.0.0"
@@ -13344,7 +13045,7 @@ micromark-util-classify-character@^1.0.0:
micromark-util-combine-extensions@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz#91418e1e74fb893e3628b8d496085639124ff3d5"
+ resolved "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz"
integrity sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==
dependencies:
micromark-util-chunked "^1.0.0"
@@ -13352,14 +13053,14 @@ micromark-util-combine-extensions@^1.0.0:
micromark-util-decode-numeric-character-reference@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz#dcc85f13b5bd93ff8d2868c3dba28039d490b946"
+ resolved "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz"
integrity sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==
dependencies:
micromark-util-symbol "^1.0.0"
micromark-util-decode-string@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz#942252ab7a76dec2dbf089cc32505ee2bc3acf02"
+ resolved "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz"
integrity sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==
dependencies:
decode-named-character-reference "^1.0.0"
@@ -13369,12 +13070,12 @@ micromark-util-decode-string@^1.0.0:
micromark-util-encode@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz#2c1c22d3800870ad770ece5686ebca5920353383"
+ resolved "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz"
integrity sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==
micromark-util-events-to-acorn@^1.0.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.0.tgz#65785cb77299d791bfefdc6a5213ab57ceead115"
+ resolved "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.0.tgz"
integrity sha512-WWp3bf7xT9MppNuw3yPjpnOxa8cj5ACivEzXJKu0WwnjBYfzaBvIAT9KfeyI0Qkll+bfQtfftSwdgTH6QhTOKw==
dependencies:
"@types/acorn" "^4.0.0"
@@ -13387,26 +13088,26 @@ micromark-util-events-to-acorn@^1.0.0:
micromark-util-html-tag-name@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz#eb227118befd51f48858e879b7a419fc0df20497"
+ resolved "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz"
integrity sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==
micromark-util-normalize-identifier@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz#4a3539cb8db954bbec5203952bfe8cedadae7828"
+ resolved "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz"
integrity sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==
dependencies:
micromark-util-symbol "^1.0.0"
micromark-util-resolve-all@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz#a7c363f49a0162e931960c44f3127ab58f031d88"
+ resolved "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz"
integrity sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==
dependencies:
micromark-util-types "^1.0.0"
micromark-util-sanitize-uri@^1.0.0, micromark-util-sanitize-uri@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz#f12e07a85106b902645e0364feb07cf253a85aee"
+ resolved "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.1.0.tgz"
integrity sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==
dependencies:
micromark-util-character "^1.0.0"
@@ -13415,7 +13116,7 @@ micromark-util-sanitize-uri@^1.0.0, micromark-util-sanitize-uri@^1.1.0:
micromark-util-subtokenize@^1.0.0:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz#ff6f1af6ac836f8bfdbf9b02f40431760ad89105"
+ resolved "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz"
integrity sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==
dependencies:
micromark-util-chunked "^1.0.0"
@@ -13425,17 +13126,17 @@ micromark-util-subtokenize@^1.0.0:
micromark-util-symbol@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz#b90344db62042ce454f351cf0bebcc0a6da4920e"
+ resolved "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz"
integrity sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==
micromark-util-types@^1.0.0, micromark-util-types@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.0.2.tgz#f4220fdb319205812f99c40f8c87a9be83eded20"
+ resolved "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.0.2.tgz"
integrity sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==
micromark@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.1.0.tgz#eeba0fe0ac1c9aaef675157b52c166f125e89f62"
+ resolved "https://registry.npmjs.org/micromark/-/micromark-3.1.0.tgz"
integrity sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==
dependencies:
"@types/debug" "^4.0.0"
@@ -13458,7 +13159,7 @@ micromark@^3.0.0:
micromatch@4.0.5, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
version "4.0.5"
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
+ resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
dependencies:
braces "^3.0.2"
@@ -13466,136 +13167,136 @@ micromatch@4.0.5, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
mime-db@1.52.0, "mime-db@>= 1.43.0 < 2":
version "1.52.0"
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+ resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34:
version "2.1.35"
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+ resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"
integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
dependencies:
mime-db "1.52.0"
mime@1.6.0:
version "1.6.0"
- resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+ resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
mimic-fn@^1.0.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
+ resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz"
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
mimic-fn@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+ resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
mimic-fn@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc"
+ resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz"
integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
mimic-response@^1.0.0, mimic-response@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
+ resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz"
integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
mimic-response@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"
+ resolved "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"
integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==
min-indent@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
+ resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
minimatch@3.0.5:
version "3.0.5"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.5.tgz#4da8f1290ee0f0f8e83d60ca69f8f134068604a3"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz"
integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==
dependencies:
brace-expansion "^1.1.7"
minimatch@4.2.3, minimatch@^4.2.3:
version "4.2.3"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-4.2.3.tgz#b4dcece1d674dee104bb0fb833ebb85a78cbbca6"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-4.2.3.tgz"
integrity sha512-lIUdtK5hdofgCTu3aT0sOaHsYR37viUuIc0rwnnDXImbwFRcumyLMeZaM0t0I/fgxS6s6JMfu0rLD1Wz9pv1ng==
dependencies:
brace-expansion "^1.1.7"
minimatch@9.0.3:
version "9.0.3"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz"
integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
dependencies:
brace-expansion "^2.0.1"
minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
dependencies:
brace-expansion "^1.1.7"
minimatch@^5.0.1:
version "5.1.6"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz"
integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
dependencies:
brace-expansion "^2.0.1"
minimatch@^8.0.2:
version "8.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-8.0.4.tgz#847c1b25c014d4e9a7f68aaf63dedd668a626229"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz"
integrity sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==
dependencies:
brace-expansion "^2.0.1"
minimatch@^9.0.0, minimatch@^9.0.1, minimatch@^9.0.3:
version "9.0.4"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz"
integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==
dependencies:
brace-expansion "^2.0.1"
minimist-options@4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
+ resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz"
integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
dependencies:
arrify "^1.0.1"
is-plain-obj "^1.1.0"
kind-of "^6.0.3"
-minimist@^1.1.0, minimist@^1.2.3:
+minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6:
version "1.2.7"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
+ resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"
integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
-minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8:
+minimist@^1.2.8:
version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
minipass-collect@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
+ resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz"
integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
dependencies:
minipass "^3.0.0"
minipass-collect@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-2.0.1.tgz#1621bc77e12258a12c60d34e2276ec5c20680863"
+ resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz"
integrity sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==
dependencies:
minipass "^7.0.3"
minipass-fetch@^1.3.2, minipass-fetch@^1.4.1:
version "1.4.1"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6"
+ resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz"
integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==
dependencies:
minipass "^3.1.0"
@@ -13606,7 +13307,7 @@ minipass-fetch@^1.3.2, minipass-fetch@^1.4.1:
minipass-fetch@^2.0.3:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add"
+ resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz"
integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==
dependencies:
minipass "^3.1.6"
@@ -13617,7 +13318,7 @@ minipass-fetch@^2.0.3:
minipass-fetch@^3.0.0:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.4.tgz#4d4d9b9f34053af6c6e597a64be8e66e42bf45b7"
+ resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz"
integrity sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==
dependencies:
minipass "^7.0.3"
@@ -13628,14 +13329,14 @@ minipass-fetch@^3.0.0:
minipass-flush@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
+ resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz"
integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
dependencies:
minipass "^3.0.0"
minipass-json-stream@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7"
+ resolved "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz"
integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==
dependencies:
jsonparse "^1.3.1"
@@ -13643,43 +13344,43 @@ minipass-json-stream@^1.0.1:
minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4:
version "1.2.4"
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
+ resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz"
integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
dependencies:
minipass "^3.0.0"
minipass-sized@^1.0.3:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70"
+ resolved "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz"
integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==
dependencies:
minipass "^3.0.0"
minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3, minipass@^3.1.6:
version "3.3.6"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
+ resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz"
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
dependencies:
yallist "^4.0.0"
minipass@^4.0.0, minipass@^4.2.4:
version "4.2.8"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a"
+ resolved "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz"
integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==
minipass@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
+ resolved "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz"
integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.2, minipass@^7.0.3, minipass@^7.0.4:
version "7.0.4"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
+ resolved "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz"
integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
+ resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz"
integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
dependencies:
minipass "^3.0.0"
@@ -13687,12 +13388,12 @@ minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2:
mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:
version "0.5.3"
- resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
+ resolved "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz"
integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
mkdirp-infer-owner@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz#55d3b368e7d89065c38f32fd38e638f0ab61d316"
+ resolved "https://registry.npmjs.org/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz"
integrity sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw==
dependencies:
chownr "^2.0.0"
@@ -13701,49 +13402,49 @@ mkdirp-infer-owner@^2.0.0:
mkdirp@^0.5.3:
version "0.5.6"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
+ resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
dependencies:
minimist "^1.2.6"
mkdirp@^1.0.3, mkdirp@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
+ resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
modern-normalize@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-1.1.0.tgz#da8e80140d9221426bd4f725c6e11283d34f90b7"
+ resolved "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz"
integrity sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==
modify-values@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
+ resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz"
integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
mri@^1.1.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
+ resolved "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz"
integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
ms@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
ms@2.1.2:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
ms@2.1.3, ms@^2.0.0, ms@^2.1.1:
version "2.1.3"
- resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
multimatch@5.0.0, multimatch@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-5.0.0.tgz#932b800963cea7a31a033328fa1e0c3a1874dbe6"
+ resolved "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz"
integrity sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==
dependencies:
"@types/minimatch" "^3.0.3"
@@ -13754,59 +13455,59 @@ multimatch@5.0.0, multimatch@^5.0.0:
mute-stream@0.0.7:
version "0.0.7"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
+ resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz"
integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==
mute-stream@0.0.8:
version "0.0.8"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
+ resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
mute-stream@^1.0.0, mute-stream@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e"
+ resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz"
integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==
nanoid@^3.2.0, nanoid@^3.3.4, nanoid@^3.3.6:
version "3.3.7"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
+ resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz"
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
nanospinner@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/nanospinner/-/nanospinner-1.1.0.tgz#d17ff621cb1784b0a206b400da88a0ef6db39b97"
+ resolved "https://registry.npmjs.org/nanospinner/-/nanospinner-1.1.0.tgz"
integrity sha512-yFvNYMig4AthKYfHFl1sLj7B2nkHL4lzdig4osvl9/LdGbXwrdFRoqBS98gsEsOakr0yH+r5NZ/1Y9gdVB8trA==
dependencies:
picocolors "^1.0.0"
napi-build-utils@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806"
+ resolved "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz"
integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==
natural-compare@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+ resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
natural-orderby@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/natural-orderby/-/natural-orderby-2.0.3.tgz#8623bc518ba162f8ff1cdb8941d74deb0fdcc016"
+ resolved "https://registry.npmjs.org/natural-orderby/-/natural-orderby-2.0.3.tgz"
integrity sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q==
negotiator@0.6.3, negotiator@^0.6.2, negotiator@^0.6.3:
version "0.6.3"
- resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
+ resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
neo-async@^2.6.2:
version "2.6.2"
- resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
next-mdx-remote@^4.2.1:
version "4.4.1"
- resolved "https://registry.yarnpkg.com/next-mdx-remote/-/next-mdx-remote-4.4.1.tgz#96b16e2adc54dbcd0a7f204a9a3c3fd269d41abf"
+ resolved "https://registry.npmjs.org/next-mdx-remote/-/next-mdx-remote-4.4.1.tgz"
integrity sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==
dependencies:
"@mdx-js/mdx" "^2.2.1"
@@ -13816,22 +13517,22 @@ next-mdx-remote@^4.2.1:
next-seo@^6.0.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-6.1.0.tgz#b60b06958cc77e7ed56f0a61b2d6cd0afed88ebb"
+ resolved "https://registry.npmjs.org/next-seo/-/next-seo-6.1.0.tgz"
integrity sha512-iMBpFoJsR5zWhguHJvsoBDxDSmdYTHtnVPB1ij+CD0NReQCP78ZxxbdL9qkKIf4oEuZEqZkrjAQLB0bkII7RYA==
next-seo@^6.4.0:
version "6.4.0"
- resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-6.4.0.tgz#05a75b8acae881f856eb690b1f66b5e8741aa16e"
+ resolved "https://registry.npmjs.org/next-seo/-/next-seo-6.4.0.tgz"
integrity sha512-XQFxkOL2hw0YE+P100HbI3EAvcludlHPxuzMgaIjKb7kPK0CvjGvLFjd9hszZFEDc5oiQkGFA8+cuWcnip7eYA==
next-themes@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.2.1.tgz#0c9f128e847979daf6c67f70b38e6b6567856e45"
+ resolved "https://registry.npmjs.org/next-themes/-/next-themes-0.2.1.tgz"
integrity sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==
next@13.0.7:
version "13.0.7"
- resolved "https://registry.yarnpkg.com/next/-/next-13.0.7.tgz#f07a0cc3afefdb86fb6668048e910a2193e3c1e2"
+ resolved "https://registry.npmjs.org/next/-/next-13.0.7.tgz"
integrity sha512-YfTifqX9vfHm+rSU/H/3xvzOHDkYuMuh4wsvTjiqj9h7qHEF7KHB66X4qrH96Po+ohdid4JY8YVGPziDwdXL0A==
dependencies:
"@next/env" "13.0.7"
@@ -13856,7 +13557,7 @@ next@13.0.7:
next@13.5.1:
version "13.5.1"
- resolved "https://registry.yarnpkg.com/next/-/next-13.5.1.tgz#cf51e950017121f5404eedbde7d59d9ed310839b"
+ resolved "https://registry.npmjs.org/next/-/next-13.5.1.tgz"
integrity sha512-GIudNR7ggGUZoIL79mSZcxbXK9f5pwAIPZxEM8+j2yLqv5RODg4TkmUlaKSYVqE1bPQueamXSqdC3j7axiTSEg==
dependencies:
"@next/env" "13.5.1"
@@ -13880,7 +13581,7 @@ next@13.5.1:
next@^13.5.6:
version "13.5.6"
- resolved "https://registry.yarnpkg.com/next/-/next-13.5.6.tgz#e964b5853272236c37ce0dd2c68302973cf010b1"
+ resolved "https://registry.npmjs.org/next/-/next-13.5.6.tgz"
integrity sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==
dependencies:
"@next/env" "13.5.6"
@@ -13903,7 +13604,7 @@ next@^13.5.6:
nextjs-progressbar@^0.0.14:
version "0.0.14"
- resolved "https://registry.yarnpkg.com/nextjs-progressbar/-/nextjs-progressbar-0.0.14.tgz#cc2630ee4e9dec598314394bd0fffb0cbfc40444"
+ resolved "https://registry.npmjs.org/nextjs-progressbar/-/nextjs-progressbar-0.0.14.tgz"
integrity sha512-AXYXHDN6M52AwFnGqH/vlwyo0gbC9zM7QS/4ryOTI0RUqfze5FJl8uSrxKJMzK6hGFdDeQXcZoWsLGXeCVtTwg==
dependencies:
nprogress "^0.2.0"
@@ -13911,7 +13612,7 @@ nextjs-progressbar@^0.0.14:
nextra-theme-docs@^2.8.0:
version "2.8.0"
- resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.8.0.tgz#db7e2251e034c0b018726b899564ac7e042f1ba4"
+ resolved "https://registry.npmjs.org/nextra-theme-docs/-/nextra-theme-docs-2.8.0.tgz"
integrity sha512-JoSAILDVp0GxeVWWZBFGoRijE2RcjZcXrMa47Fssi254T5wF+gm0HvEOSwrTaKaPaUL+IfshAiKglvXNKGzbNw==
dependencies:
"@headlessui/react" "^1.7.10"
@@ -13929,7 +13630,7 @@ nextra-theme-docs@^2.8.0:
nextra@^2.8.0:
version "2.8.0"
- resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.8.0.tgz#1471cf96b21e354e47310090ff53f2bdc9e674c7"
+ resolved "https://registry.npmjs.org/nextra/-/nextra-2.8.0.tgz"
integrity sha512-WyRNzw1IM/eF3M1H3LSsbZH97QsYYgj8upjx0f8hY6GspmPyPRAvBBscmXRt+7vye2oIYjfVwSiD1rj9amqq9Q==
dependencies:
"@mdx-js/mdx" "^2.3.0"
@@ -13958,12 +13659,12 @@ nextra@^2.8.0:
nice-try@^1.0.4:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
+ resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
no-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d"
+ resolved "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz"
integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==
dependencies:
lower-case "^2.0.2"
@@ -13971,38 +13672,38 @@ no-case@^3.0.4:
node-abi@^3.3.0:
version "3.33.0"
- resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.33.0.tgz#8b23a0cec84e1c5f5411836de6a9b84bccf26e7f"
+ resolved "https://registry.npmjs.org/node-abi/-/node-abi-3.33.0.tgz"
integrity sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog==
dependencies:
semver "^7.3.5"
node-addon-api@^6.1.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-6.1.0.tgz#ac8470034e58e67d0c6f1204a18ae6995d9c0d76"
+ resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz"
integrity sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==
node-addon-api@^7.0.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.0.tgz#71f609369379c08e251c558527a107107b5e0fdb"
+ resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.0.tgz"
integrity sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==
node-fetch@2.6.7, node-fetch@^2.6.1:
version "2.6.7"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
+ resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz"
integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
dependencies:
whatwg-url "^5.0.0"
node-fetch@^2.6.7:
version "2.7.0"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
+ resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz"
integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
dependencies:
whatwg-url "^5.0.0"
node-gyp@^10.0.0:
version "10.1.0"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-10.1.0.tgz#75e6f223f2acb4026866c26a2ead6aab75a8ca7e"
+ resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz"
integrity sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==
dependencies:
env-paths "^2.2.0"
@@ -14018,7 +13719,7 @@ node-gyp@^10.0.0:
node-gyp@^8.2.0:
version "8.4.1"
- resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.1.tgz#3d49308fc31f768180957d6b5746845fbd429937"
+ resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz"
integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==
dependencies:
env-paths "^2.2.0"
@@ -14034,39 +13735,34 @@ node-gyp@^8.2.0:
node-int64@^0.4.0:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
+ resolved "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
node-machine-id@1.1.12:
version "1.1.12"
- resolved "https://registry.yarnpkg.com/node-machine-id/-/node-machine-id-1.1.12.tgz#37904eee1e59b320bb9c5d6c0a59f3b469cb6267"
+ resolved "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz"
integrity sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==
node-preload@^0.2.1:
version "0.2.1"
- resolved "https://registry.yarnpkg.com/node-preload/-/node-preload-0.2.1.tgz#c03043bb327f417a18fee7ab7ee57b408a144301"
+ resolved "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz"
integrity sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==
dependencies:
process-on-spawn "^1.0.0"
-node-releases@^2.0.12:
- version "2.0.13"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
- integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
-
node-releases@^2.0.14:
version "2.0.14"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b"
+ resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz"
integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
-node-releases@^2.0.6:
- version "2.0.8"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.8.tgz#0f349cdc8fcfa39a92ac0be9bc48b7706292b9ae"
- integrity sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==
+node-releases@^2.0.18:
+ version "2.0.18"
+ resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz"
+ integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
nodemon@^3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-3.0.2.tgz#222dd0de79fc7b7b3eedba422d2b9e5fc678621e"
+ resolved "https://registry.npmjs.org/nodemon/-/nodemon-3.0.2.tgz"
integrity sha512-9qIN2LNTrEzpOPBaWHTm4Asy1LxXLSickZStAQ4IZe7zsoIpD/A7LWxhZV3t4Zu352uBcqVnRsDXSMR2Sc3lTA==
dependencies:
chokidar "^3.5.2"
@@ -14082,7 +13778,7 @@ nodemon@^3.0.2:
noms@0.0.0:
version "0.0.0"
- resolved "https://registry.yarnpkg.com/noms/-/noms-0.0.0.tgz#da8ebd9f3af9d6760919b27d9cdc8092a7332859"
+ resolved "https://registry.npmjs.org/noms/-/noms-0.0.0.tgz"
integrity sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==
dependencies:
inherits "^2.0.1"
@@ -14090,33 +13786,33 @@ noms@0.0.0:
non-layered-tidy-tree-layout@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz#57d35d13c356643fc296a55fb11ac15e74da7804"
+ resolved "https://registry.npmjs.org/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz"
integrity sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==
nopt@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
+ resolved "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz"
integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
dependencies:
abbrev "1"
nopt@^7.0.0:
version "7.2.0"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-7.2.0.tgz#067378c68116f602f552876194fd11f1292503d7"
+ resolved "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz"
integrity sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==
dependencies:
abbrev "^2.0.0"
nopt@~1.0.10:
version "1.0.10"
- resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee"
+ resolved "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz"
integrity sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==
dependencies:
abbrev "1"
normalize-package-data@^2.3.2, normalize-package-data@^2.5.0:
version "2.5.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
+ resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
dependencies:
hosted-git-info "^2.1.4"
@@ -14126,7 +13822,7 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.5.0:
normalize-package-data@^3.0.0, normalize-package-data@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e"
+ resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz"
integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
dependencies:
hosted-git-info "^4.0.1"
@@ -14136,7 +13832,7 @@ normalize-package-data@^3.0.0, normalize-package-data@^3.0.3:
normalize-package-data@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-5.0.0.tgz#abcb8d7e724c40d88462b84982f7cbf6859b4588"
+ resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz"
integrity sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==
dependencies:
hosted-git-info "^6.0.0"
@@ -14146,7 +13842,7 @@ normalize-package-data@^5.0.0:
normalize-package-data@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-6.0.0.tgz#68a96b3c11edd462af7189c837b6b1064a484196"
+ resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz"
integrity sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==
dependencies:
hosted-git-info "^7.0.0"
@@ -14156,77 +13852,77 @@ normalize-package-data@^6.0.0:
normalize-path@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
+ resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"
integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==
dependencies:
remove-trailing-separator "^1.0.1"
normalize-path@^3.0.0, normalize-path@~3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
normalize-range@^0.1.2:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+ resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"
integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
normalize-url@^4.1.0:
version "4.5.1"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
+ resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz"
integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==
normalize-url@^6.0.1:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a"
+ resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz"
integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==
npm-bundled@^1.1.1, npm-bundled@^1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1"
+ resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz"
integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==
dependencies:
npm-normalize-package-bin "^1.0.1"
npm-bundled@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.0.tgz#7e8e2f8bb26b794265028491be60321a25a39db7"
+ resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz"
integrity sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==
dependencies:
npm-normalize-package-bin "^3.0.0"
npm-install-checks@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-4.0.0.tgz#a37facc763a2fde0497ef2c6d0ac7c3fbe00d7b4"
+ resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-4.0.0.tgz"
integrity sha512-09OmyDkNLYwqKPOnbI8exiOZU2GVVmQp7tgez2BPi5OZC8M82elDAps7sxC4l//uSUtotWqoEIDwjRvWH4qz8w==
dependencies:
semver "^7.1.1"
npm-install-checks@^6.0.0:
version "6.3.0"
- resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.3.0.tgz#046552d8920e801fa9f919cad569545d60e826fe"
+ resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz"
integrity sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==
dependencies:
semver "^7.1.1"
npm-normalize-package-bin@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
+ resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz"
integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
npm-normalize-package-bin@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz#9447a1adaaf89d8ad0abe24c6c84ad614a675fff"
+ resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz"
integrity sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==
npm-normalize-package-bin@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832"
+ resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz"
integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==
npm-package-arg@8.1.1:
version "8.1.1"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.1.tgz#00ebf16ac395c63318e67ce66780a06db6df1b04"
+ resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.1.tgz"
integrity sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg==
dependencies:
hosted-git-info "^3.0.6"
@@ -14235,7 +13931,7 @@ npm-package-arg@8.1.1:
npm-package-arg@^10.0.0, npm-package-arg@^10.1.0:
version "10.1.0"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-10.1.0.tgz#827d1260a683806685d17193073cc152d3c7e9b1"
+ resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz"
integrity sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==
dependencies:
hosted-git-info "^6.0.0"
@@ -14245,7 +13941,7 @@ npm-package-arg@^10.0.0, npm-package-arg@^10.1.0:
npm-package-arg@^11.0.0:
version "11.0.2"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-11.0.2.tgz#1ef8006c4a9e9204ddde403035f7ff7d718251ca"
+ resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz"
integrity sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==
dependencies:
hosted-git-info "^7.0.0"
@@ -14255,7 +13951,7 @@ npm-package-arg@^11.0.0:
npm-package-arg@^8.0.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5:
version "8.1.5"
- resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.5.tgz#3369b2d5fe8fdc674baa7f1786514ddc15466e44"
+ resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.5.tgz"
integrity sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==
dependencies:
hosted-git-info "^4.0.1"
@@ -14264,7 +13960,7 @@ npm-package-arg@^8.0.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5:
npm-packlist@5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-5.1.1.tgz#79bcaf22a26b6c30aa4dd66b976d69cc286800e0"
+ resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.1.tgz"
integrity sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==
dependencies:
glob "^8.0.1"
@@ -14274,7 +13970,7 @@ npm-packlist@5.1.1:
npm-packlist@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-3.0.0.tgz#0370df5cfc2fcc8f79b8f42b37798dd9ee32c2a9"
+ resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz"
integrity sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==
dependencies:
glob "^7.1.6"
@@ -14284,14 +13980,14 @@ npm-packlist@^3.0.0:
npm-packlist@^8.0.0:
version "8.0.2"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-8.0.2.tgz#5b8d1d906d96d21c85ebbeed2cf54147477c8478"
+ resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz"
integrity sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==
dependencies:
ignore-walk "^6.0.4"
npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1:
version "6.1.1"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz#7b5484ca2c908565f43b7f27644f36bb816f5148"
+ resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-6.1.1.tgz"
integrity sha512-dBsdBtORT84S8V8UTad1WlUyKIY9iMsAmqxHbLdeEeBNMLQDlDWWra3wYUx9EBEIiG/YwAy0XyNHDd2goAsfuA==
dependencies:
npm-install-checks "^4.0.0"
@@ -14301,7 +13997,7 @@ npm-pick-manifest@^6.0.0, npm-pick-manifest@^6.1.0, npm-pick-manifest@^6.1.1:
npm-pick-manifest@^9.0.0:
version "9.0.0"
- resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz#f87a4c134504a2c7931f2bb8733126e3c3bb7e8f"
+ resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz"
integrity sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==
dependencies:
npm-install-checks "^6.0.0"
@@ -14311,7 +14007,7 @@ npm-pick-manifest@^9.0.0:
npm-registry-fetch@^12.0.0, npm-registry-fetch@^12.0.1:
version "12.0.2"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-12.0.2.tgz#ae583bb3c902a60dae43675b5e33b5b1f6159f1e"
+ resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-12.0.2.tgz"
integrity sha512-Df5QT3RaJnXYuOwtXBXS9BWs+tHH2olvkCLh6jcR/b/u3DvPMlp3J0TvvYwplPKxHMOwfg287PYih9QqaVFoKA==
dependencies:
make-fetch-happen "^10.0.1"
@@ -14323,7 +14019,7 @@ npm-registry-fetch@^12.0.0, npm-registry-fetch@^12.0.1:
npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.5:
version "14.0.5"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d"
+ resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz"
integrity sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==
dependencies:
make-fetch-happen "^11.0.0"
@@ -14336,7 +14032,7 @@ npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.5:
npm-registry-fetch@^16.0.0:
version "16.2.1"
- resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-16.2.1.tgz#c367df2d770f915da069ff19fd31762f4bca3ef1"
+ resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.2.1.tgz"
integrity sha512-8l+7jxhim55S85fjiDGJ1rZXBWGtRLi1OSb4Z3BPLObPuIaeKRlPRiYMSHU4/81ck3t71Z+UwDDl47gcpmfQQA==
dependencies:
"@npmcli/redact" "^1.1.0"
@@ -14350,28 +14046,28 @@ npm-registry-fetch@^16.0.0:
npm-run-path@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+ resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"
integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==
dependencies:
path-key "^2.0.0"
npm-run-path@^4.0.0, npm-run-path@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
+ resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"
integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
dependencies:
path-key "^3.0.0"
npm-run-path@^5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00"
+ resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz"
integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==
dependencies:
path-key "^4.0.0"
npmlog@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0"
+ resolved "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz"
integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==
dependencies:
are-we-there-yet "^2.0.0"
@@ -14381,7 +14077,7 @@ npmlog@^5.0.1:
npmlog@^6.0.0, npmlog@^6.0.2:
version "6.0.2"
- resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830"
+ resolved "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz"
integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==
dependencies:
are-we-there-yet "^3.0.0"
@@ -14391,27 +14087,27 @@ npmlog@^6.0.0, npmlog@^6.0.2:
nprogress@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1"
+ resolved "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz"
integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==
nullthrows@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1"
+ resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"
integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==
number-is-nan@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
+ resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==
nwsapi@^2.2.2:
version "2.2.7"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30"
+ resolved "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz"
integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==
nx@18.3.4, "nx@>=17.1.2 < 19":
version "18.3.4"
- resolved "https://registry.yarnpkg.com/nx/-/nx-18.3.4.tgz#0be7e1b35d87f98a1c15d73c5d56c3ade999176c"
+ resolved "https://registry.npmjs.org/nx/-/nx-18.3.4.tgz"
integrity sha512-7rOHRyxpnZGJ3pHnwmpoAMHt9hNuwibWhOhPBJDhJVcbQJtGfwcWWyV/iSEnVXwKZ2lfHVE3TwE+gXFdT/GFiw==
dependencies:
"@nrwl/tao" "18.3.4"
@@ -14462,7 +14158,7 @@ nx@18.3.4, "nx@>=17.1.2 < 19":
nyc@15.1.0:
version "15.1.0"
- resolved "https://registry.yarnpkg.com/nyc/-/nyc-15.1.0.tgz#1335dae12ddc87b6e249d5a1994ca4bdaea75f02"
+ resolved "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz"
integrity sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==
dependencies:
"@istanbuljs/load-nyc-config" "^1.0.0"
@@ -14495,17 +14191,17 @@ nyc@15.1.0:
object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
object-inspect@^1.12.2, object-inspect@^1.9.0:
version "1.12.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
+ resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"
integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
object-is@^1.1.5:
version "1.1.5"
- resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
+ resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz"
integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
dependencies:
call-bind "^1.0.2"
@@ -14513,17 +14209,17 @@ object-is@^1.1.5:
object-keys@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+ resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
object-treeify@^1.1.33:
version "1.1.33"
- resolved "https://registry.yarnpkg.com/object-treeify/-/object-treeify-1.1.33.tgz#f06fece986830a3cba78ddd32d4c11d1f76cdf40"
+ resolved "https://registry.npmjs.org/object-treeify/-/object-treeify-1.1.33.tgz"
integrity sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A==
object.assign@^4.1.3, object.assign@^4.1.4:
version "4.1.4"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
+ resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"
integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
dependencies:
call-bind "^1.0.2"
@@ -14533,7 +14229,7 @@ object.assign@^4.1.3, object.assign@^4.1.4:
object.entries@^1.1.5, object.entries@^1.1.6:
version "1.1.6"
- resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23"
+ resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz"
integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==
dependencies:
call-bind "^1.0.2"
@@ -14542,7 +14238,7 @@ object.entries@^1.1.5, object.entries@^1.1.6:
object.fromentries@^2.0.5, object.fromentries@^2.0.6:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73"
+ resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz"
integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==
dependencies:
call-bind "^1.0.2"
@@ -14551,7 +14247,7 @@ object.fromentries@^2.0.5, object.fromentries@^2.0.6:
object.hasown@^1.1.1, object.hasown@^1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92"
+ resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz"
integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==
dependencies:
define-properties "^1.1.4"
@@ -14559,7 +14255,7 @@ object.hasown@^1.1.1, object.hasown@^1.1.2:
object.values@^1.1.5, object.values@^1.1.6:
version "1.1.6"
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d"
+ resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz"
integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
dependencies:
call-bind "^1.0.2"
@@ -14568,7 +14264,7 @@ object.values@^1.1.5, object.values@^1.1.6:
oclif@^3:
version "3.4.3"
- resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.4.3.tgz#8db95c7d1f0c8c82fb3037545f78e65fa7769a4a"
+ resolved "https://registry.npmjs.org/oclif/-/oclif-3.4.3.tgz"
integrity sha512-Kg8ezSJvDluazG6eyN+TeoryaFn3i9utKVty2hy6I0FUy6QcPnbl8+MCha4Jwc+x5+pA46Tu0n2cnjUcWqp56w==
dependencies:
"@oclif/core" "^1.20.4"
@@ -14592,47 +14288,47 @@ oclif@^3:
on-finished@2.4.1:
version "2.4.1"
- resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f"
+ resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz"
integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
dependencies:
ee-first "1.1.1"
on-headers@~1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+ resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"
integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
once@^1.3.0, once@^1.3.1, once@^1.4.0:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
dependencies:
wrappy "1"
onetime@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
+ resolved "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"
integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==
dependencies:
mimic-fn "^1.0.0"
onetime@^5.1.0, onetime@^5.1.2:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+ resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"
integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
dependencies:
mimic-fn "^2.1.0"
onetime@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4"
+ resolved "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz"
integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==
dependencies:
mimic-fn "^4.0.0"
open@^7.1.0:
version "7.4.2"
- resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
+ resolved "https://registry.npmjs.org/open/-/open-7.4.2.tgz"
integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
dependencies:
is-docker "^2.0.0"
@@ -14640,7 +14336,7 @@ open@^7.1.0:
open@^8.4.0:
version "8.4.2"
- resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
+ resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz"
integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
dependencies:
define-lazy-prop "^2.0.0"
@@ -14649,7 +14345,7 @@ open@^8.4.0:
optionator@^0.9.1:
version "0.9.1"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
+ resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
dependencies:
deep-is "^0.1.3"
@@ -14661,7 +14357,7 @@ optionator@^0.9.1:
ora@5.3.0:
version "5.3.0"
- resolved "https://registry.yarnpkg.com/ora/-/ora-5.3.0.tgz#fb832899d3a1372fe71c8b2c534bbfe74961bb6f"
+ resolved "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz"
integrity sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==
dependencies:
bl "^4.0.3"
@@ -14675,7 +14371,7 @@ ora@5.3.0:
ora@^5.4.1:
version "5.4.1"
- resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18"
+ resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz"
integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==
dependencies:
bl "^4.1.0"
@@ -14690,103 +14386,103 @@ ora@^5.4.1:
os-tmpdir@~1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
+ resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"
integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
ospath@^1.2.2:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/ospath/-/ospath-1.2.2.tgz#1276639774a3f8ef2572f7fe4280e0ea4550c07b"
+ resolved "https://registry.npmjs.org/ospath/-/ospath-1.2.2.tgz"
integrity sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==
p-cancelable@^1.0.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc"
+ resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz"
integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==
p-cancelable@^2.0.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf"
+ resolved "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz"
integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==
p-finally@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+ resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"
integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
p-limit@3.1.0, p-limit@^3.0.2, p-limit@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+ resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
dependencies:
yocto-queue "^0.1.0"
p-limit@^1.1.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
+ resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz"
integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
dependencies:
p-try "^1.0.0"
p-limit@^2.2.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+ resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
dependencies:
p-try "^2.0.0"
p-locate@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
+ resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"
integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==
dependencies:
p-limit "^1.1.0"
p-locate@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+ resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
dependencies:
p-limit "^2.2.0"
p-locate@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+ resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
dependencies:
p-limit "^3.0.2"
p-map-series@2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2"
+ resolved "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz"
integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q==
p-map@4.0.0, p-map@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
+ resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz"
integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
dependencies:
aggregate-error "^3.0.0"
p-map@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
+ resolved "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz"
integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
p-map@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
+ resolved "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz"
integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
dependencies:
aggregate-error "^3.0.0"
p-pipe@3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e"
+ resolved "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz"
integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==
p-queue@6.6.2, p-queue@^6.6.2:
version "6.6.2"
- resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426"
+ resolved "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz"
integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
dependencies:
eventemitter3 "^4.0.4"
@@ -14794,19 +14490,19 @@ p-queue@6.6.2, p-queue@^6.6.2:
p-reduce@2.1.0, p-reduce@^2.0.0, p-reduce@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a"
+ resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz"
integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==
p-timeout@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
+ resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz"
integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
dependencies:
p-finally "^1.0.0"
p-transform@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/p-transform/-/p-transform-1.3.0.tgz#2da960ba92c6a56efbe75cbd1edf3ea7b3191049"
+ resolved "https://registry.npmjs.org/p-transform/-/p-transform-1.3.0.tgz"
integrity sha512-UJKdSzgd3KOnXXAtqN5+/eeHcvTn1hBkesEmElVgvO/NAYcxAvmjzIGmnNd3Tb/gRAvMBdNRFD4qAWdHxY6QXg==
dependencies:
debug "^4.3.2"
@@ -14814,24 +14510,24 @@ p-transform@^1.3.0:
p-try@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
+ resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"
integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==
p-try@^2.0.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+ resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
p-waterfall@2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-2.1.1.tgz#63153a774f472ccdc4eb281cdb2967fcf158b2ee"
+ resolved "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz"
integrity sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==
dependencies:
p-reduce "^2.0.0"
package-hash@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/package-hash/-/package-hash-4.0.0.tgz#3537f654665ec3cc38827387fc904c163c54f506"
+ resolved "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz"
integrity sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==
dependencies:
graceful-fs "^4.1.15"
@@ -14841,7 +14537,7 @@ package-hash@^4.0.0:
package-json@^6.3.0:
version "6.5.0"
- resolved "https://registry.yarnpkg.com/package-json/-/package-json-6.5.0.tgz#6feedaca35e75725876d0b0e64974697fed145b0"
+ resolved "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz"
integrity sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==
dependencies:
got "^9.6.0"
@@ -14851,7 +14547,7 @@ package-json@^6.3.0:
pacote@^12.0.0, pacote@^12.0.2:
version "12.0.3"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-12.0.3.tgz#b6f25868deb810e7e0ddf001be88da2bcaca57c7"
+ resolved "https://registry.npmjs.org/pacote/-/pacote-12.0.3.tgz"
integrity sha512-CdYEl03JDrRO3x18uHjBYA9TyoW8gy+ThVcypcDkxPtKlw76e4ejhYB6i9lJ+/cebbjpqPW/CijjqxwDTts8Ow==
dependencies:
"@npmcli/git" "^2.1.0"
@@ -14876,7 +14572,7 @@ pacote@^12.0.0, pacote@^12.0.2:
pacote@^17.0.5:
version "17.0.7"
- resolved "https://registry.yarnpkg.com/pacote/-/pacote-17.0.7.tgz#14b59a9bf5e3442c891af86825b97b7d72f48fba"
+ resolved "https://registry.npmjs.org/pacote/-/pacote-17.0.7.tgz"
integrity sha512-sgvnoUMlkv9xHwDUKjKQFXVyUi8dtJGKp3vg6sYy+TxbDic5RjZCHF3ygv0EJgNRZ2GfRONjlKPUfokJ9lDpwQ==
dependencies:
"@npmcli/git" "^5.0.0"
@@ -14900,12 +14596,12 @@ pacote@^17.0.5:
pad-component@0.0.1:
version "0.0.1"
- resolved "https://registry.yarnpkg.com/pad-component/-/pad-component-0.0.1.tgz#ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac"
+ resolved "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz"
integrity sha512-8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g==
param-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
+ resolved "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz"
integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
dependencies:
dot-case "^3.0.4"
@@ -14913,19 +14609,19 @@ param-case@^3.0.4:
parent-module@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+ resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
dependencies:
callsites "^3.0.0"
parse-cache-control@1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/parse-cache-control/-/parse-cache-control-1.0.1.tgz#8eeab3e54fa56920fe16ba38f77fa21aacc2d74e"
+ resolved "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz"
integrity sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==
parse-conflict-json@^2.0.1:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz#3d05bc8ffe07d39600dc6436c6aefe382033d323"
+ resolved "https://registry.npmjs.org/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz"
integrity sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==
dependencies:
json-parse-even-better-errors "^2.3.1"
@@ -14934,7 +14630,7 @@ parse-conflict-json@^2.0.1:
parse-entities@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.0.tgz#f67c856d4e3fe19b1a445c3fabe78dcdc1053eeb"
+ resolved "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.0.tgz"
integrity sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==
dependencies:
"@types/unist" "^2.0.0"
@@ -14948,7 +14644,7 @@ parse-entities@^4.0.0:
parse-filepath@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891"
+ resolved "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"
integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==
dependencies:
is-absolute "^1.0.0"
@@ -14957,7 +14653,7 @@ parse-filepath@^1.0.2:
parse-json@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
+ resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"
integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
dependencies:
error-ex "^1.3.1"
@@ -14965,7 +14661,7 @@ parse-json@^4.0.0:
parse-json@^5.0.0, parse-json@^5.2.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
+ resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
dependencies:
"@babel/code-frame" "^7.0.0"
@@ -14975,43 +14671,43 @@ parse-json@^5.0.0, parse-json@^5.2.0:
parse-numeric-range@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3"
+ resolved "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz"
integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==
parse-path@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b"
+ resolved "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz"
integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==
dependencies:
protocols "^2.0.0"
parse-srcset@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
+ resolved "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz"
integrity sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==
parse-url@^8.1.0:
version "8.1.0"
- resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d"
+ resolved "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz"
integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==
dependencies:
parse-path "^7.0.0"
parse5@^7.0.0, parse5@^7.1.1:
version "7.1.2"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
+ resolved "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz"
integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
dependencies:
entities "^4.4.0"
parseurl@~1.3.3:
version "1.3.3"
- resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
pascal-case@^3.1.2:
version "3.1.2"
- resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb"
+ resolved "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz"
integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==
dependencies:
no-case "^3.0.4"
@@ -15019,7 +14715,7 @@ pascal-case@^3.1.2:
password-prompt@^1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923"
+ resolved "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz"
integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==
dependencies:
ansi-escapes "^3.1.0"
@@ -15027,7 +14723,7 @@ password-prompt@^1.1.2:
path-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f"
+ resolved "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz"
integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==
dependencies:
dot-case "^3.0.4"
@@ -15035,59 +14731,59 @@ path-case@^3.0.4:
path-exists@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
+ resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
path-exists@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
path-is-absolute@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+ resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
path-is-inside@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
+ resolved "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"
integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==
path-key@^2.0.0, path-key@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+ resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"
integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
path-key@^3.0.0, path-key@^3.1.0:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+ resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
path-key@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18"
+ resolved "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz"
integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==
path-parse@^1.0.7:
version "1.0.7"
- resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
path-root-regex@^0.1.0:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
+ resolved "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"
integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==
path-root@^0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
+ resolved "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"
integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==
dependencies:
path-root-regex "^0.1.0"
path-scurry@^1.10.2, path-scurry@^1.6.1:
version "1.10.2"
- resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.2.tgz#8f6357eb1239d5fa1da8b9f70e9c080675458ba7"
+ resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz"
integrity sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==
dependencies:
lru-cache "^10.2.0"
@@ -15095,24 +14791,24 @@ path-scurry@^1.10.2, path-scurry@^1.6.1:
path-to-regexp@0.1.7:
version "0.1.7"
- resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
+ resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"
integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==
path-type@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
+ resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"
integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
dependencies:
pify "^3.0.0"
path-type@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+ resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
path@^0.12.7:
version "0.12.7"
- resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"
+ resolved "https://registry.npmjs.org/path/-/path-0.12.7.tgz"
integrity sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==
dependencies:
process "^0.11.1"
@@ -15120,92 +14816,87 @@ path@^0.12.7:
pathval@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d"
+ resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"
integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==
pend@~1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
+ resolved "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz"
integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==
performance-now@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
+ resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"
integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==
periscopic@^3.0.0:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.0.4.tgz#b3fbed0d1bc844976b977173ca2cd4a0ef4fa8d1"
+ resolved "https://registry.npmjs.org/periscopic/-/periscopic-3.0.4.tgz"
integrity sha512-SFx68DxCv0Iyo6APZuw/AKewkkThGwssmU0QWtTlvov3VAtPX+QJ4CadwSaz8nrT5jPIuxdvJWB4PnD2KNDxQg==
dependencies:
estree-walker "^3.0.0"
is-reference "^3.0.0"
-picocolors@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
- integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
-
-picocolors@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1"
- integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==
+picocolors@^1.0.0, picocolors@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz"
+ integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.2.3, picomatch@^2.3.1:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
+ resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
pidtree@0.6.0:
version "0.6.0"
- resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c"
+ resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz"
integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==
pify@5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f"
+ resolved "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz"
integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
pify@^2.2.0, pify@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+ resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
pify@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
+ resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"
integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
pify@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
+ resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
pirates@^4.0.4:
version "4.0.6"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9"
+ resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz"
integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==
pkg-dir@^4.1.0, pkg-dir@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+ resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"
integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
dependencies:
find-up "^4.0.0"
postcss-media-query-parser@^0.2.3:
version "0.2.3"
- resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244"
+ resolved "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz"
integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==
postcss-modules-extract-imports@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
+ resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz"
integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
postcss-modules-local-by-default@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c"
+ resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz"
integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==
dependencies:
icss-utils "^5.0.0"
@@ -15214,36 +14905,36 @@ postcss-modules-local-by-default@^4.0.0:
postcss-modules-scope@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
+ resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz"
integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==
dependencies:
postcss-selector-parser "^6.0.4"
postcss-modules-values@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
+ resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"
integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==
dependencies:
icss-utils "^5.0.0"
postcss-resolve-nested-selector@^0.1.1:
version "0.1.1"
- resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e"
+ resolved "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz"
integrity sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==
postcss-safe-parser@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1"
+ resolved "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz"
integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==
postcss-scss@^4.0.2:
version "4.0.6"
- resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.6.tgz#5d62a574b950a6ae12f2aa89b60d63d9e4432bfd"
+ resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.6.tgz"
integrity sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ==
postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.6:
version "6.0.11"
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc"
+ resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz"
integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==
dependencies:
cssesc "^3.0.0"
@@ -15251,17 +14942,17 @@ postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selecto
postcss-sorting@^7.0.1:
version "7.0.1"
- resolved "https://registry.yarnpkg.com/postcss-sorting/-/postcss-sorting-7.0.1.tgz#923b5268451cf2d93ebf8835e17a6537757049a5"
+ resolved "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-7.0.1.tgz"
integrity sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==
postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
+ resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
postcss@8.4.14:
version "8.4.14"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"
integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
dependencies:
nanoid "^3.3.4"
@@ -15270,7 +14961,7 @@ postcss@8.4.14:
postcss@8.4.31, postcss@^8.3.11, postcss@^8.4.19, postcss@^8.4.4:
version "8.4.31"
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"
integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
dependencies:
nanoid "^3.3.6"
@@ -15279,7 +14970,7 @@ postcss@8.4.31, postcss@^8.3.11, postcss@^8.4.19, postcss@^8.4.4:
prebuild-install@^7.1.1:
version "7.1.1"
- resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45"
+ resolved "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz"
integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==
dependencies:
detect-libc "^2.0.0"
@@ -15297,7 +14988,7 @@ prebuild-install@^7.1.1:
preferred-pm@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/preferred-pm/-/preferred-pm-3.0.3.tgz#1b6338000371e3edbce52ef2e4f65eb2e73586d6"
+ resolved "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.0.3.tgz"
integrity sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==
dependencies:
find-up "^5.0.0"
@@ -15307,50 +14998,41 @@ preferred-pm@^3.0.3:
prelude-ls@^1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+ resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
prepend-http@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
+ resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz"
integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==
prettier@^2.2.0:
version "2.8.3"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.3.tgz#ab697b1d3dd46fb4626fbe2f543afe0cc98d8632"
+ resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz"
integrity sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==
prettier@^3.1.0:
- version "3.2.5"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368"
- integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105"
+ integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==
pretty-bytes@^5.3.0, pretty-bytes@^5.6.0:
version "5.6.0"
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb"
+ resolved "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz"
integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==
pretty-format@^27.0.2:
version "27.5.1"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e"
+ resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz"
integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==
dependencies:
ansi-regex "^5.0.1"
ansi-styles "^5.0.0"
react-is "^17.0.1"
-pretty-format@^29.0.0, pretty-format@^29.6.2:
- version "29.6.2"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.6.2.tgz#3d5829261a8a4d89d8b9769064b29c50ed486a47"
- integrity sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==
- dependencies:
- "@jest/schemas" "^29.6.0"
- ansi-styles "^5.0.0"
- react-is "^18.0.0"
-
-pretty-format@^29.7.0:
+pretty-format@^29.0.0, pretty-format@^29.2.1, pretty-format@^29.7.0:
version "29.7.0"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812"
+ resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz"
integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==
dependencies:
"@jest/schemas" "^29.6.3"
@@ -15359,59 +15041,59 @@ pretty-format@^29.7.0:
proc-log@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-1.0.0.tgz#0d927307401f69ed79341e83a0b2c9a13395eb77"
+ resolved "https://registry.npmjs.org/proc-log/-/proc-log-1.0.0.tgz"
integrity sha512-aCk8AO51s+4JyuYGg3Q/a6gnrlDO09NpVWePtjp7xwphcoQ04x5WAfCyugcsbLooWcMJ87CLkD4+604IckEdhg==
proc-log@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8"
+ resolved "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz"
integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==
proc-log@^4.0.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-4.2.0.tgz#b6f461e4026e75fdfe228b265e9f7a00779d7034"
+ resolved "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz"
integrity sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==
process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
process-on-spawn@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/process-on-spawn/-/process-on-spawn-1.0.0.tgz#95b05a23073d30a17acfdc92a440efd2baefdc93"
+ resolved "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz"
integrity sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==
dependencies:
fromentries "^1.2.0"
process@^0.11.1, process@^0.11.10:
version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+ resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
progress@^2.0.0:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
+ resolved "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
promise-all-reject-late@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2"
+ resolved "https://registry.npmjs.org/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz"
integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==
promise-call-limit@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz#4bdee03aeb85674385ca934da7114e9bcd3c6e24"
+ resolved "https://registry.npmjs.org/promise-call-limit/-/promise-call-limit-1.0.1.tgz"
integrity sha512-3+hgaa19jzCGLuSCbieeRsu5C2joKfYn8pY6JAuXFRVfF4IO+L7UPpFWNTeWT9pM7uhskvbPPd/oEOktCn317Q==
promise-inflight@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
+ resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz"
integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
promise-retry@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
+ resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz"
integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==
dependencies:
err-code "^2.0.2"
@@ -15419,14 +15101,14 @@ promise-retry@^2.0.1:
promise@^7.1.1:
version "7.3.1"
- resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
+ resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"
integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==
dependencies:
asap "~2.0.3"
prompts@^2.0.1:
version "2.4.2"
- resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069"
+ resolved "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz"
integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==
dependencies:
kleur "^3.0.3"
@@ -15434,14 +15116,14 @@ prompts@^2.0.1:
promzard@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/promzard/-/promzard-1.0.1.tgz#3b77251a24f988c0886f5649d4f642bcdd53e558"
+ resolved "https://registry.npmjs.org/promzard/-/promzard-1.0.1.tgz"
integrity sha512-ulDF77aULEHUoJkN5XZgRV5loHXBaqd9eorMvLNLvi2gXMuRAtwH6Gh4zsMHQY1kTt7tyv/YZwZW5C2gtj8F2A==
dependencies:
read "^3.0.1"
prop-types@^15.7.2, prop-types@^15.8.1:
version "15.8.1"
- resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
+ resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
dependencies:
loose-envify "^1.4.0"
@@ -15450,12 +15132,12 @@ prop-types@^15.7.2, prop-types@^15.8.1:
property-information@^6.0.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d"
+ resolved "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz"
integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==
protobufjs@^7.0.0, protobufjs@^7.2.2:
version "7.2.5"
- resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.2.5.tgz#45d5c57387a6d29a17aab6846dcc283f9b8e7f2d"
+ resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz"
integrity sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==
dependencies:
"@protobufjs/aspromise" "^1.1.2"
@@ -15473,12 +15155,12 @@ protobufjs@^7.0.0, protobufjs@^7.2.2:
protocols@^2.0.0, protocols@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86"
+ resolved "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz"
integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==
proxy-addr@~2.0.7:
version "2.0.7"
- resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
+ resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz"
integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
dependencies:
forwarded "0.2.0"
@@ -15486,37 +15168,37 @@ proxy-addr@~2.0.7:
proxy-from-env@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee"
+ resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz"
integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==
proxy-from-env@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
+ resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz"
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
ps-list@^8.0.0:
version "8.1.1"
- resolved "https://registry.yarnpkg.com/ps-list/-/ps-list-8.1.1.tgz#9ff1952b26a9a07fcc05270407e60544237ae581"
+ resolved "https://registry.npmjs.org/ps-list/-/ps-list-8.1.1.tgz"
integrity sha512-OPS9kEJYVmiO48u/B9qneqhkMvgCxT+Tm28VCEJpheTpl8cJ0ffZRRNgS5mrQRTrX5yRTpaJ+hRDeefXYmmorQ==
pseudomap@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
+ resolved "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"
integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==
-psl@^1.1.28, psl@^1.1.33:
+psl@^1.1.33:
version "1.9.0"
- resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7"
+ resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz"
integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
pstree.remy@^1.1.8:
version "1.1.8"
- resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a"
+ resolved "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz"
integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==
pump@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
+ resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==
dependencies:
end-of-stream "^1.1.0"
@@ -15524,93 +15206,93 @@ pump@^3.0.0:
punycode@1.3.2:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
+ resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"
integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==
punycode@^1.3.2:
version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
+ resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"
integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==
punycode@^2.1.0, punycode@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
+ resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
pure-rand@^6.0.0:
version "6.0.2"
- resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.0.2.tgz#a9c2ddcae9b68d736a8163036f088a2781c8b306"
+ resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz"
integrity sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==
pvtsutils@^1.3.2:
version "1.3.2"
- resolved "https://registry.yarnpkg.com/pvtsutils/-/pvtsutils-1.3.2.tgz#9f8570d132cdd3c27ab7d51a2799239bf8d8d5de"
+ resolved "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.2.tgz"
integrity sha512-+Ipe2iNUyrZz+8K/2IOo+kKikdtfhRKzNpQbruF2URmqPtoqAs8g3xS7TJvFF2GcPXjh7DkqMnpVveRFq4PgEQ==
dependencies:
tslib "^2.4.0"
pvutils@^1.1.3:
version "1.1.3"
- resolved "https://registry.yarnpkg.com/pvutils/-/pvutils-1.1.3.tgz#f35fc1d27e7cd3dfbd39c0826d173e806a03f5a3"
+ resolved "https://registry.npmjs.org/pvutils/-/pvutils-1.1.3.tgz"
integrity sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==
q@^1.5.1:
version "1.5.1"
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
+ resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz"
integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
qs@6.11.0:
version "6.11.0"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
+ resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz"
integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
dependencies:
side-channel "^1.0.4"
qs@~6.10.3:
version "6.10.5"
- resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4"
+ resolved "https://registry.npmjs.org/qs/-/qs-6.10.5.tgz"
integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==
dependencies:
side-channel "^1.0.4"
querystring@0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
+ resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"
integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==
querystringify@^2.1.1:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
+ resolved "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz"
integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
queue-microtask@^1.2.2:
version "1.2.3"
- resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
+ resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
queue-tick@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/queue-tick/-/queue-tick-1.0.1.tgz#f6f07ac82c1fd60f82e098b417a80e52f1f4c142"
+ resolved "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz"
integrity sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==
quick-lru@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
+ resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz"
integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
quick-lru@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
+ resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz"
integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
range-parser@~1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
raven@^2.2.1:
version "2.6.4"
- resolved "https://registry.yarnpkg.com/raven/-/raven-2.6.4.tgz#458d4a380c8fbb59e0150c655625aaf60c167ea3"
+ resolved "https://registry.npmjs.org/raven/-/raven-2.6.4.tgz"
integrity sha512-6PQdfC4+DQSFncowthLf+B6Hr0JpPsFBgTVYTAOq7tCmx/kR4SXbeawtPch20+3QfUcQDoJBLjWW1ybvZ4kXTw==
dependencies:
cookie "0.3.1"
@@ -15621,7 +15303,7 @@ raven@^2.2.1:
raw-body@2.5.2:
version "2.5.2"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a"
+ resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz"
integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
dependencies:
bytes "3.1.2"
@@ -15631,7 +15313,7 @@ raw-body@2.5.2:
raw-body@^2.4.1:
version "2.5.1"
- resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857"
+ resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz"
integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==
dependencies:
bytes "3.1.2"
@@ -15641,7 +15323,7 @@ raw-body@^2.4.1:
rc@1.2.8, rc@^1.2.7, rc@^1.2.8:
version "1.2.8"
- resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
+ resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"
integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==
dependencies:
deep-extend "^0.6.0"
@@ -15651,12 +15333,12 @@ rc@1.2.8, rc@^1.2.7, rc@^1.2.8:
react-docgen-typescript@^2.2.2:
version "2.2.2"
- resolved "https://registry.yarnpkg.com/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz#4611055e569edc071204aadb20e1c93e1ab1659c"
+ resolved "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz"
integrity sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==
react-dom@^18.2.0:
version "18.2.0"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
+ resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz"
integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
dependencies:
loose-envify "^1.1.0"
@@ -15664,56 +15346,56 @@ react-dom@^18.2.0:
react-error-boundary@^3.1.0:
version "3.1.4"
- resolved "https://registry.yarnpkg.com/react-error-boundary/-/react-error-boundary-3.1.4.tgz#255db92b23197108757a888b01e5b729919abde0"
+ resolved "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz"
integrity sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==
dependencies:
"@babel/runtime" "^7.12.5"
react-intersection-observer@^8.32.5:
version "8.34.0"
- resolved "https://registry.yarnpkg.com/react-intersection-observer/-/react-intersection-observer-8.34.0.tgz#6f6e67831c52e6233f6b6cc7eb55814820137c42"
+ resolved "https://registry.npmjs.org/react-intersection-observer/-/react-intersection-observer-8.34.0.tgz"
integrity sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==
react-is@^16.13.1:
version "16.13.1"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+ resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
react-is@^17.0.1:
version "17.0.2"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
+ resolved "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
react-is@^18.0.0:
- version "18.3.1"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e"
- integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
+ version "18.2.0"
+ resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz"
+ integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==
react-swipeable@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/react-swipeable/-/react-swipeable-7.0.0.tgz#7a12570ee435d35ac700511de338384aa78d12cd"
+ resolved "https://registry.npmjs.org/react-swipeable/-/react-swipeable-7.0.0.tgz"
integrity sha512-NI7KGfQ6gwNFN0Hor3vytYW3iRfMMaivGEuxcADOOfBCx/kqwXE8IfHFxEcxSUkxCYf38COLKYd9EMYZghqaUA==
react@^18.2.0:
version "18.2.0"
- resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
+ resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz"
integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
dependencies:
loose-envify "^1.1.0"
read-cmd-shim@4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz#640a08b473a49043e394ae0c7a34dd822c73b9bb"
+ resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz"
integrity sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q==
read-cmd-shim@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-3.0.1.tgz#868c235ec59d1de2db69e11aec885bc095aea087"
+ resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-3.0.1.tgz"
integrity sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==
read-package-json-fast@^2.0.1, read-package-json-fast@^2.0.2, read-package-json-fast@^2.0.3:
version "2.0.3"
- resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz#323ca529630da82cb34b36cc0b996693c98c2b83"
+ resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz"
integrity sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==
dependencies:
json-parse-even-better-errors "^2.3.0"
@@ -15721,7 +15403,7 @@ read-package-json-fast@^2.0.1, read-package-json-fast@^2.0.2, read-package-json-
read-package-json-fast@^3.0.0:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz#394908a9725dc7a5f14e70c8e7556dff1d2b1049"
+ resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz"
integrity sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==
dependencies:
json-parse-even-better-errors "^3.0.0"
@@ -15729,7 +15411,7 @@ read-package-json-fast@^3.0.0:
read-package-json@6.0.4, read-package-json@^6.0.0:
version "6.0.4"
- resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.4.tgz#90318824ec456c287437ea79595f4c2854708836"
+ resolved "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz"
integrity sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==
dependencies:
glob "^10.2.2"
@@ -15739,7 +15421,7 @@ read-package-json@6.0.4, read-package-json@^6.0.0:
read-package-json@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-7.0.0.tgz#d605c9dcf6bc5856da24204aa4e9518ee9714be0"
+ resolved "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz"
integrity sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==
dependencies:
glob "^10.2.2"
@@ -15749,7 +15431,7 @@ read-package-json@^7.0.0:
read-pkg-up@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
+ resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz"
integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==
dependencies:
find-up "^2.0.0"
@@ -15757,7 +15439,7 @@ read-pkg-up@^3.0.0:
read-pkg-up@^7.0.1:
version "7.0.1"
- resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507"
+ resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"
integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
dependencies:
find-up "^4.1.0"
@@ -15766,7 +15448,7 @@ read-pkg-up@^7.0.1:
read-pkg@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
+ resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"
integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==
dependencies:
load-json-file "^4.0.0"
@@ -15775,7 +15457,7 @@ read-pkg@^3.0.0:
read-pkg@^5.2.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc"
+ resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"
integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
dependencies:
"@types/normalize-package-data" "^2.4.0"
@@ -15785,21 +15467,21 @@ read-pkg@^5.2.0:
read@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/read/-/read-2.1.0.tgz#69409372c54fe3381092bc363a00650b6ac37218"
+ resolved "https://registry.npmjs.org/read/-/read-2.1.0.tgz"
integrity sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ==
dependencies:
mute-stream "~1.0.0"
read@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/read/-/read-3.0.1.tgz#926808f0f7c83fa95f1ef33c0e2c09dbb28fd192"
+ resolved "https://registry.npmjs.org/read/-/read-3.0.1.tgz"
integrity sha512-SLBrDU/Srs/9EoWhU5GdbAoxG1GzpQHo/6qiGItaoLJ1thmYpcNIM1qISEUvyHBzfGlWIyd6p2DNi1oV1VmAuw==
dependencies:
mute-stream "^1.0.0"
readable-stream@^2.0.2, readable-stream@^2.3.5:
version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
dependencies:
core-util-is "~1.0.0"
@@ -15812,7 +15494,7 @@ readable-stream@^2.0.2, readable-stream@^2.3.5:
readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0:
version "3.6.2"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz"
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
@@ -15821,7 +15503,7 @@ readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.1.1, readable
readable-stream@~1.0.31:
version "1.0.34"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"
integrity sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==
dependencies:
core-util-is "~1.0.0"
@@ -15831,7 +15513,7 @@ readable-stream@~1.0.31:
readable-stream@~2.3.6:
version "2.3.8"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
@@ -15844,7 +15526,7 @@ readable-stream@~2.3.6:
readdir-scoped-modules@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309"
+ resolved "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz"
integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==
dependencies:
debuglog "^1.0.1"
@@ -15854,19 +15536,19 @@ readdir-scoped-modules@^1.1.0:
readdirp@~3.6.0:
version "3.6.0"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
+ resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
dependencies:
picomatch "^2.2.1"
reading-time@^1.3.0:
version "1.5.0"
- resolved "https://registry.yarnpkg.com/reading-time/-/reading-time-1.5.0.tgz#d2a7f1b6057cb2e169beaf87113cc3411b5bc5bb"
+ resolved "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz"
integrity sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==
realistic-structured-clone@^2.0.1:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/realistic-structured-clone/-/realistic-structured-clone-2.0.4.tgz#7eb4c2319fc3cb72f4c8d3c9e888b11647894b50"
+ resolved "https://registry.npmjs.org/realistic-structured-clone/-/realistic-structured-clone-2.0.4.tgz"
integrity sha512-lItAdBIFHUSe6fgztHPtmmWqKUgs+qhcYLi3wTRUl4OTB3Vb8aBVSjGfQZUvkmJCKoX3K9Wf7kyLp/F/208+7A==
dependencies:
core-js "^3.4"
@@ -15876,14 +15558,14 @@ realistic-structured-clone@^2.0.1:
rechoir@^0.6.2:
version "0.6.2"
- resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
+ resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"
integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==
dependencies:
resolve "^1.1.6"
redent@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
+ resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz"
integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
dependencies:
indent-string "^4.0.0"
@@ -15891,19 +15573,19 @@ redent@^3.0.0:
redeyed@~2.1.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b"
+ resolved "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz"
integrity sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==
dependencies:
esprima "~4.0.0"
regenerator-runtime@^0.13.11:
version "0.13.11"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz"
integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
regexp.prototype.flags@^1.4.3:
version "1.4.3"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
+ resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
dependencies:
call-bind "^1.0.2"
@@ -15912,26 +15594,26 @@ regexp.prototype.flags@^1.4.3:
regexpp@^3.1.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
+ resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
registry-auth-token@^4.0.0:
version "4.2.2"
- resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.2.tgz#f02d49c3668884612ca031419491a13539e21fac"
+ resolved "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz"
integrity sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==
dependencies:
rc "1.2.8"
registry-url@^5.0.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-5.1.0.tgz#e98334b50d5434b81136b44ec638d9c2009c5009"
+ resolved "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz"
integrity sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==
dependencies:
rc "^1.2.8"
rehype-katex@^6.0.3:
version "6.0.3"
- resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-6.0.3.tgz#83e5b929b0967978e9491c02117f55be3594d7e1"
+ resolved "https://registry.npmjs.org/rehype-katex/-/rehype-katex-6.0.3.tgz"
integrity sha512-ByZlRwRUcWegNbF70CVRm2h/7xy7jQ3R9LaY4VVSvjnoVWwWVhNL60DiZsBpC5tSzYQOCvDbzncIpIjPZWodZA==
dependencies:
"@types/hast" "^2.0.0"
@@ -15943,7 +15625,7 @@ rehype-katex@^6.0.3:
rehype-pretty-code@0.9.9:
version "0.9.9"
- resolved "https://registry.yarnpkg.com/rehype-pretty-code/-/rehype-pretty-code-0.9.9.tgz#b3123ae6bcbff4957a4bbf923dd2478debd1585b"
+ resolved "https://registry.npmjs.org/rehype-pretty-code/-/rehype-pretty-code-0.9.9.tgz"
integrity sha512-mlU2Qgupn9MMK31CTmWk0Ie5Vp0od+jh2vCkGDBMlPAMeAvYASn6Ois6xRmosutMT4yH/COc3R4r/PELpuUoWg==
dependencies:
"@types/hast" "^2.0.0"
@@ -15952,7 +15634,7 @@ rehype-pretty-code@0.9.9:
relay-runtime@12.0.0:
version "12.0.0"
- resolved "https://registry.yarnpkg.com/relay-runtime/-/relay-runtime-12.0.0.tgz#1e039282bdb5e0c1b9a7dc7f6b9a09d4f4ff8237"
+ resolved "https://registry.npmjs.org/relay-runtime/-/relay-runtime-12.0.0.tgz"
integrity sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==
dependencies:
"@babel/runtime" "^7.0.0"
@@ -15961,14 +15643,14 @@ relay-runtime@12.0.0:
release-zalgo@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/release-zalgo/-/release-zalgo-1.0.0.tgz#09700b7e5074329739330e535c5a90fb67851730"
+ resolved "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"
integrity sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==
dependencies:
es6-error "^4.0.1"
remark-gfm@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-3.0.1.tgz#0b180f095e3036545e9dddac0e8df3fa5cfee54f"
+ resolved "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz"
integrity sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==
dependencies:
"@types/mdast" "^3.0.0"
@@ -15978,7 +15660,7 @@ remark-gfm@^3.0.1:
remark-math@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-5.1.1.tgz#459e798d978d4ca032e745af0bac81ddcdf94964"
+ resolved "https://registry.npmjs.org/remark-math/-/remark-math-5.1.1.tgz"
integrity sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==
dependencies:
"@types/mdast" "^3.0.0"
@@ -15988,7 +15670,7 @@ remark-math@^5.1.1:
remark-mdx@^2.0.0:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.2.1.tgz#0d006436acf039b526c3b6b47ea4a44b3d544db7"
+ resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.2.1.tgz"
integrity sha512-R9wcN+/THRXTKyRBp6Npo/mcbGA2iT3N4G8qUqLA5pOEg7kBidHv8K2hHidCMYZ6DXmwK18umu0K4cicgA2PPQ==
dependencies:
mdast-util-mdx "^2.0.0"
@@ -15996,7 +15678,7 @@ remark-mdx@^2.0.0:
remark-parse@^10.0.0:
version "10.0.1"
- resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.1.tgz#6f60ae53edbf0cf38ea223fe643db64d112e0775"
+ resolved "https://registry.npmjs.org/remark-parse/-/remark-parse-10.0.1.tgz"
integrity sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==
dependencies:
"@types/mdast" "^3.0.0"
@@ -16005,7 +15687,7 @@ remark-parse@^10.0.0:
remark-reading-time@^2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/remark-reading-time/-/remark-reading-time-2.0.1.tgz#fe8bb8e420db7678dc749385167adb4fc99318f7"
+ resolved "https://registry.npmjs.org/remark-reading-time/-/remark-reading-time-2.0.1.tgz"
integrity sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==
dependencies:
estree-util-is-identifier-name "^2.0.0"
@@ -16015,7 +15697,7 @@ remark-reading-time@^2.0.1:
remark-rehype@^10.0.0:
version "10.1.0"
- resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-10.1.0.tgz#32dc99d2034c27ecaf2e0150d22a6dcccd9a6279"
+ resolved "https://registry.npmjs.org/remark-rehype/-/remark-rehype-10.1.0.tgz"
integrity sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==
dependencies:
"@types/hast" "^2.0.0"
@@ -16025,91 +15707,91 @@ remark-rehype@^10.0.0:
remedial@^1.0.7:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/remedial/-/remedial-1.0.8.tgz#a5e4fd52a0e4956adbaf62da63a5a46a78c578a0"
+ resolved "https://registry.npmjs.org/remedial/-/remedial-1.0.8.tgz"
integrity sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==
remove-accents@0.4.2:
version "0.4.2"
- resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5"
+ resolved "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz"
integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==
remove-trailing-separator@^1.0.1:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
+ resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"
integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==
remove-trailing-spaces@^1.0.6:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz#4354d22f3236374702f58ee373168f6d6887ada7"
+ resolved "https://registry.npmjs.org/remove-trailing-spaces/-/remove-trailing-spaces-1.0.8.tgz"
integrity sha512-O3vsMYfWighyFbTd8hk8VaSj9UAGENxAtX+//ugIst2RMk5e03h6RoIS+0ylsFxY1gvmPuAY/PO4It+gPEeySA==
replace-ext@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a"
+ resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz"
integrity sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==
request-progress@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-3.0.0.tgz#4ca754081c7fec63f505e4faa825aa06cd669dbe"
+ resolved "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz"
integrity sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==
dependencies:
throttleit "^1.0.0"
require-directory@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+ resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
require-from-string@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+ resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
require-main-filename@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
+ resolved "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
requires-port@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
+ resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"
integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
resolve-alpn@^1.0.0:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9"
+ resolved "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz"
integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==
resolve-cwd@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
+ resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz"
integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
dependencies:
resolve-from "^5.0.0"
resolve-from@5.0.0, resolve-from@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
+ resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
resolve-from@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+ resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
resolve-pkg-maps@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
+ resolved "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz"
integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
resolve.exports@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800"
+ resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz"
integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==
resolve@^1.1.6, resolve@^1.20.0, resolve@^1.22.0:
version "1.22.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
+ resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
dependencies:
is-core-module "^2.9.0"
@@ -16118,7 +15800,7 @@ resolve@^1.1.6, resolve@^1.20.0, resolve@^1.22.0:
resolve@^1.10.0:
version "1.22.8"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d"
+ resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz"
integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==
dependencies:
is-core-module "^2.13.0"
@@ -16127,7 +15809,7 @@ resolve@^1.10.0:
resolve@^2.0.0-next.3:
version "2.0.0-next.4"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660"
+ resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz"
integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
dependencies:
is-core-module "^2.9.0"
@@ -16136,21 +15818,21 @@ resolve@^2.0.0-next.3:
responselike@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
+ resolved "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz"
integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==
dependencies:
lowercase-keys "^1.0.0"
responselike@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/responselike/-/responselike-2.0.1.tgz#9a0bc8fdc252f3fb1cca68b016591059ba1422bc"
+ resolved "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz"
integrity sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==
dependencies:
lowercase-keys "^2.0.0"
restore-cursor@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
+ resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"
integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==
dependencies:
onetime "^2.0.0"
@@ -16158,7 +15840,7 @@ restore-cursor@^2.0.0:
restore-cursor@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+ resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz"
integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
dependencies:
onetime "^5.1.0"
@@ -16166,7 +15848,7 @@ restore-cursor@^3.1.0:
restore-cursor@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9"
+ resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz"
integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==
dependencies:
onetime "^5.1.0"
@@ -16174,113 +15856,113 @@ restore-cursor@^4.0.0:
retry@^0.12.0:
version "0.12.0"
- resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
+ resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz"
integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
reusify@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
+ resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
rfdc@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
+ resolved "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz"
integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
rimraf@^2.6.3:
version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
+ resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
glob "^7.1.3"
rimraf@^3.0.0, rimraf@^3.0.2:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
dependencies:
glob "^7.1.3"
rimraf@^4.4.1:
version "4.4.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.4.1.tgz#bd33364f67021c5b79e93d7f4fa0568c7c21b755"
+ resolved "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz"
integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==
dependencies:
glob "^9.2.0"
robots-parser@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/robots-parser/-/robots-parser-3.0.0.tgz#66af89306302ecd004455f2f24298310d0966631"
+ resolved "https://registry.npmjs.org/robots-parser/-/robots-parser-3.0.0.tgz"
integrity sha512-6xkze3WRdneibICBAzMKcXyTKQw5shA3GbwoEJy7RSvxpZNGF0GMuYKE1T0VMP4fwx/fQs0n0mtriOqRtk5L1w==
robust-predicates@^3.0.0:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771"
+ resolved "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz"
integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==
run-async@^2.0.0, run-async@^2.2.0, run-async@^2.4.0:
version "2.4.1"
- resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
+ resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"
integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
run-parallel@^1.1.9:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
+ resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
dependencies:
queue-microtask "^1.2.2"
rw@1:
version "1.3.3"
- resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
+ resolved "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz"
integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==
rxjs@^6.3.3, rxjs@^6.4.0, rxjs@^6.6.0, rxjs@^6.6.3:
version "6.6.7"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
+ resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz"
integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
dependencies:
tslib "^1.9.0"
rxjs@^7.0.0, rxjs@^7.5.1:
version "7.8.0"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
+ resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.0.tgz"
integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
dependencies:
tslib "^2.1.0"
rxjs@^7.5.5:
version "7.8.1"
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543"
+ resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz"
integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==
dependencies:
tslib "^2.1.0"
sade@^1.7.3:
version "1.8.1"
- resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701"
+ resolved "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz"
integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
dependencies:
mri "^1.1.0"
safari-14-idb-fix@^1.0.6:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/safari-14-idb-fix/-/safari-14-idb-fix-1.0.6.tgz#cbaabc33a4500c44b5c432d6c525b0ed9b68bb65"
+ resolved "https://registry.npmjs.org/safari-14-idb-fix/-/safari-14-idb-fix-1.0.6.tgz"
integrity sha512-oTEQOdMwRX+uCtWCKT1nx2gAeSdpr8elg/2gcaKUH00SJU2xWESfkx11nmXwTRHy7xfQoj1o4TTQvdmuBosTnA==
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+ resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
safe-buffer@5.2.1, safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
version "5.2.1"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
safe-regex-test@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
+ resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"
integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
dependencies:
call-bind "^1.0.2"
@@ -16289,12 +15971,12 @@ safe-regex-test@^1.0.0:
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
sanitize-html@^2.11.0:
version "2.12.1"
- resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.12.1.tgz#280a0f5c37305222921f6f9d605be1f6558914c7"
+ resolved "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.12.1.tgz"
integrity sha512-Plh+JAn0UVDpBRP/xEjsk+xDCoOvMBwQUf/K+/cBAVuTbtX8bj2VB7S1sL1dssVpykqp0/KPSesHrqXtokVBpA==
dependencies:
deepmerge "^4.2.2"
@@ -16306,7 +15988,7 @@ sanitize-html@^2.11.0:
sass-loader@^12.6.0:
version "12.6.0"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz#5148362c8e2cdd4b950f3c63ac5d16dbfed37bcb"
+ resolved "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz"
integrity sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==
dependencies:
klona "^2.0.4"
@@ -16314,7 +15996,7 @@ sass-loader@^12.6.0:
sass@^1.44.0:
version "1.58.0"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.58.0.tgz#ee8aea3ad5ea5c485c26b3096e2df6087d0bb1cc"
+ resolved "https://registry.npmjs.org/sass/-/sass-1.58.0.tgz"
integrity sha512-PiMJcP33DdKtZ/1jSjjqVIKihoDc6yWmYr9K/4r3fVVIEDAluD0q7XZiRKrNJcPK3qkLRF/79DND1H5q1LBjgg==
dependencies:
chokidar ">=3.0.0 <4.0.0"
@@ -16323,7 +16005,7 @@ sass@^1.44.0:
sass@^1.57.1:
version "1.57.1"
- resolved "https://registry.yarnpkg.com/sass/-/sass-1.57.1.tgz#dfafd46eb3ab94817145e8825208ecf7281119b5"
+ resolved "https://registry.npmjs.org/sass/-/sass-1.57.1.tgz"
integrity sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==
dependencies:
chokidar ">=3.0.0 <4.0.0"
@@ -16332,31 +16014,31 @@ sass@^1.57.1:
sax@1.2.1:
version "1.2.1"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a"
+ resolved "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz"
integrity sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==
sax@>=0.6.0:
version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
+ resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
saxes@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5"
+ resolved "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz"
integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==
dependencies:
xmlchars "^2.2.0"
scheduler@^0.23.0:
version "0.23.0"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
+ resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz"
integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
dependencies:
loose-envify "^1.1.0"
schema-utils@^2.6.5:
version "2.7.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
+ resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz"
integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
dependencies:
"@types/json-schema" "^7.0.5"
@@ -16365,24 +16047,24 @@ schema-utils@^2.6.5:
scoped-regex@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/scoped-regex/-/scoped-regex-2.1.0.tgz#7b9be845d81fd9d21d1ec97c61a0b7cf86d2015f"
+ resolved "https://registry.npmjs.org/scoped-regex/-/scoped-regex-2.1.0.tgz"
integrity sha512-g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ==
scroll-into-view-if-needed@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.3.tgz#57256bef78f3c3c288070d2aaa63cf547aa11e70"
+ resolved "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.3.tgz"
integrity sha512-QoCH0lVw0tbA7Rl6sToH7e1tO3n95Oi6JgBgC8hEpNNZUC91MfasJ/4E1ZdbzGueNDZ+Y7ObfRaelKUgTyPbJA==
dependencies:
compute-scroll-into-view "^2.0.2"
scuid@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/scuid/-/scuid-1.1.0.tgz#d3f9f920956e737a60f72d0e4ad280bf324d5dab"
+ resolved "https://registry.npmjs.org/scuid/-/scuid-1.1.0.tgz"
integrity sha512-MuCAyrGZcTLfQoH2XoBlQ8C6bzwN88XT/0slOGz0pn8+gIP85BOAfYa44ZXQUTOwRwPU0QvgU+V+OSajl/59Xg==
section-matter@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167"
+ resolved "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz"
integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==
dependencies:
extend-shallow "^2.0.1"
@@ -16390,45 +16072,43 @@ section-matter@^1.0.0:
semver-diff@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"
+ resolved "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"
integrity sha512-gL8F8L4ORwsS0+iQ34yCYv///jsOq0ZL7WP55d1HnJ32o7tyFYEFQZQA22mrLIacZdU6xecaBBZ+uEiffGNyXw==
dependencies:
semver "^5.0.3"
"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.3.0, semver@^5.5.0, semver@^5.6.0:
version "5.7.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8"
+ resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
semver@7.3.5:
version "7.3.5"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
dependencies:
lru-cache "^6.0.0"
semver@^6.0.0, semver@^6.2.0, semver@^6.3.0, semver@^6.3.1:
version "6.3.1"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
+ resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-semver@^7.0.0, semver@^7.1.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3:
- version "7.6.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
- integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
- dependencies:
- lru-cache "^6.0.0"
+semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4:
+ version "7.6.3"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz"
+ integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
-semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.5.4:
+semver@^7.1.3, semver@^7.3.2:
version "7.5.4"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
+ resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz"
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
dependencies:
lru-cache "^6.0.0"
send@0.18.0:
version "0.18.0"
- resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
+ resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz"
integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
dependencies:
debug "2.6.9"
@@ -16447,7 +16127,7 @@ send@0.18.0:
sentence-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f"
+ resolved "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz"
integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==
dependencies:
no-case "^3.0.4"
@@ -16456,7 +16136,7 @@ sentence-case@^3.0.4:
serve-static@1.15.0:
version "1.15.0"
- resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540"
+ resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz"
integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==
dependencies:
encodeurl "~1.0.2"
@@ -16466,12 +16146,12 @@ serve-static@1.15.0:
set-blocking@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
+ resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
set-function-length@^1.2.1:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
+ resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz"
integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
dependencies:
define-data-property "^1.1.4"
@@ -16483,24 +16163,24 @@ set-function-length@^1.2.1:
setimmediate@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
+ resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz"
integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==
setprototypeof@1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
+ resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
shallow-clone@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
+ resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz"
integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
dependencies:
kind-of "^6.0.2"
sharp@^0.32.6:
version "0.32.6"
- resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.32.6.tgz#6ad30c0b7cd910df65d5f355f774aa4fce45732a"
+ resolved "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz"
integrity sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==
dependencies:
color "^4.2.3"
@@ -16514,36 +16194,36 @@ sharp@^0.32.6:
shebang-command@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+ resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"
integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
dependencies:
shebang-regex "^1.0.0"
shebang-command@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+ resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
dependencies:
shebang-regex "^3.0.0"
shebang-regex@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+ resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"
integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
shebang-regex@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+ resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
shell-quote@^1.7.3:
version "1.7.4"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
+ resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.4.tgz"
integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
shelljs@^0.8.5:
version "0.8.5"
- resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
+ resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz"
integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
dependencies:
glob "^7.0.0"
@@ -16552,7 +16232,7 @@ shelljs@^0.8.5:
shiki@^0.14.2:
version "0.14.3"
- resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.3.tgz#d1a93c463942bdafb9866d74d619a4347d0bbf64"
+ resolved "https://registry.npmjs.org/shiki/-/shiki-0.14.3.tgz"
integrity sha512-U3S/a+b0KS+UkTyMjoNojvTgrBHjgp7L6ovhFVZsXmBGnVdQ4K4U9oK0z63w538S91ATngv1vXigHCSWOwnr+g==
dependencies:
ansi-sequence-parser "^1.1.0"
@@ -16562,7 +16242,7 @@ shiki@^0.14.2:
shx@^0.3.3:
version "0.3.4"
- resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02"
+ resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz"
integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==
dependencies:
minimist "^1.2.3"
@@ -16570,7 +16250,7 @@ shx@^0.3.3:
side-channel@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+ resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
dependencies:
call-bind "^1.0.0"
@@ -16579,22 +16259,22 @@ side-channel@^1.0.4:
signal-exit@3.0.7, signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
version "3.0.7"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+ resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
signal-exit@^4.0.1, signal-exit@^4.1.0:
version "4.1.0"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
+ resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz"
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
signedsource@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/signedsource/-/signedsource-1.0.0.tgz#1ddace4981798f93bd833973803d80d52e93ad6a"
+ resolved "https://registry.npmjs.org/signedsource/-/signedsource-1.0.0.tgz"
integrity sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==
sigstore@^1.4.0:
version "1.9.0"
- resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.9.0.tgz#1e7ad8933aa99b75c6898ddd0eeebc3eb0d59875"
+ resolved "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz"
integrity sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A==
dependencies:
"@sigstore/bundle" "^1.1.0"
@@ -16605,7 +16285,7 @@ sigstore@^1.4.0:
sigstore@^2.2.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-2.3.0.tgz#c56b32818d4dc989f6ea3c0897f4d9bff5d14bed"
+ resolved "https://registry.npmjs.org/sigstore/-/sigstore-2.3.0.tgz"
integrity sha512-q+o8L2ebiWD1AxD17eglf1pFrl9jtW7FHa0ygqY6EKvibK8JHyq9Z26v9MZXeDiw+RbfOJ9j2v70M10Hd6E06A==
dependencies:
"@sigstore/bundle" "^2.3.1"
@@ -16617,12 +16297,12 @@ sigstore@^2.2.0:
simple-concat@^1.0.0:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f"
+ resolved "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz"
integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==
simple-get@^4.0.0, simple-get@^4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543"
+ resolved "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz"
integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==
dependencies:
decompress-response "^6.0.0"
@@ -16631,26 +16311,26 @@ simple-get@^4.0.0, simple-get@^4.0.1:
simple-swizzle@^0.2.2:
version "0.2.2"
- resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
+ resolved "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz"
integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==
dependencies:
is-arrayish "^0.3.1"
simple-update-notifier@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb"
+ resolved "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz"
integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==
dependencies:
semver "^7.5.3"
sisteransi@^1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
+ resolved "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz"
integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
size-limit@^7.0.8:
version "7.0.8"
- resolved "https://registry.yarnpkg.com/size-limit/-/size-limit-7.0.8.tgz#bf0c656da9e6bc3b8eb5b8a5a634df4634309811"
+ resolved "https://registry.npmjs.org/size-limit/-/size-limit-7.0.8.tgz"
integrity sha512-3h76c9E0e/nNhYLSR7IBI/bSoXICeo7EYkYjlyVqNIsu7KvN/PQmMbIXeyd2QKIF8iZKhaiZQoXLkGWbyPDtvQ==
dependencies:
bytes-iec "^3.1.1"
@@ -16664,17 +16344,17 @@ size-limit@^7.0.8:
slash@3.0.0, slash@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+ resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
slice-ansi@0.0.4:
version "0.0.4"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
+ resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz"
integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==
slice-ansi@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
+ resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz"
integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==
dependencies:
ansi-styles "^4.0.0"
@@ -16683,7 +16363,7 @@ slice-ansi@^3.0.0:
slice-ansi@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
+ resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"
integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
dependencies:
ansi-styles "^4.0.0"
@@ -16692,7 +16372,7 @@ slice-ansi@^4.0.0:
slice-ansi@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a"
+ resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz"
integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==
dependencies:
ansi-styles "^6.0.0"
@@ -16700,7 +16380,7 @@ slice-ansi@^5.0.0:
slice-ansi@^7.0.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9"
+ resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz"
integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==
dependencies:
ansi-styles "^6.2.1"
@@ -16708,12 +16388,12 @@ slice-ansi@^7.0.0:
smart-buffer@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae"
+ resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz"
integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==
snake-case@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c"
+ resolved "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz"
integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==
dependencies:
dot-case "^3.0.4"
@@ -16721,7 +16401,7 @@ snake-case@^3.0.4:
socks-proxy-agent@^6.0.0:
version "6.2.1"
- resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce"
+ resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz"
integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==
dependencies:
agent-base "^6.0.2"
@@ -16730,7 +16410,7 @@ socks-proxy-agent@^6.0.0:
socks-proxy-agent@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6"
+ resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz"
integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==
dependencies:
agent-base "^6.0.2"
@@ -16739,7 +16419,7 @@ socks-proxy-agent@^7.0.0:
socks-proxy-agent@^8.0.3:
version "8.0.3"
- resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz#6b2da3d77364fde6292e810b496cb70440b9b89d"
+ resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz"
integrity sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==
dependencies:
agent-base "^7.1.1"
@@ -16748,7 +16428,7 @@ socks-proxy-agent@^8.0.3:
socks@^2.6.2, socks@^2.7.1:
version "2.8.3"
- resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5"
+ resolved "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz"
integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==
dependencies:
ip-address "^9.0.5"
@@ -16756,33 +16436,33 @@ socks@^2.6.2, socks@^2.7.1:
sort-keys@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
+ resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz"
integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==
dependencies:
is-plain-obj "^1.0.0"
sort-keys@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18"
+ resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz"
integrity sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==
dependencies:
is-plain-obj "^2.0.0"
sort-keys@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-5.0.0.tgz#5d775f8ae93ecc29bc7312bbf3acac4e36e3c446"
+ resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-5.0.0.tgz"
integrity sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==
dependencies:
is-plain-obj "^4.0.0"
"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
+ resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
source-map-support@0.5.13:
version "0.5.13"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932"
+ resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz"
integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==
dependencies:
buffer-from "^1.0.0"
@@ -16790,27 +16470,27 @@ source-map-support@0.5.13:
source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
source-map@^0.7.0:
version "0.7.4"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
+ resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz"
integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
space-separated-tokens@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f"
+ resolved "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz"
integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==
spawn-command@^0.0.2-1:
version "0.0.2-1"
- resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2-1.tgz#62f5e9466981c1b796dc5929937e11c9c6921bd0"
+ resolved "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz"
integrity sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==
spawn-wrap@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/spawn-wrap/-/spawn-wrap-2.0.0.tgz#103685b8b8f9b79771318827aa78650a610d457e"
+ resolved "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz"
integrity sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==
dependencies:
foreground-child "^2.0.0"
@@ -16822,7 +16502,7 @@ spawn-wrap@^2.0.0:
spdx-correct@^3.0.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
+ resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz"
integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
dependencies:
spdx-expression-parse "^3.0.0"
@@ -16830,12 +16510,12 @@ spdx-correct@^3.0.0:
spdx-exceptions@^2.1.0:
version "2.5.0"
- resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz#5d607d27fc806f66d7b64a766650fa890f04ed66"
+ resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz"
integrity sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==
spdx-expression-parse@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
+ resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"
integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
dependencies:
spdx-exceptions "^2.1.0"
@@ -16843,12 +16523,12 @@ spdx-expression-parse@^3.0.0:
spdx-license-ids@^3.0.0:
version "3.0.17"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz#887da8aa73218e51a1d917502d79863161a93f9c"
+ resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz"
integrity sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==
speedline-core@^1.4.3:
version "1.4.3"
- resolved "https://registry.yarnpkg.com/speedline-core/-/speedline-core-1.4.3.tgz#4d6e7276e2063c2d36a375cb25a523ac73475319"
+ resolved "https://registry.npmjs.org/speedline-core/-/speedline-core-1.4.3.tgz"
integrity sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==
dependencies:
"@types/node" "*"
@@ -16857,21 +16537,21 @@ speedline-core@^1.4.3:
split2@^3.2.2:
version "3.2.2"
- resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f"
+ resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz"
integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==
dependencies:
readable-stream "^3.0.0"
split@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
+ resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz"
integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
dependencies:
through "2"
sponge-case@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/sponge-case/-/sponge-case-1.0.1.tgz#260833b86453883d974f84854cdb63aecc5aef4c"
+ resolved "https://registry.npmjs.org/sponge-case/-/sponge-case-1.0.1.tgz"
integrity sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==
dependencies:
tslib "^2.0.3"
@@ -16883,12 +16563,12 @@ sprintf-js@^1.1.3:
sprintf-js@~1.0.2:
version "1.0.3"
- resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+ resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"
integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
sshpk@^1.14.1:
version "1.17.0"
- resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5"
+ resolved "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz"
integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==
dependencies:
asn1 "~0.2.3"
@@ -16903,62 +16583,62 @@ sshpk@^1.14.1:
ssri@^10.0.0, ssri@^10.0.1:
version "10.0.5"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c"
+ resolved "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz"
integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==
dependencies:
minipass "^7.0.3"
ssri@^8.0.0, ssri@^8.0.1:
version "8.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
+ resolved "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz"
integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
dependencies:
minipass "^3.1.1"
ssri@^9.0.0, ssri@^9.0.1:
version "9.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057"
+ resolved "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz"
integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==
dependencies:
minipass "^3.1.1"
stack-trace@0.0.10:
version "0.0.10"
- resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
+ resolved "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"
integrity sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==
stack-utils@^2.0.3:
version "2.0.6"
- resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f"
+ resolved "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz"
integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==
dependencies:
escape-string-regexp "^2.0.0"
statuses@2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
+ resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"
integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
"statuses@>= 1.5.0 < 2":
version "1.5.0"
- resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+ resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
stop-iteration-iterator@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
+ resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz"
integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==
dependencies:
internal-slot "^1.0.4"
streamsearch@^1.1.0:
version "1.1.0"
- resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764"
+ resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz"
integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==
streamx@^2.15.0:
version "2.15.5"
- resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.15.5.tgz#87bcef4dc7f0b883f9359671203344a4e004c7f1"
+ resolved "https://registry.npmjs.org/streamx/-/streamx-2.15.5.tgz"
integrity sha512-9thPGMkKC2GctCzyCUjME3yR03x2xNo0GPKGkRw2UMYN+gqWa9uqpyNWhmsNCutU5zHmkUum0LsCRQTXUgUCAg==
dependencies:
fast-fifo "^1.1.0"
@@ -16966,17 +16646,17 @@ streamx@^2.15.0:
string-argv@0.3.2:
version "0.3.2"
- resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6"
+ resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz"
integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==
string-env-interpolation@1.0.1, string-env-interpolation@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz#ad4397ae4ac53fe6c91d1402ad6f6a52862c7152"
+ resolved "https://registry.npmjs.org/string-env-interpolation/-/string-env-interpolation-1.0.1.tgz"
integrity sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==
string-length@^4.0.1:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"
+ resolved "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz"
integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==
dependencies:
char-regex "^1.0.2"
@@ -16984,12 +16664,12 @@ string-length@^4.0.1:
string-similarity@^4.0.1:
version "4.0.4"
- resolved "https://registry.yarnpkg.com/string-similarity/-/string-similarity-4.0.4.tgz#42d01ab0b34660ea8a018da8f56a3309bb8b2a5b"
+ resolved "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz"
integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==
-"string-width-cjs@npm:string-width@^4.2.0":
+"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
dependencies:
emoji-regex "^8.0.0"
@@ -16998,25 +16678,16 @@ string-similarity@^4.0.1:
string-width@^1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"
integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==
dependencies:
code-point-at "^1.0.0"
is-fullwidth-code-point "^1.0.0"
strip-ansi "^3.0.0"
-"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
- integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.1"
-
string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"
integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==
dependencies:
is-fullwidth-code-point "^2.0.0"
@@ -17024,7 +16695,7 @@ string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
string-width@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"
integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
dependencies:
emoji-regex "^7.0.1"
@@ -17033,7 +16704,7 @@ string-width@^3.0.0:
string-width@^5.0.1, string-width@^5.1.2:
version "5.1.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz"
integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
dependencies:
eastasianwidth "^0.2.0"
@@ -17042,7 +16713,7 @@ string-width@^5.0.1, string-width@^5.1.2:
string-width@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.0.0.tgz#14aa1b7aaa126d5b64fa79d3c894da8a9650ba06"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-7.0.0.tgz"
integrity sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==
dependencies:
emoji-regex "^10.3.0"
@@ -17051,7 +16722,7 @@ string-width@^7.0.0:
string.prototype.matchall@^4.0.7, string.prototype.matchall@^4.0.8:
version "4.0.8"
- resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3"
+ resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz"
integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
dependencies:
call-bind "^1.0.2"
@@ -17065,7 +16736,7 @@ string.prototype.matchall@^4.0.7, string.prototype.matchall@^4.0.8:
string.prototype.trimend@^1.0.6:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
+ resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"
integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
dependencies:
call-bind "^1.0.2"
@@ -17074,7 +16745,7 @@ string.prototype.trimend@^1.0.6:
string.prototype.trimstart@^1.0.6:
version "1.0.6"
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
+ resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"
integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
dependencies:
call-bind "^1.0.2"
@@ -17083,83 +16754,76 @@ string.prototype.trimstart@^1.0.6:
string_decoder@^1.1.1:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
dependencies:
safe-buffer "~5.2.0"
string_decoder@~0.10.x:
version "0.10.31"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"
integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==
string_decoder@~1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
dependencies:
safe-buffer "~5.1.0"
stringify-entities@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8"
+ resolved "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.3.tgz"
integrity sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==
dependencies:
character-entities-html4 "^2.0.0"
character-entities-legacy "^3.0.0"
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
dependencies:
ansi-regex "^5.0.1"
strip-ansi@^3.0.0, strip-ansi@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==
dependencies:
ansi-regex "^2.0.0"
strip-ansi@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"
integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==
dependencies:
ansi-regex "^3.0.0"
strip-ansi@^5.1.0:
version "5.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
dependencies:
ansi-regex "^4.1.0"
-strip-ansi@^6.0.0, strip-ansi@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
- integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
- dependencies:
- ansi-regex "^5.0.1"
-
strip-ansi@^7.0.1, strip-ansi@^7.1.0:
version "7.1.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
dependencies:
ansi-regex "^6.0.1"
strip-bom-buf@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz#1cb45aaf57530f4caf86c7f75179d2c9a51dd572"
+ resolved "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz"
integrity sha512-1sUIL1jck0T1mhOLP2c696BIznzT525Lkub+n4jjMHjhjhoAQA6Ye659DxdlZBr0aLDMQoTxKIpnlqxgtwjsuQ==
dependencies:
is-utf8 "^0.2.1"
strip-bom-stream@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca"
+ resolved "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz"
integrity sha512-yH0+mD8oahBZWnY43vxs4pSinn8SMKAdml/EOGBewoe1Y0Eitd0h2Mg3ZRiXruUW6L4P+lvZiEgbh0NgUGia1w==
dependencies:
first-chunk-stream "^2.0.0"
@@ -17167,61 +16831,61 @@ strip-bom-stream@^2.0.0:
strip-bom-string@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
+ resolved "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz"
integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==
strip-bom@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
+ resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"
integrity sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==
dependencies:
is-utf8 "^0.2.0"
strip-bom@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
+ resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
strip-bom@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878"
+ resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"
integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==
strip-eof@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+ resolved "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"
integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==
strip-final-newline@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
+ resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
strip-final-newline@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd"
+ resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz"
integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
strip-indent@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
+ resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz"
integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
dependencies:
min-indent "^1.0.0"
strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+ resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
strip-json-comments@~2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
+ resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"
integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==
strong-log-transformer@2.1.0, strong-log-transformer@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10"
+ resolved "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz"
integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==
dependencies:
duplexer "^0.1.1"
@@ -17230,24 +16894,24 @@ strong-log-transformer@2.1.0, strong-log-transformer@^2.1.0:
style-loader@^3.3.1:
version "3.3.1"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575"
+ resolved "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz"
integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==
style-search@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902"
+ resolved "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz"
integrity sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==
style-to-object@^0.3.0:
version "0.3.0"
- resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
+ resolved "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz"
integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
dependencies:
inline-style-parser "0.1.1"
styled-jsx@5.1.0:
version "5.1.0"
- resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.0.tgz#4a5622ab9714bd3fcfaeec292aa555871f057563"
+ resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.0.tgz"
integrity sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==
dependencies:
client-only "0.0.1"
@@ -17261,14 +16925,14 @@ styled-jsx@5.1.1:
stylelint-config-recess-order@^3.0.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/stylelint-config-recess-order/-/stylelint-config-recess-order-3.1.0.tgz#aeeddd658f726c1252d95efe54e79d246667ae1f"
+ resolved "https://registry.npmjs.org/stylelint-config-recess-order/-/stylelint-config-recess-order-3.1.0.tgz"
integrity sha512-LXR6zD5O9cS1a9gbLbuKvWLs7qmHj4xm5MQ5KhhwZPMhtQP9da3F6Jsp/NAUdsAwDQEnT1ShU16YVdgN6p4a/w==
dependencies:
stylelint-order "5.x"
stylelint-config-recommended-scss@^5.0.2:
version "5.0.2"
- resolved "https://registry.yarnpkg.com/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-5.0.2.tgz#193f483861c76a36ece24c52eb6baca4838f4a48"
+ resolved "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-5.0.2.tgz"
integrity sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==
dependencies:
postcss-scss "^4.0.2"
@@ -17277,12 +16941,12 @@ stylelint-config-recommended-scss@^5.0.2:
stylelint-config-recommended@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz#fd2523a322836005ad9bf473d3e5534719c09f9d"
+ resolved "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz"
integrity sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==
stylelint-config-standard-scss@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/stylelint-config-standard-scss/-/stylelint-config-standard-scss-3.0.0.tgz#dafc4fa5538d0ed833bf0a7d391e075683ffd96c"
+ resolved "https://registry.npmjs.org/stylelint-config-standard-scss/-/stylelint-config-standard-scss-3.0.0.tgz"
integrity sha512-zt3ZbzIbllN1iCmc94e4pDxqpkzeR6CJo5DDXzltshuXr+82B8ylHyMMARNnUYrZH80B7wgY7UkKTYCFM0UUyw==
dependencies:
stylelint-config-recommended-scss "^5.0.2"
@@ -17290,14 +16954,14 @@ stylelint-config-standard-scss@^3.0.0:
stylelint-config-standard@^24.0.0:
version "24.0.0"
- resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-24.0.0.tgz#6823f207ab997ae0b641f9a636d007cc44d77541"
+ resolved "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-24.0.0.tgz"
integrity sha512-+RtU7fbNT+VlNbdXJvnjc3USNPZRiRVp/d2DxOF/vBDDTi0kH5RX2Ny6errdtZJH3boO+bmqIYEllEmok4jiuw==
dependencies:
stylelint-config-recommended "^6.0.0"
stylelint-order@5.x, stylelint-order@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/stylelint-order/-/stylelint-order-5.0.0.tgz#abd20f6b85ac640774cbe40e70d3fe9c6fdf4400"
+ resolved "https://registry.npmjs.org/stylelint-order/-/stylelint-order-5.0.0.tgz"
integrity sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==
dependencies:
postcss "^8.3.11"
@@ -17305,7 +16969,7 @@ stylelint-order@5.x, stylelint-order@^5.0.0:
stylelint-scss@^4.0.0, stylelint-scss@^4.0.1:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-4.3.0.tgz#638800faf823db11fff60d537c81051fe74c90fa"
+ resolved "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.3.0.tgz"
integrity sha512-GvSaKCA3tipzZHoz+nNO7S02ZqOsdBzMiCx9poSmLlb3tdJlGddEX/8QzCOD8O7GQan9bjsvLMsO5xiw6IhhIQ==
dependencies:
lodash "^4.17.21"
@@ -17316,7 +16980,7 @@ stylelint-scss@^4.0.0, stylelint-scss@^4.0.1:
stylelint@^14.6.0:
version "14.16.1"
- resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-14.16.1.tgz#b911063530619a1bbe44c2b875fd8181ebdc742d"
+ resolved "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz"
integrity sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==
dependencies:
"@csstools/selector-specificity" "^2.0.2"
@@ -17360,45 +17024,45 @@ stylelint@^14.6.0:
stylis@^4.1.3:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.2.0.tgz#79daee0208964c8fe695a42fcffcac633a211a51"
+ resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz"
integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==
supports-color@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==
supports-color@^4.0.0:
version "4.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz"
integrity sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==
dependencies:
has-flag "^2.0.0"
supports-color@^5.3.0, supports-color@^5.5.0:
version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
dependencies:
has-flag "^3.0.0"
supports-color@^7.0.0, supports-color@^7.1.0:
version "7.2.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
dependencies:
has-flag "^4.0.0"
supports-color@^8.0.0, supports-color@^8.1.0, supports-color@^8.1.1:
version "8.1.1"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
+ resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz"
integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
dependencies:
has-flag "^4.0.0"
supports-hyperlinks@^2.2.0, supports-hyperlinks@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624"
+ resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz"
integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==
dependencies:
has-flag "^4.0.0"
@@ -17406,44 +17070,44 @@ supports-hyperlinks@^2.2.0, supports-hyperlinks@^2.3.0:
supports-preserve-symlinks-flag@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
+ resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
svg-tags@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
+ resolved "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz"
integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
swap-case@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-2.0.2.tgz#671aedb3c9c137e2985ef51c51f9e98445bf70d9"
+ resolved "https://registry.npmjs.org/swap-case/-/swap-case-2.0.2.tgz"
integrity sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==
dependencies:
tslib "^2.0.3"
swr@^1.3.0:
version "1.3.0"
- resolved "https://registry.yarnpkg.com/swr/-/swr-1.3.0.tgz#c6531866a35b4db37b38b72c45a63171faf9f4e8"
+ resolved "https://registry.npmjs.org/swr/-/swr-1.3.0.tgz"
integrity sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==
symbol-observable@^1.1.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
+ resolved "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz"
integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
symbol-tree@^3.2.4:
version "3.2.4"
- resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
+ resolved "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz"
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
tabbable@^5.2.1:
version "5.3.3"
- resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-5.3.3.tgz#aac0ff88c73b22d6c3c5a50b1586310006b47fbf"
+ resolved "https://registry.npmjs.org/tabbable/-/tabbable-5.3.3.tgz"
integrity sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==
table@^6.0.9, table@^6.8.1:
version "6.8.1"
- resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf"
+ resolved "https://registry.npmjs.org/table/-/table-6.8.1.tgz"
integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==
dependencies:
ajv "^8.0.1"
@@ -17454,7 +17118,7 @@ table@^6.0.9, table@^6.8.1:
taketalk@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/taketalk/-/taketalk-1.0.0.tgz#b4d4f0deed206ae7df775b129ea2ca6de52f26dd"
+ resolved "https://registry.npmjs.org/taketalk/-/taketalk-1.0.0.tgz"
integrity sha512-kS7E53It6HA8S1FVFBWP7HDwgTiJtkmYk7TsowGlizzVrivR1Mf9mgjXHY1k7rOfozRVMZSfwjB3bevO4QEqpg==
dependencies:
get-stdin "^4.0.1"
@@ -17462,7 +17126,7 @@ taketalk@^1.0.0:
tar-fs@^2.0.0:
version "2.1.1"
- resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784"
+ resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz"
integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==
dependencies:
chownr "^1.1.1"
@@ -17472,7 +17136,7 @@ tar-fs@^2.0.0:
tar-fs@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.4.tgz#a21dc60a2d5d9f55e0089ccd78124f1d3771dbbf"
+ resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz"
integrity sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==
dependencies:
mkdirp-classic "^0.5.2"
@@ -17481,7 +17145,7 @@ tar-fs@^3.0.4:
tar-stream@^2.1.4, tar-stream@~2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287"
+ resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz"
integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==
dependencies:
bl "^4.0.3"
@@ -17492,7 +17156,7 @@ tar-stream@^2.1.4, tar-stream@~2.2.0:
tar-stream@^3.1.5:
version "3.1.6"
- resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-3.1.6.tgz#6520607b55a06f4a2e2e04db360ba7d338cc5bab"
+ resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz"
integrity sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==
dependencies:
b4a "^1.6.4"
@@ -17501,7 +17165,7 @@ tar-stream@^3.1.5:
tar@6.1.11:
version "6.1.11"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621"
+ resolved "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz"
integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==
dependencies:
chownr "^2.0.0"
@@ -17513,7 +17177,7 @@ tar@6.1.11:
tar@^6.0.2, tar@^6.1.0:
version "6.1.13"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b"
+ resolved "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz"
integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==
dependencies:
chownr "^2.0.0"
@@ -17525,7 +17189,7 @@ tar@^6.0.2, tar@^6.1.0:
tar@^6.1.11, tar@^6.1.2:
version "6.2.1"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
+ resolved "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz"
integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
dependencies:
chownr "^2.0.0"
@@ -17537,19 +17201,19 @@ tar@^6.1.11, tar@^6.1.2:
temp-dir@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
+ resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"
integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==
term-size@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69"
+ resolved "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz"
integrity sha512-7dPUZQGy/+m3/wjVz3ZW5dobSoD/02NxJpoXUX0WIyjfVS3l0c+b/+9phIDFA7FHzkYtwtMFgeGZ/Y8jVTeqQQ==
dependencies:
execa "^0.7.0"
test-exclude@^6.0.0:
version "6.0.0"
- resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
+ resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"
integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==
dependencies:
"@istanbuljs/schema" "^0.1.2"
@@ -17558,32 +17222,32 @@ test-exclude@^6.0.0:
text-extensions@^1.0.0:
version "1.9.0"
- resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26"
+ resolved "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz"
integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==
text-table@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+ resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
textextensions@^5.12.0, textextensions@^5.13.0:
version "5.15.0"
- resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-5.15.0.tgz#4bb3296ad6fc111cf4b39c589dd028d8aaaf7060"
+ resolved "https://registry.npmjs.org/textextensions/-/textextensions-5.15.0.tgz"
integrity sha512-MeqZRHLuaGamUXGuVn2ivtU3LA3mLCCIO5kUGoohTCoGmCBg/+8yPhWVX9WSl9telvVd8erftjFk9Fwb2dD6rw==
third-party-web@^0.12.7:
version "0.12.7"
- resolved "https://registry.yarnpkg.com/third-party-web/-/third-party-web-0.12.7.tgz#64445702379abf1a29066d636a965173e4e423c6"
+ resolved "https://registry.npmjs.org/third-party-web/-/third-party-web-0.12.7.tgz"
integrity sha512-9d/OfjEOjyeOpnm4F9o0KSK6BI6ytvi9DINSB5h1+jdlCvQlhKpViMSxWpBN9WstdfDQ61BS6NxWqcPCuQCAJg==
throttleit@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c"
+ resolved "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"
integrity sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==
through2@^2.0.0, through2@^2.0.1:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
+ resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"
integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
dependencies:
readable-stream "~2.3.6"
@@ -17591,29 +17255,29 @@ through2@^2.0.0, through2@^2.0.1:
through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8:
version "2.3.8"
- resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
+ resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
timed-out@4.0.1:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
+ resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"
integrity sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==
tiny-lru@7.0.6:
version "7.0.6"
- resolved "https://registry.yarnpkg.com/tiny-lru/-/tiny-lru-7.0.6.tgz#b0c3cdede1e5882aa2d1ae21cb2ceccf2a331f24"
+ resolved "https://registry.npmjs.org/tiny-lru/-/tiny-lru-7.0.6.tgz"
integrity sha512-zNYO0Kvgn5rXzWpL0y3RS09sMK67eGaQj9805jlK9G6pSadfriTczzLHFXa/xcW4mIRfmlB9HyQ/+SgL0V1uow==
title-case@^3.0.3:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/title-case/-/title-case-3.0.3.tgz#bc689b46f02e411f1d1e1d081f7c3deca0489982"
+ resolved "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz"
integrity sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==
dependencies:
tslib "^2.0.3"
title@^3.5.3:
version "3.5.3"
- resolved "https://registry.yarnpkg.com/title/-/title-3.5.3.tgz#b338d701a3d949db6b49b2c86f409f9c2f36cd91"
+ resolved "https://registry.npmjs.org/title/-/title-3.5.3.tgz"
integrity sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==
dependencies:
arg "1.0.0"
@@ -17623,70 +17287,70 @@ title@^3.5.3:
titleize@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/titleize/-/titleize-1.0.0.tgz#7d350722061830ba6617631e0cfd3ea08398d95a"
+ resolved "https://registry.npmjs.org/titleize/-/titleize-1.0.0.tgz"
integrity sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==
tmp@^0.0.33:
version "0.0.33"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
+ resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"
integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
dependencies:
os-tmpdir "~1.0.2"
tmp@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.1.0.tgz#ee434a4e22543082e294ba6201dcc6eafefa2877"
+ resolved "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz"
integrity sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==
dependencies:
rimraf "^2.6.3"
tmp@~0.2.1:
version "0.2.3"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.3.tgz#eb783cc22bc1e8bebd0671476d46ea4eb32a79ae"
+ resolved "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz"
integrity sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==
tmpl@1.0.5:
version "1.0.5"
- resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
+ resolved "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz"
integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
to-fast-properties@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
+ resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
to-readable-stream@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771"
+ resolved "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz"
integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==
to-regex-range@^5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
dependencies:
is-number "^7.0.0"
toidentifier@1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
+ resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"
integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
toidentifier@1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
+ resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz"
integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
touch@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b"
+ resolved "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz"
integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==
dependencies:
nopt "~1.0.10"
tough-cookie@^4.1.2, tough-cookie@^4.1.3:
version "4.1.3"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf"
+ resolved "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz"
integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==
dependencies:
psl "^1.1.33"
@@ -17694,66 +17358,58 @@ tough-cookie@^4.1.2, tough-cookie@^4.1.3:
universalify "^0.2.0"
url-parse "^1.5.3"
-tough-cookie@~2.5.0:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
- integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
- dependencies:
- psl "^1.1.28"
- punycode "^2.1.1"
-
tr46@^2.1.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
+ resolved "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz"
integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
dependencies:
punycode "^2.1.1"
tr46@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-3.0.0.tgz#555c4e297a950617e8eeddef633c87d4d9d6cbf9"
+ resolved "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz"
integrity sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==
dependencies:
punycode "^2.1.1"
tr46@~0.0.3:
version "0.0.3"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
+ resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
tree-kill@^1.2.1, tree-kill@^1.2.2:
version "1.2.2"
- resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc"
+ resolved "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz"
integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==
treeverse@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/treeverse/-/treeverse-1.0.4.tgz#a6b0ebf98a1bca6846ddc7ecbc900df08cb9cd5f"
+ resolved "https://registry.npmjs.org/treeverse/-/treeverse-1.0.4.tgz"
integrity sha512-whw60l7r+8ZU8Tu/Uc2yxtc4ZTZbR/PF3u1IPNKGQ6p8EICLb3Z2lAgoqw9bqYd8IkgnsaOcLzYHFckjqNsf0g==
trim-lines@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338"
+ resolved "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz"
integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
trim-newlines@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144"
+ resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"
integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
trough@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876"
+ resolved "https://registry.npmjs.org/trough/-/trough-2.1.0.tgz"
integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==
ts-dedent@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5"
+ resolved "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz"
integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==
ts-jest@29.1.1:
version "29.1.1"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.1.tgz#f58fe62c63caf7bfcc5cc6472082f79180f0815b"
+ resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.1.tgz"
integrity sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==
dependencies:
bs-logger "0.x"
@@ -17767,7 +17423,7 @@ ts-jest@29.1.1:
ts-jest@^29.1.2:
version "29.1.2"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.2.tgz#7613d8c81c43c8cb312c6904027257e814c40e09"
+ resolved "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz"
integrity sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==
dependencies:
bs-logger "0.x"
@@ -17781,12 +17437,12 @@ ts-jest@^29.1.2:
ts-log@^2.2.3:
version "2.2.5"
- resolved "https://registry.yarnpkg.com/ts-log/-/ts-log-2.2.5.tgz#aef3252f1143d11047e2cb6f7cfaac7408d96623"
+ resolved "https://registry.npmjs.org/ts-log/-/ts-log-2.2.5.tgz"
integrity sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==
ts-node@^10.9.1:
version "10.9.1"
- resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
+ resolved "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz"
integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==
dependencies:
"@cspotcode/source-map-support" "^0.8.0"
@@ -17805,7 +17461,7 @@ ts-node@^10.9.1:
tsconfig-paths@^3.14.1:
version "3.14.1"
- resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
+ resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"
integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
dependencies:
"@types/json5" "^0.0.29"
@@ -17815,7 +17471,7 @@ tsconfig-paths@^3.14.1:
tsconfig-paths@^4.1.2:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c"
+ resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz"
integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==
dependencies:
json5 "^2.2.2"
@@ -17829,39 +17485,39 @@ tslib@2.4.0:
tslib@^1.8.1, tslib@^1.9.0:
version "1.14.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
-tslib@^2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.3.1, tslib@^2.4.1, tslib@~2.4.0:
+tslib@^2, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@~2.4.0:
version "2.4.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz"
integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
-tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0, tslib@~2.6.0:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
- integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
-
tslib@^2.5.0:
version "2.6.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.1.tgz#fd8c9a0ff42590b25703c0acb3de3d3f4ede0410"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz"
integrity sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==
tslib@~2.3.0:
version "2.3.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz"
integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
+tslib@~2.6.0:
+ version "2.6.3"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.3.tgz#0438f810ad7a9edcde7a241c3d80db693c8cbfe0"
+ integrity sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==
+
tsutils@^3.21.0:
version "3.21.0"
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
+ resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
dependencies:
tslib "^1.8.1"
tsx@^4.6.2:
version "4.6.2"
- resolved "https://registry.yarnpkg.com/tsx/-/tsx-4.6.2.tgz#8e9c1456ad4f1102c5c42c5be7fd428259b7d39b"
+ resolved "https://registry.npmjs.org/tsx/-/tsx-4.6.2.tgz"
integrity sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==
dependencies:
esbuild "~0.18.20"
@@ -17871,7 +17527,7 @@ tsx@^4.6.2:
tuf-js@^1.1.7:
version "1.1.7"
- resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43"
+ resolved "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz"
integrity sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg==
dependencies:
"@tufjs/models" "1.0.4"
@@ -17880,7 +17536,7 @@ tuf-js@^1.1.7:
tuf-js@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-2.2.0.tgz#4daaa8620ba7545501d04dfa933c98abbcc959b9"
+ resolved "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.0.tgz"
integrity sha512-ZSDngmP1z6zw+FIkIBjvOp/II/mIub/O7Pp12j1WNsiCpg5R5wAc//i555bBQsE44O94btLt0xM/Zr2LQjwdCg==
dependencies:
"@tufjs/models" "2.0.0"
@@ -17889,7 +17545,7 @@ tuf-js@^2.2.0:
tunnel-agent@^0.6.0:
version "0.6.0"
- resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
+ resolved "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"
integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==
dependencies:
safe-buffer "^5.0.1"
@@ -17901,7 +17557,7 @@ turbo-darwin-64@1.13.3:
turbo-darwin-arm64@1.13.3:
version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo-darwin-arm64/-/turbo-darwin-arm64-1.13.3.tgz#a99950c8aff83d14070eeca987b0ee53dc881b2d"
+ resolved "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.13.3.tgz"
integrity sha512-/np2xD+f/+9qY8BVtuOQXRq5f9LehCFxamiQnwdqWm5iZmdjygC5T3uVSYuagVFsZKMvX3ycySwh8dylGTl6lg==
turbo-linux-64@1.13.3:
@@ -17926,7 +17582,7 @@ turbo-windows-arm64@1.13.3:
turbo@^1.13.3:
version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo/-/turbo-1.13.3.tgz#afb7bee4fa9f5b6041dac5b4a7d35fb98f279827"
+ resolved "https://registry.npmjs.org/turbo/-/turbo-1.13.3.tgz"
integrity sha512-n17HJv4F4CpsYTvKzUJhLbyewbXjq1oLCi90i5tW1TiWDz16ML1eDG7wi5dHaKxzh5efIM56SITnuVbMq5dk4g==
optionalDependencies:
turbo-darwin-64 "1.13.3"
@@ -17938,69 +17594,69 @@ turbo@^1.13.3:
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
version "0.14.5"
- resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
+ resolved "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+ resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
dependencies:
prelude-ls "^1.2.1"
type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.5:
version "4.0.8"
- resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
+ resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
type-fest@^0.18.0:
version "0.18.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz"
integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==
type-fest@^0.20.2:
version "0.20.2"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
type-fest@^0.21.3:
version "0.21.3"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"
integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
type-fest@^0.3.0:
version "0.3.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz"
integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==
type-fest@^0.4.1:
version "0.4.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz"
integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==
type-fest@^0.6.0:
version "0.6.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"
integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
type-fest@^0.8.0, type-fest@^0.8.1:
version "0.8.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
type-fest@^1.0.2:
version "1.4.0"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz"
integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==
type-fest@^3.0.0:
version "3.13.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706"
+ resolved "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz"
integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==
type-is@~1.6.18:
version "1.6.18"
- resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"
integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
dependencies:
media-typer "0.3.0"
@@ -18008,7 +17664,7 @@ type-is@~1.6.18:
typed-array-length@^1.0.4:
version "1.0.4"
- resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"
integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
dependencies:
call-bind "^1.0.2"
@@ -18017,39 +17673,39 @@ typed-array-length@^1.0.4:
typedarray-to-buffer@^3.1.5:
version "3.1.5"
- resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
+ resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"
integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
dependencies:
is-typedarray "^1.0.0"
typedarray@^0.0.6:
version "0.0.6"
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+ resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
typescript@4.7.3:
version "4.7.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.3.tgz#8364b502d5257b540f9de4c40be84c98e23a129d"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-4.7.3.tgz"
integrity sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==
"typescript@>=3 < 6":
version "5.4.5"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz"
integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==
typescript@^4.2.4, typescript@^4.6.2, typescript@^4.7.4, typescript@^4.8.4, typescript@^4.9.4:
version "4.9.4"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz"
integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
typescript@^5.3.2:
version "5.3.2"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.2.tgz#00d1c7c1c46928c5845c1ee8d0cc2791031d4c43"
+ resolved "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz"
integrity sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==
typeson-registry@^1.0.0-alpha.20:
version "1.0.0-alpha.39"
- resolved "https://registry.yarnpkg.com/typeson-registry/-/typeson-registry-1.0.0-alpha.39.tgz#9e0f5aabd5eebfcffd65a796487541196f4b1211"
+ resolved "https://registry.npmjs.org/typeson-registry/-/typeson-registry-1.0.0-alpha.39.tgz"
integrity sha512-NeGDEquhw+yfwNhguLPcZ9Oj0fzbADiX4R0WxvoY8nGhy98IbzQy1sezjoEFWOywOboj/DWehI+/aUlRVrJnnw==
dependencies:
base64-arraybuffer-es6 "^0.7.0"
@@ -18058,22 +17714,22 @@ typeson-registry@^1.0.0-alpha.20:
typeson@^6.0.0, typeson@^6.1.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/typeson/-/typeson-6.1.0.tgz#5b2a53705a5f58ff4d6f82f965917cabd0d7448b"
+ resolved "https://registry.npmjs.org/typeson/-/typeson-6.1.0.tgz"
integrity sha512-6FTtyGr8ldU0pfbvW/eOZrEtEkczHRUtduBnA90Jh9kMPCiFNnXIon3vF41N0S4tV1HHQt4Hk1j4srpESziCaA==
ua-parser-js@^0.7.30:
version "0.7.33"
- resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.33.tgz#1d04acb4ccef9293df6f70f2c3d22f3030d8b532"
+ resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.33.tgz"
integrity sha512-s8ax/CeZdK9R/56Sui0WM6y9OFREJarMRHqLB2EwkovemBxNQ+Bqu8GAsUnVcXKgphb++ghr/B2BZx4mahujPw==
uglify-js@^3.1.4:
version "3.17.4"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
+ resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz"
integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
unbox-primitive@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
+ resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
dependencies:
call-bind "^1.0.2"
@@ -18083,27 +17739,27 @@ unbox-primitive@^1.0.2:
unc-path-regex@^0.1.2:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
+ resolved "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"
integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==
undefsafe@^2.0.5:
version "2.0.5"
- resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c"
+ resolved "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz"
integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==
undici-types@~5.26.4:
version "5.26.5"
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
+ resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz"
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
unfetch@^4.2.0:
version "4.2.0"
- resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.2.0.tgz#7e21b0ef7d363d8d9af0fb929a5555f6ef97a3be"
+ resolved "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz"
integrity sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==
unified@^10.0.0:
version "10.1.2"
- resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df"
+ resolved "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz"
integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==
dependencies:
"@types/unist" "^2.0.0"
@@ -18116,70 +17772,70 @@ unified@^10.0.0:
unique-filename@^1.1.1:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
+ resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz"
integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
dependencies:
unique-slug "^2.0.0"
unique-filename@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2"
+ resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz"
integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==
dependencies:
unique-slug "^3.0.0"
unique-filename@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea"
+ resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz"
integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==
dependencies:
unique-slug "^4.0.0"
unique-slug@^2.0.0:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
+ resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz"
integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
dependencies:
imurmurhash "^0.1.4"
unique-slug@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9"
+ resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz"
integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==
dependencies:
imurmurhash "^0.1.4"
unique-slug@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3"
+ resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz"
integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==
dependencies:
imurmurhash "^0.1.4"
unique-string@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a"
+ resolved "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"
integrity sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==
dependencies:
crypto-random-string "^1.0.0"
unique-string@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
+ resolved "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz"
integrity sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==
dependencies:
crypto-random-string "^2.0.0"
unist-builder@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-3.0.0.tgz#728baca4767c0e784e1e64bb44b5a5a753021a04"
+ resolved "https://registry.npmjs.org/unist-builder/-/unist-builder-3.0.0.tgz"
integrity sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==
dependencies:
"@types/unist" "^2.0.0"
unist-util-find-after@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/unist-util-find-after/-/unist-util-find-after-4.0.0.tgz#1101cebf5fed88ae3c6f3fa676e86fd5772a4f32"
+ resolved "https://registry.npmjs.org/unist-util-find-after/-/unist-util-find-after-4.0.0.tgz"
integrity sha512-gfpsxKQde7atVF30n5Gff2fQhAc4/HTOV4CvkXpTg9wRfQhZWdXitpyXHWB6YcYgnsxLx+4gGHeVjCTAAp9sjw==
dependencies:
"@types/unist" "^2.0.0"
@@ -18187,31 +17843,31 @@ unist-util-find-after@^4.0.0:
unist-util-generated@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.0.tgz#86fafb77eb6ce9bfa6b663c3f5ad4f8e56a60113"
+ resolved "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.0.tgz"
integrity sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==
unist-util-is@^5.0.0:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.1.tgz#e8aece0b102fa9bc097b0fef8f870c496d4a6236"
+ resolved "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.1.1.tgz"
integrity sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==
unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0:
version "1.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz#96f4d543dfb0428edc01ebb928570b602d280c4c"
+ resolved "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz"
integrity sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==
dependencies:
"@types/unist" "^2.0.0"
unist-util-position@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.3.tgz#5290547b014f6222dff95c48d5c3c13a88fadd07"
+ resolved "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.3.tgz"
integrity sha512-p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ==
dependencies:
"@types/unist" "^2.0.0"
unist-util-remove-position@^4.0.0:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz#d5b46a7304ac114c8d91990ece085ca7c2c135c8"
+ resolved "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz"
integrity sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==
dependencies:
"@types/unist" "^2.0.0"
@@ -18219,7 +17875,7 @@ unist-util-remove-position@^4.0.0:
unist-util-remove@^3.1.1:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-3.1.1.tgz#8bfa181aff916bd32a4ed30b3ed76d0c21c077df"
+ resolved "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-3.1.1.tgz"
integrity sha512-kfCqZK5YVY5yEa89tvpl7KnBBHu2c6CzMkqHUrlOqaRgGOMp0sMvwWOVrbAtj03KhovQB7i96Gda72v/EFE0vw==
dependencies:
"@types/unist" "^2.0.0"
@@ -18228,14 +17884,14 @@ unist-util-remove@^3.1.1:
unist-util-stringify-position@^3.0.0:
version "3.0.2"
- resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz#5c6aa07c90b1deffd9153be170dce628a869a447"
+ resolved "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz"
integrity sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==
dependencies:
"@types/unist" "^2.0.0"
unist-util-visit-parents@^4.0.0:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz#e83559a4ad7e6048a46b1bdb22614f2f3f4724f2"
+ resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz"
integrity sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==
dependencies:
"@types/unist" "^2.0.0"
@@ -18243,7 +17899,7 @@ unist-util-visit-parents@^4.0.0:
unist-util-visit-parents@^5.0.0, unist-util-visit-parents@^5.1.1:
version "5.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz#868f353e6fce6bf8fa875b251b0f4fec3be709bb"
+ resolved "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz"
integrity sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==
dependencies:
"@types/unist" "^2.0.0"
@@ -18251,7 +17907,7 @@ unist-util-visit-parents@^5.0.0, unist-util-visit-parents@^5.1.1:
unist-util-visit@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-3.1.0.tgz#9420d285e1aee938c7d9acbafc8e160186dbaf7b"
+ resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-3.1.0.tgz"
integrity sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==
dependencies:
"@types/unist" "^2.0.0"
@@ -18260,7 +17916,7 @@ unist-util-visit@^3.1.0:
unist-util-visit@^4.0.0, unist-util-visit@^4.1.1:
version "4.1.1"
- resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.1.tgz#1c4842d70bd3df6cc545276f5164f933390a9aad"
+ resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz"
integrity sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==
dependencies:
"@types/unist" "^2.0.0"
@@ -18269,7 +17925,7 @@ unist-util-visit@^4.0.0, unist-util-visit@^4.1.1:
unist-util-visit@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2"
+ resolved "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz"
integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==
dependencies:
"@types/unist" "^2.0.0"
@@ -18278,73 +17934,65 @@ unist-util-visit@^4.1.2:
universal-user-agent@^6.0.0:
version "6.0.1"
- resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.1.tgz#15f20f55da3c930c57bddbf1734c6654d5fd35aa"
+ resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz"
integrity sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==
universalify@^0.1.0:
version "0.1.2"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
+ resolved "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"
integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
universalify@^0.2.0:
version "0.2.0"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
+ resolved "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz"
integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
universalify@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d"
+ resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz"
integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
unixify@1.0.0, unixify@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/unixify/-/unixify-1.0.0.tgz#3a641c8c2ffbce4da683a5c70f03a462940c2090"
+ resolved "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz"
integrity sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==
dependencies:
normalize-path "^2.1.1"
unpipe@1.0.0, unpipe@~1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+ resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
untildify@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b"
+ resolved "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz"
integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==
upath@2.0.1:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b"
+ resolved "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz"
integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==
-update-browserslist-db@^1.0.11:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
- integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
- dependencies:
- escalade "^3.1.1"
- picocolors "^1.0.0"
-
update-browserslist-db@^1.0.13:
version "1.0.16"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356"
+ resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz"
integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==
dependencies:
escalade "^3.1.2"
picocolors "^1.0.1"
-update-browserslist-db@^1.0.9:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
- integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
+update-browserslist-db@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz"
+ integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==
dependencies:
- escalade "^3.1.1"
- picocolors "^1.0.0"
+ escalade "^3.1.2"
+ picocolors "^1.0.1"
update-notifier@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-3.0.1.tgz#78ecb68b915e2fd1be9f767f6e298ce87b736250"
+ resolved "https://registry.npmjs.org/update-notifier/-/update-notifier-3.0.1.tgz"
integrity sha512-grrmrB6Zb8DUiyDIaeRTBCkgISYUgETNe7NglEbVsrLWXeESnlCSP50WfRSj/GmzMPl6Uchj24S/p80nP/ZQrQ==
dependencies:
boxen "^3.0.0"
@@ -18362,35 +18010,35 @@ update-notifier@^3.0.1:
upper-case-first@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324"
+ resolved "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz"
integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==
dependencies:
tslib "^2.0.3"
upper-case@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a"
+ resolved "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz"
integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==
dependencies:
tslib "^2.0.3"
uri-js@^4.2.2:
version "4.4.1"
- resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+ resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
dependencies:
punycode "^2.1.0"
url-parse-lax@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
+ resolved "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz"
integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==
dependencies:
prepend-http "^2.0.0"
url-parse@^1.5.3:
version "1.5.10"
- resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
+ resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz"
integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
dependencies:
querystringify "^2.1.1"
@@ -18398,7 +18046,7 @@ url-parse@^1.5.3:
url@0.10.3:
version "0.10.3"
- resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
+ resolved "https://registry.npmjs.org/url/-/url-0.10.3.tgz"
integrity sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==
dependencies:
punycode "1.3.2"
@@ -18406,29 +18054,29 @@ url@0.10.3:
urlpattern-polyfill@^10.0.0:
version "10.0.0"
- resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz#f0a03a97bfb03cdf33553e5e79a2aadd22cac8ec"
+ resolved "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz"
integrity sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==
urlpattern-polyfill@^8.0.0:
version "8.0.2"
- resolved "https://registry.yarnpkg.com/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz#99f096e35eff8bf4b5a2aa7d58a1523d6ebc7ce5"
+ resolved "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz"
integrity sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==
util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
util@^0.10.3:
version "0.10.4"
- resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901"
+ resolved "https://registry.npmjs.org/util/-/util-0.10.4.tgz"
integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==
dependencies:
inherits "2.0.3"
util@^0.12.4:
version "0.12.5"
- resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc"
+ resolved "https://registry.npmjs.org/util/-/util-0.12.5.tgz"
integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==
dependencies:
inherits "^2.0.3"
@@ -18439,32 +18087,32 @@ util@^0.12.4:
utils-merge@1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+ resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
uuid@3.3.2:
version "3.3.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz"
integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
uuid@8.0.0:
version "8.0.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.0.0.tgz#bc6ccf91b5ff0ac07bbcdbf1c7c4e150db4dbb6c"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz"
integrity sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==
uuid@^8.3.1, uuid@^8.3.2:
version "8.3.2"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
uuid@^9.0.0:
version "9.0.1"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz"
integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
uvu@^0.5.0:
version "0.5.6"
- resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df"
+ resolved "https://registry.npmjs.org/uvu/-/uvu-0.5.6.tgz"
integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==
dependencies:
dequal "^2.0.0"
@@ -18474,17 +18122,17 @@ uvu@^0.5.0:
v8-compile-cache-lib@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
+ resolved "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz"
integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==
v8-compile-cache@^2.0.3, v8-compile-cache@^2.3.0:
version "2.3.0"
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
+ resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
v8-to-istanbul@^9.0.1:
version "9.1.0"
- resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265"
+ resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz"
integrity sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==
dependencies:
"@jridgewell/trace-mapping" "^0.3.12"
@@ -18493,12 +18141,12 @@ v8-to-istanbul@^9.0.1:
valid-url@^1.0.9:
version "1.0.9"
- resolved "https://registry.yarnpkg.com/valid-url/-/valid-url-1.0.9.tgz#1c14479b40f1397a75782f115e4086447433a200"
+ resolved "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz"
integrity sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==
validate-npm-package-license@3.0.4, validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4:
version "3.0.4"
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
+ resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"
integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
dependencies:
spdx-correct "^3.0.0"
@@ -18506,36 +18154,36 @@ validate-npm-package-license@3.0.4, validate-npm-package-license@^3.0.1, validat
validate-npm-package-name@5.0.0, validate-npm-package-name@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713"
+ resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz"
integrity sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==
dependencies:
builtins "^5.0.0"
validate-npm-package-name@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e"
+ resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz"
integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==
dependencies:
builtins "^1.0.3"
value-or-promise@1.0.11:
version "1.0.11"
- resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140"
+ resolved "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz"
integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==
value-or-promise@^1.0.11, value-or-promise@^1.0.12:
version "1.0.12"
- resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c"
+ resolved "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz"
integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==
vary@~1.1.2:
version "1.1.2"
- resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+ resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
verror@1.10.0:
version "1.10.0"
- resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
+ resolved "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"
integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==
dependencies:
assert-plus "^1.0.0"
@@ -18544,7 +18192,7 @@ verror@1.10.0:
vfile-location@^4.0.0:
version "4.0.1"
- resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.0.1.tgz#06f2b9244a3565bef91f099359486a08b10d3a95"
+ resolved "https://registry.npmjs.org/vfile-location/-/vfile-location-4.0.1.tgz"
integrity sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==
dependencies:
"@types/unist" "^2.0.0"
@@ -18552,7 +18200,7 @@ vfile-location@^4.0.0:
vfile-matter@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/vfile-matter/-/vfile-matter-3.0.1.tgz#85e26088e43aa85c04d42ffa3693635fa2bc5624"
+ resolved "https://registry.npmjs.org/vfile-matter/-/vfile-matter-3.0.1.tgz"
integrity sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==
dependencies:
"@types/js-yaml" "^4.0.0"
@@ -18561,7 +18209,7 @@ vfile-matter@^3.0.1:
vfile-message@^3.0.0:
version "3.1.3"
- resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.3.tgz#1360c27a99234bebf7bddbbbca67807115e6b0dd"
+ resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.3.tgz"
integrity sha512-0yaU+rj2gKAyEk12ffdSbBfjnnj+b1zqTBv3OQCTn8yEB02bsPizwdBPrLJjHnK+cU9EMMcUnNv938XcZIkmdA==
dependencies:
"@types/unist" "^2.0.0"
@@ -18569,7 +18217,7 @@ vfile-message@^3.0.0:
vfile@^5.0.0:
version "5.3.6"
- resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.6.tgz#61b2e70690cc835a5d0d0fd135beae74e5a39546"
+ resolved "https://registry.npmjs.org/vfile/-/vfile-5.3.6.tgz"
integrity sha512-ADBsmerdGBs2WYckrLBEmuETSPyTD4TuLxTrw0DvjirxW1ra4ZwkbzG8ndsv3Q57smvHxo677MHaQrY9yxH8cA==
dependencies:
"@types/unist" "^2.0.0"
@@ -18579,7 +18227,7 @@ vfile@^5.0.0:
vfile@^5.3.0:
version "5.3.7"
- resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7"
+ resolved "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz"
integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==
dependencies:
"@types/unist" "^2.0.0"
@@ -18589,7 +18237,7 @@ vfile@^5.3.0:
vinyl-file@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-3.0.0.tgz#b104d9e4409ffa325faadd520642d0a3b488b365"
+ resolved "https://registry.npmjs.org/vinyl-file/-/vinyl-file-3.0.0.tgz"
integrity sha512-BoJDj+ca3D9xOuPEM6RWVtWQtvEPQiQYn82LvdxhLWplfQsBzBqtgK0yhCP0s1BNTi6dH9BO+dzybvyQIacifg==
dependencies:
graceful-fs "^4.1.2"
@@ -18600,7 +18248,7 @@ vinyl-file@^3.0.0:
vinyl@^2.0.1:
version "2.2.1"
- resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.1.tgz#23cfb8bbab5ece3803aa2c0a1eb28af7cbba1974"
+ resolved "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz"
integrity sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==
dependencies:
clone "^2.1.1"
@@ -18612,36 +18260,36 @@ vinyl@^2.0.1:
vscode-oniguruma@^1.7.0:
version "1.7.0"
- resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
+ resolved "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz"
integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
vscode-textmate@^8.0.0:
version "8.0.0"
- resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
+ resolved "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz"
integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
w3c-xmlserializer@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073"
+ resolved "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz"
integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==
dependencies:
xml-name-validator "^4.0.0"
walk-up-path@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-1.0.0.tgz#d4745e893dd5fd0dbb58dd0a4c6a33d9c9fec53e"
+ resolved "https://registry.npmjs.org/walk-up-path/-/walk-up-path-1.0.0.tgz"
integrity sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==
walker@^1.0.8:
version "1.0.8"
- resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f"
+ resolved "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz"
integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==
dependencies:
makeerror "1.0.12"
watchpack@2.4.0:
version "2.4.0"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
+ resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz"
integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
dependencies:
glob-to-regexp "^0.4.1"
@@ -18649,29 +18297,29 @@ watchpack@2.4.0:
wcwidth@^1.0.0, wcwidth@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
+ resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"
integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==
dependencies:
defaults "^1.0.3"
web-namespaces@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692"
+ resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz"
integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==
web-streams-polyfill@^3.2.1:
version "3.2.1"
- resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
+ resolved "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz"
integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
web-worker@^1.2.0:
version "1.2.0"
- resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.2.0.tgz#5d85a04a7fbc1e7db58f66595d7a3ac7c9c180da"
+ resolved "https://registry.npmjs.org/web-worker/-/web-worker-1.2.0.tgz"
integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==
webcrypto-core@^1.7.4:
version "1.7.5"
- resolved "https://registry.yarnpkg.com/webcrypto-core/-/webcrypto-core-1.7.5.tgz#c02104c953ca7107557f9c165d194c6316587ca4"
+ resolved "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-1.7.5.tgz"
integrity sha512-gaExY2/3EHQlRNNNVSrbG2Cg94Rutl7fAaKILS1w8ZDhGxdFOaw6EbCfHIxPy9vt/xwp5o0VQAx9aySPF6hU1A==
dependencies:
"@peculiar/asn1-schema" "^2.1.6"
@@ -18682,49 +18330,49 @@ webcrypto-core@^1.7.4:
webidl-conversions@^3.0.0:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
+ resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
webidl-conversions@^4.0.2:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
+ resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"
integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
webidl-conversions@^6.1.0:
version "6.1.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
+ resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz"
integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
webidl-conversions@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a"
+ resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz"
integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==
webpack-virtual-modules@^0.4.4:
version "0.4.6"
- resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz#3e4008230731f1db078d9cb6f68baf8571182b45"
+ resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz"
integrity sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==
whatwg-encoding@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53"
+ resolved "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz"
integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==
dependencies:
iconv-lite "0.6.3"
whatwg-fetch@^3.4.1:
version "3.6.2"
- resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
+ resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz"
integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
whatwg-mimetype@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7"
+ resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz"
integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==
whatwg-url@^11.0.0:
version "11.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-11.0.0.tgz#0a849eebb5faf2119b901bb76fd795c2848d4018"
+ resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz"
integrity sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==
dependencies:
tr46 "^3.0.0"
@@ -18732,7 +18380,7 @@ whatwg-url@^11.0.0:
whatwg-url@^5.0.0:
version "5.0.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
+ resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"
integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
dependencies:
tr46 "~0.0.3"
@@ -18740,7 +18388,7 @@ whatwg-url@^5.0.0:
whatwg-url@^8.4.0:
version "8.7.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
+ resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz"
integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
dependencies:
lodash "^4.7.0"
@@ -18749,7 +18397,7 @@ whatwg-url@^8.4.0:
which-boxed-primitive@^1.0.2:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
+ resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
dependencies:
is-bigint "^1.0.1"
@@ -18760,7 +18408,7 @@ which-boxed-primitive@^1.0.2:
which-collection@^1.0.1:
version "1.0.1"
- resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906"
+ resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz"
integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==
dependencies:
is-map "^2.0.1"
@@ -18770,12 +18418,12 @@ which-collection@^1.0.1:
which-module@^2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
+ resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==
which-pm@2.0.0:
version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-pm/-/which-pm-2.0.0.tgz#8245609ecfe64bf751d0eef2f376d83bf1ddb7ae"
+ resolved "https://registry.npmjs.org/which-pm/-/which-pm-2.0.0.tgz"
integrity sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==
dependencies:
load-yaml-file "^0.2.0"
@@ -18783,7 +18431,7 @@ which-pm@2.0.0:
which-typed-array@^1.1.2, which-typed-array@^1.1.9:
version "1.1.9"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+ resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz"
integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
dependencies:
available-typed-arrays "^1.0.5"
@@ -18795,14 +18443,14 @@ which-typed-array@^1.1.2, which-typed-array@^1.1.9:
which@^1.2.9, which@^1.3.1:
version "1.3.1"
- resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+ resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
dependencies:
isexe "^2.0.0"
which@^2.0.1, which@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+ resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
dependencies:
isexe "^2.0.0"
@@ -18816,38 +18464,38 @@ which@^4.0.0:
wide-align@^1.1.2, wide-align@^1.1.5:
version "1.1.5"
- resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
+ resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz"
integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
dependencies:
string-width "^1.0.2 || 2 || 3 || 4"
widest-line@^2.0.0:
version "2.0.1"
- resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc"
+ resolved "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz"
integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==
dependencies:
string-width "^2.1.1"
widest-line@^3.1.0:
version "3.1.0"
- resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca"
+ resolved "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz"
integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==
dependencies:
string-width "^4.0.0"
word-wrap@^1.2.3:
version "1.2.5"
- resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
+ resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz"
integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
wordwrap@^1.0.0:
version "1.0.0"
- resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
+ resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
version "7.0.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
ansi-styles "^4.0.0"
@@ -18856,7 +18504,7 @@ wordwrap@^1.0.0:
wrap-ansi@^2.0.0:
version "2.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"
integrity sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==
dependencies:
string-width "^1.0.1"
@@ -18864,7 +18512,7 @@ wrap-ansi@^2.0.0:
wrap-ansi@^3.0.1:
version "3.0.1"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz"
integrity sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==
dependencies:
string-width "^2.1.1"
@@ -18872,25 +18520,16 @@ wrap-ansi@^3.0.1:
wrap-ansi@^6.0.1, wrap-ansi@^6.2.0:
version "6.2.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"
integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
dependencies:
ansi-styles "^4.0.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
-wrap-ansi@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
wrap-ansi@^8.1.0:
version "8.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz"
integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
dependencies:
ansi-styles "^6.1.0"
@@ -18899,7 +18538,7 @@ wrap-ansi@^8.1.0:
wrap-ansi@^9.0.0:
version "9.0.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz"
integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==
dependencies:
ansi-styles "^6.2.1"
@@ -18908,12 +18547,12 @@ wrap-ansi@^9.0.0:
wrappy@1:
version "1.0.2"
- resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
write-file-atomic@5.0.1:
version "5.0.1"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7"
+ resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz"
integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==
dependencies:
imurmurhash "^0.1.4"
@@ -18921,7 +18560,7 @@ write-file-atomic@5.0.1:
write-file-atomic@^2.0.0, write-file-atomic@^2.4.2:
version "2.4.3"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481"
+ resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz"
integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==
dependencies:
graceful-fs "^4.1.11"
@@ -18930,7 +18569,7 @@ write-file-atomic@^2.0.0, write-file-atomic@^2.4.2:
write-file-atomic@^3.0.0:
version "3.0.3"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
+ resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz"
integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
dependencies:
imurmurhash "^0.1.4"
@@ -18940,7 +18579,7 @@ write-file-atomic@^3.0.0:
write-file-atomic@^4.0.0, write-file-atomic@^4.0.2:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd"
+ resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz"
integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==
dependencies:
imurmurhash "^0.1.4"
@@ -18948,7 +18587,7 @@ write-file-atomic@^4.0.0, write-file-atomic@^4.0.2:
write-json-file@^3.2.0:
version "3.2.0"
- resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a"
+ resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz"
integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==
dependencies:
detect-indent "^5.0.0"
@@ -18960,7 +18599,7 @@ write-json-file@^3.2.0:
write-pkg@4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039"
+ resolved "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz"
integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==
dependencies:
sort-keys "^2.0.0"
@@ -18969,47 +18608,42 @@ write-pkg@4.0.0:
ws@8.13.0:
version "8.13.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz"
integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==
ws@^7.0.0:
version "7.5.9"
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
+ resolved "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz"
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
-ws@^8.11.0:
- version "8.14.2"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f"
- integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==
-
-ws@^8.12.0:
- version "8.12.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8"
- integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==
+ws@^8.11.0, ws@^8.12.0:
+ version "8.18.0"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"
+ integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
ws@^8.13.0, ws@^8.15.0:
version "8.17.0"
- resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.0.tgz#d145d18eca2ed25aaf791a183903f7be5e295fea"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.17.0.tgz"
integrity sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==
xdg-basedir@^3.0.0:
version "3.0.0"
- resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
+ resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz"
integrity sha512-1Dly4xqlulvPD3fZUQJLY+FUIeqN3N2MM3uqe4rCJftAvOjFa3jFGfctOgluGx4ahPbUCsZkmJILiP0Vi4T6lQ==
xdg-basedir@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
+ resolved "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz"
integrity sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==
xml-name-validator@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835"
+ resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz"
integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==
xml2js@0.4.19:
version "0.4.19"
- resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7"
+ resolved "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz"
integrity sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==
dependencies:
sax ">=0.6.0"
@@ -19017,72 +18651,72 @@ xml2js@0.4.19:
xmlbuilder@~9.0.1:
version "9.0.7"
- resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d"
+ resolved "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"
integrity sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==
xmlchars@^2.2.0:
version "2.2.0"
- resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
+ resolved "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz"
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
xtend@~4.0.1:
version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+ resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
y18n@^4.0.0:
version "4.0.3"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
+ resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"
integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==
y18n@^5.0.5:
version "5.0.8"
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
+ resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
yallist@^2.1.2:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
+ resolved "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"
integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==
yallist@^3.0.2:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
+ resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
yallist@^4.0.0:
version "4.0.0"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
+ resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
yaml-ast-parser@^0.0.43:
version "0.0.43"
- resolved "https://registry.yarnpkg.com/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz#e8a23e6fb4c38076ab92995c5dca33f3d3d7c9bb"
+ resolved "https://registry.npmjs.org/yaml-ast-parser/-/yaml-ast-parser-0.0.43.tgz"
integrity sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==
yaml@2.3.4:
version "2.3.4"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2"
+ resolved "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz"
integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==
yaml@^1.10.0:
version "1.10.2"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
+ resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
yaml@^2.3.1:
version "2.4.2"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.2.tgz#7a2b30f2243a5fc299e1f14ca58d475ed4bc5362"
+ resolved "https://registry.npmjs.org/yaml/-/yaml-2.4.2.tgz"
integrity sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==
yargs-parser@21.1.1, yargs-parser@^21.0.0, yargs-parser@^21.0.1, yargs-parser@^21.1.1:
version "21.1.1"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
+ resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz"
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
yargs-parser@^13.1.2:
version "13.1.2"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
+ resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz"
integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
dependencies:
camelcase "^5.0.0"
@@ -19090,7 +18724,7 @@ yargs-parser@^13.1.2:
yargs-parser@^18.1.2:
version "18.1.3"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
+ resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"
integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
dependencies:
camelcase "^5.0.0"
@@ -19098,12 +18732,12 @@ yargs-parser@^18.1.2:
yargs-parser@^20.2.2, yargs-parser@^20.2.3:
version "20.2.9"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
+ resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
yargs@17.7.2, yargs@^17.6.2, yargs@^17.7.2:
version "17.7.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
+ resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz"
integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==
dependencies:
cliui "^8.0.1"
@@ -19116,7 +18750,7 @@ yargs@17.7.2, yargs@^17.6.2, yargs@^17.7.2:
yargs@^15.0.2, yargs@^15.3.1, yargs@^15.4.1:
version "15.4.1"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
+ resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
dependencies:
cliui "^6.0.0"
@@ -19133,7 +18767,7 @@ yargs@^15.0.2, yargs@^15.3.1, yargs@^15.4.1:
yargs@^16.1.0, yargs@^16.2.0:
version "16.2.0"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
+ resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
dependencies:
cliui "^7.0.2"
@@ -19146,7 +18780,7 @@ yargs@^16.1.0, yargs@^16.2.0:
yargs@^17.0.0, yargs@^17.3.1:
version "17.6.2"
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541"
+ resolved "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz"
integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==
dependencies:
cliui "^8.0.1"
@@ -19159,7 +18793,7 @@ yargs@^17.0.0, yargs@^17.3.1:
yauzl@^2.10.0:
version "2.10.0"
- resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"
+ resolved "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz"
integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==
dependencies:
buffer-crc32 "~0.2.3"
@@ -19167,7 +18801,7 @@ yauzl@^2.10.0:
yeoman-environment@^3.11.1:
version "3.13.0"
- resolved "https://registry.yarnpkg.com/yeoman-environment/-/yeoman-environment-3.13.0.tgz#9db29f47352cb4a38eb0ef830a86091be3fd7240"
+ resolved "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-3.13.0.tgz"
integrity sha512-eBPpBZCvFzx6yk17x+ZrOHp8ADDv6qHradV+SgdugaQKIy9NjEX5AkbwdTHLOgccSTkQ9rN791xvYOu6OmqjBg==
dependencies:
"@npmcli/arborist" "^4.0.4"
@@ -19209,7 +18843,7 @@ yeoman-environment@^3.11.1:
yeoman-generator@^5.6.1:
version "5.7.0"
- resolved "https://registry.yarnpkg.com/yeoman-generator/-/yeoman-generator-5.7.0.tgz#5cf24b9fca331646263749121d4f8d477698a83a"
+ resolved "https://registry.npmjs.org/yeoman-generator/-/yeoman-generator-5.7.0.tgz"
integrity sha512-z9ZwgKoDOd+llPDCwn8Ax2l4In5FMhlslxdeByW4AMxhT+HbTExXKEAahsClHSbwZz1i5OzRwLwRIUdOJBr5Bw==
dependencies:
chalk "^4.1.0"
@@ -19228,22 +18862,22 @@ yeoman-generator@^5.6.1:
yn@3.1.1:
version "3.1.1"
- resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
+ resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz"
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
yocto-queue@^0.1.0:
version "0.1.0"
- resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+ resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
yoctocolors-cjs@^2.1.2:
version "2.1.2"
- resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz#f4b905a840a37506813a7acaa28febe97767a242"
+ resolved "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.2.tgz"
integrity sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==
yosay@^2.0.2:
version "2.0.2"
- resolved "https://registry.yarnpkg.com/yosay/-/yosay-2.0.2.tgz#a7017e764cd88d64a1ae64812201de5b157adf6d"
+ resolved "https://registry.npmjs.org/yosay/-/yosay-2.0.2.tgz"
integrity sha512-avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==
dependencies:
ansi-regex "^2.0.0"
@@ -19258,15 +18892,15 @@ yosay@^2.0.2:
zod@3.21.4:
version "3.21.4"
- resolved "https://registry.yarnpkg.com/zod/-/zod-3.21.4.tgz#10882231d992519f0a10b5dd58a38c9dabbb64db"
+ resolved "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz"
integrity sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==
zod@^3.20.2:
version "3.22.3"
- resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.3.tgz#2fbc96118b174290d94e8896371c95629e87a060"
+ resolved "https://registry.npmjs.org/zod/-/zod-3.22.3.tgz"
integrity sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==
zwitch@^2.0.0:
version "2.0.4"
- resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7"
+ resolved "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz"
integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==
From 666e6303eb567b1900eaf86fa7900fe4181fb9ed Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 12 Sep 2024 13:23:52 +0000
Subject: [PATCH 034/154] [no ci] Release: 3.0.103
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/components/package.json | 2 +-
packages/core/package.json | 6 +++---
packages/ui/package.json | 4 ++--
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 6854b23a08..632d44b55a 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.100",
+ "version": "3.0.103",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -12,7 +12,7 @@
"dependencies": {
"@faststore/api": "^3.0.100",
"@faststore/sdk": "^3.0.97",
- "@faststore/ui": "^3.0.97",
+ "@faststore/ui": "^3.0.103",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index b2c6896c71..de589bf1bb 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.102",
+ "version": "3.0.103",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 9e8aa91237..73e3945b30 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.102 linux-x64 node-v18.20.4
+@faststore/cli/3.0.103 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/cms-sync.ts)_
## `faststore dev [PATH]`
@@ -87,7 +87,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -102,7 +102,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -142,7 +142,7 @@ EXAMPLES
$ yarn faststore init discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/init.ts)_
+_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/init.ts)_
## `faststore start [PATH]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.102/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 624e23bd3a..19c9c98c1e 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.102",
+ "version": "3.0.103",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.102",
+ "@faststore/core": "^3.0.103",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/components/package.json b/packages/components/package.json
index c6a6c5f60c..26dc329781 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.97",
+ "version": "3.0.103",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
diff --git a/packages/core/package.json b/packages/core/package.json
index 3204f7dffe..cdbb7c1306 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.102",
+ "version": "3.0.103",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -44,10 +44,10 @@
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
"@faststore/api": "^3.0.100",
- "@faststore/components": "^3.0.97",
+ "@faststore/components": "^3.0.103",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/sdk": "^3.0.97",
- "@faststore/ui": "^3.0.97",
+ "@faststore/ui": "^3.0.103",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 0706e1d060..6d15cb1b6c 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.97",
+ "version": "3.0.103",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.97",
+ "@faststore/components": "^3.0.103",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
From 560d92fad59f64e03476437deb1bdfd8e72d4ca9 Mon Sep 17 00:00:00 2001
From: Guilherme Carvalho <77246+gvc@users.noreply.github.com>
Date: Fri, 13 Sep 2024 11:15:09 -0300
Subject: [PATCH 035/154] chore: rename init command to create (#2453)
## What's the purpose of this pull request?
Just to rename the `init` command to `create` to adhere to the new
specification
---
packages/cli/README.md | 28 +++++++++++--------
.../cli/src/commands/{init.ts => create.ts} | 6 ++--
packages/cli/src/index.ts | 4 +--
3 files changed, 21 insertions(+), 17 deletions(-)
rename packages/cli/src/commands/{init.ts => create.ts} (88%)
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 73e3945b30..51f936d83b 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -25,6 +25,7 @@ npm install -g @faststore/cli
```
+
```sh-session
$ npm install -g @faststore/cli
$ faststore COMMAND
@@ -36,19 +37,21 @@ USAGE
$ faststore COMMAND
...
```
+
## Commands
-* [`faststore build [PATH]`](#faststore-build-path)
-* [`faststore cms-sync [PATH]`](#faststore-cms-sync-path)
-* [`faststore dev [PATH]`](#faststore-dev-path)
-* [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path)
-* [`faststore help [COMMAND]`](#faststore-help-command)
-* [`faststore init [PATH]`](#faststore-init-path)
-* [`faststore start [PATH]`](#faststore-start-path)
-* [`faststore test [PATH]`](#faststore-test-path)
+
+- [`faststore build [PATH]`](#faststore-build-path)
+- [`faststore cms-sync [PATH]`](#faststore-cms-sync-path)
+- [`faststore dev [PATH]`](#faststore-dev-path)
+- [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path)
+- [`faststore help [COMMAND]`](#faststore-help-command)
+- [`faststore create [PATH]`](#faststore-create-path)
+- [`faststore start [PATH]`](#faststore-start-path)
+- [`faststore test [PATH]`](#faststore-test-path)
## `faststore build [PATH]`
@@ -124,13 +127,13 @@ DESCRIPTION
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.22/src/commands/help.ts)_
-## `faststore init [PATH]`
+## `faststore create [PATH]`
Creates a discovery folder based on the starter.store template.
```
USAGE
- $ faststore init [PATH]
+ $ faststore create [PATH]
ARGUMENTS
PATH The path where the Discovery folder will be created. Defaults to ./discovery.
@@ -139,10 +142,10 @@ DESCRIPTION
Creates a discovery folder based on the starter.store template.
EXAMPLES
- $ yarn faststore init discovery
+ $ yarn faststore create discovery
```
-_See code: [dist/commands/init.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/init.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/create.ts)_
## `faststore start [PATH]`
@@ -167,4 +170,5 @@ ARGUMENTS
```
_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/test.ts)_
+
diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/create.ts
similarity index 88%
rename from packages/cli/src/commands/init.ts
rename to packages/cli/src/commands/create.ts
index 7082c00087..975103341e 100644
--- a/packages/cli/src/commands/init.ts
+++ b/packages/cli/src/commands/create.ts
@@ -3,7 +3,7 @@ import degit from 'degit'
import { Command } from '@oclif/core'
import { confirm } from '@inquirer/prompts'
-export default class Init extends Command {
+export default class Create extends Command {
static args = [
{
name: 'path',
@@ -15,10 +15,10 @@ export default class Init extends Command {
static description =
'Creates a discovery folder based on the starter.store template.'
- static examples = ['$ yarn faststore init discovery']
+ static examples = ['$ yarn faststore create discovery']
async run() {
- const { args } = await this.parse(Init)
+ const { args } = await this.parse(Create)
const discoveryPath = args.path ?? './discovery'
const discoveryFolderExists = fs.existsSync(discoveryPath)
diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts
index c551ea6e21..aee79bebb4 100644
--- a/packages/cli/src/index.ts
+++ b/packages/cli/src/index.ts
@@ -1,6 +1,6 @@
export { run } from '@oclif/core'
-import { default as Init } from './commands/init'
+import { default as Create } from './commands/create'
import { default as Dev } from './commands/dev'
import { default as Build } from './commands/build'
import { default as Serve } from './commands/start'
@@ -8,7 +8,7 @@ import { default as CmsSync } from './commands/cms-sync'
import { default as Test } from './commands/test'
export const commands = {
- init: Init,
+ create: Create,
dev: Dev,
build: Build,
serve: Serve,
From db56d15ff06a4cfac4fba6c0d935bb8f5081ef40 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 13 Sep 2024 14:20:56 +0000
Subject: [PATCH 036/154] [no ci] Release: 3.0.104
---
lerna.json | 2 +-
packages/cli/README.md | 74 ++++++++++++++++++---------------------
packages/cli/package.json | 2 +-
3 files changed, 37 insertions(+), 41 deletions(-)
diff --git a/lerna.json b/lerna.json
index de589bf1bb..f1ddde1fa1 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.103",
+ "version": "3.0.104",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 51f936d83b..b2965d3783 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -25,33 +25,30 @@ npm install -g @faststore/cli
```
-
```sh-session
$ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.103 linux-x64 node-v18.20.4
+@faststore/cli/3.0.104 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
...
```
-
## Commands
-
-- [`faststore build [PATH]`](#faststore-build-path)
-- [`faststore cms-sync [PATH]`](#faststore-cms-sync-path)
-- [`faststore dev [PATH]`](#faststore-dev-path)
-- [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path)
-- [`faststore help [COMMAND]`](#faststore-help-command)
-- [`faststore create [PATH]`](#faststore-create-path)
-- [`faststore start [PATH]`](#faststore-start-path)
-- [`faststore test [PATH]`](#faststore-test-path)
+* [`faststore build [PATH]`](#faststore-build-path)
+* [`faststore cms-sync [PATH]`](#faststore-cms-sync-path)
+* [`faststore create [PATH]`](#faststore-create-path)
+* [`faststore dev [PATH]`](#faststore-dev-path)
+* [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path)
+* [`faststore help [COMMAND]`](#faststore-help-command)
+* [`faststore start [PATH]`](#faststore-start-path)
+* [`faststore test [PATH]`](#faststore-test-path)
## `faststore build [PATH]`
@@ -63,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -78,7 +75,27 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/cms-sync.ts)_
+
+## `faststore create [PATH]`
+
+Creates a discovery folder based on the starter.store template.
+
+```
+USAGE
+ $ faststore create [PATH]
+
+ARGUMENTS
+ PATH The path where the Discovery folder will be created. Defaults to ./discovery.
+
+DESCRIPTION
+ Creates a discovery folder based on the starter.store template.
+
+EXAMPLES
+ $ yarn faststore create discovery
+```
+
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -90,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -105,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -127,26 +144,6 @@ DESCRIPTION
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.22/src/commands/help.ts)_
-## `faststore create [PATH]`
-
-Creates a discovery folder based on the starter.store template.
-
-```
-USAGE
- $ faststore create [PATH]
-
-ARGUMENTS
- PATH The path where the Discovery folder will be created. Defaults to ./discovery.
-
-DESCRIPTION
- Creates a discovery folder based on the starter.store template.
-
-EXAMPLES
- $ yarn faststore create discovery
-```
-
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/create.ts)_
-
## `faststore start [PATH]`
```
@@ -157,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -169,6 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.103/dist/commands/test.ts)_
-
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 19c9c98c1e..12abd332e7 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.103",
+ "version": "3.0.104",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
From 3311518160785f4c498a9876c35fdb5a5970d609 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Fri, 13 Sep 2024 12:27:18 -0300
Subject: [PATCH 037/154] chore: Moves lighthouse pkg from devDependencies to
dependencies (#2456)
## What's the purpose of this pull request?
- Moves lighthouse pkg from devDependencies to dependencies
## How to test it?
- It will be possible to remove `@faststore/lighthouse` from the
devDependencies on starter.store package.json.
- Nothing should break.
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/533
## References
---
packages/core/package.json | 2 +-
yarn.lock | 5 -----
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/packages/core/package.json b/packages/core/package.json
index cdbb7c1306..5f942d71f4 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -48,6 +48,7 @@
"@faststore/graphql-utils": "^3.0.97",
"@faststore/sdk": "^3.0.97",
"@faststore/ui": "^3.0.103",
+ "@faststore/lighthouse": "^3.0.97",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -89,7 +90,6 @@
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
"@faststore/eslint-config": "^3.0.97",
- "@faststore/lighthouse": "^1.12.32",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/yarn.lock b/yarn.lock
index 557bcdbfe8..fa61ffc523 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1059,11 +1059,6 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
-"@faststore/lighthouse@^1.12.32":
- version "1.12.32"
- resolved "https://registry.npmjs.org/@faststore/lighthouse/-/lighthouse-1.12.32.tgz"
- integrity sha512-65IiCPRfjdtKyGXSvLXjug46J8z8e7dJr7Otxezjmn8N0F9tWh8IvrEAEAquXZXvg6sjVEjJnQ3S6fYuiqW4iw==
-
"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3":
version "1.1.3"
resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
From 6d4dd3b2c82a2d02e48cb33240ace1ecf5710cec Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 13 Sep 2024 15:33:14 +0000
Subject: [PATCH 038/154] [no ci] Release: 3.0.105
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
4 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/lerna.json b/lerna.json
index f1ddde1fa1..7d03b030fb 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.104",
+ "version": "3.0.105",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index b2965d3783..711fef345e 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.104 linux-x64 node-v18.20.4
+@faststore/cli/3.0.105 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.104/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 12abd332e7..f62e8687e6 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.104",
+ "version": "3.0.105",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.103",
+ "@faststore/core": "^3.0.105",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 5f942d71f4..64f831ea4a 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.103",
+ "version": "3.0.105",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -46,9 +46,9 @@
"@faststore/api": "^3.0.100",
"@faststore/components": "^3.0.103",
"@faststore/graphql-utils": "^3.0.97",
+ "@faststore/lighthouse": "^3.0.97",
"@faststore/sdk": "^3.0.97",
"@faststore/ui": "^3.0.103",
- "@faststore/lighthouse": "^3.0.97",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
From 5068098cfd55439413fd37ee030a61a42fff251e Mon Sep 17 00:00:00 2001
From: JoelsonFerreiraM3 <121126786+JoelsonFerreiraM3@users.noreply.github.com>
Date: Mon, 16 Sep 2024 09:41:36 -0300
Subject: [PATCH 039/154] feat: trigger critical events for analytics (#2394)
## What's the purpose of this pull request?
Trigger some critical events for analytics tools. They are:
| TOPIC | BEHAVIOR | NOTES |
|--------|--------|--------|
| 01.CE - page_view | not fired on first page, second page, third page,
etc. | only fired after purchase |
| 03.CE - view_item_list | duplicate | |
| 05.CE - add_to_cart | did not fire after adding to cart on item page |
did fire on cart page |
| 05.CE - add_to_cart_enriched | did not fire after adding to cart on
item page | did fire on cart page |
| 07.CE - GA4 - view_item | did not fire after viewing pdp | |
---
packages/core/src/Layout.tsx | 6 +++-
.../sdk/analytics/hooks/usePageViewEvent.ts | 29 +++++++++++++++++++
.../sdk/src/analytics/events/page_view.ts | 10 +++++++
packages/sdk/src/analytics/wrap.ts | 2 ++
packages/sdk/src/index.ts | 4 +++
5 files changed, 50 insertions(+), 1 deletion(-)
create mode 100644 packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
create mode 100644 packages/sdk/src/analytics/events/page_view.ts
diff --git a/packages/core/src/Layout.tsx b/packages/core/src/Layout.tsx
index 1297006bf1..1f1dd96b4c 100644
--- a/packages/core/src/Layout.tsx
+++ b/packages/core/src/Layout.tsx
@@ -1,6 +1,10 @@
-import type { PropsWithChildren } from 'react'
+import { type PropsWithChildren } from 'react'
+
+import { usePageViewEvent } from './sdk/analytics/hooks/usePageViewEvent'
function Layout({ children }: PropsWithChildren) {
+ usePageViewEvent()
+
return <>{children}>
}
diff --git a/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts b/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
new file mode 100644
index 0000000000..12dd85b6ec
--- /dev/null
+++ b/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
@@ -0,0 +1,29 @@
+import { useCallback, useEffect } from 'react'
+import { useRouter } from 'next/router'
+import { sendAnalyticsEvent } from '@faststore/sdk'
+import type { PageViewEvent } from '@faststore/sdk'
+
+export const usePageViewEvent = () => {
+ const sendPageViewEvent = useCallback(() => {
+ sendAnalyticsEvent({
+ name: 'page_view',
+ params: {
+ page_title: document.title,
+ page_location: location.href,
+ send_page_view: true,
+ },
+ })
+ }, [])
+
+ const router = useRouter()
+
+ useEffect(() => {
+ router.events.on('routeChangeComplete', sendPageViewEvent)
+
+ return () => {
+ router.events.off('routeChangeComplete', sendPageViewEvent)
+ }
+ }, [router])
+
+ return { sendPageViewEvent }
+}
diff --git a/packages/sdk/src/analytics/events/page_view.ts b/packages/sdk/src/analytics/events/page_view.ts
new file mode 100644
index 0000000000..ab9cf18e6b
--- /dev/null
+++ b/packages/sdk/src/analytics/events/page_view.ts
@@ -0,0 +1,10 @@
+export interface PageViewParams {
+ page_title?: string,
+ page_location?: string,
+ send_page_view?: boolean,
+}
+
+export interface PageViewEvent {
+ name: 'page_view'
+ params: PageViewParams
+}
diff --git a/packages/sdk/src/analytics/wrap.ts b/packages/sdk/src/analytics/wrap.ts
index b0114387c7..433a13d26e 100644
--- a/packages/sdk/src/analytics/wrap.ts
+++ b/packages/sdk/src/analytics/wrap.ts
@@ -16,6 +16,7 @@ import type { SelectPromotionEvent } from './events/select_promotion'
import type { ViewPromotionEvent } from './events/view_promotion'
import type { ViewItemEvent } from './events/view_item'
import type { ViewItemListEvent } from './events/view_item_list'
+import { PageViewEvent } from './events/page_view'
/**
* All these events are based on the official GA4 docs. https://developers.google.com/gtagjs/reference/ga4-events
@@ -39,6 +40,7 @@ export type AnalyticsEvent =
| LoginEvent
| SignupEvent
| ShareEvent
+ | PageViewEvent
export interface UnknownEvent {
name: string
diff --git a/packages/sdk/src/index.ts b/packages/sdk/src/index.ts
index e07422709f..a39aa14abb 100644
--- a/packages/sdk/src/index.ts
+++ b/packages/sdk/src/index.ts
@@ -57,6 +57,10 @@ export type {
ViewItemListEvent,
ViewItemListParams,
} from "./analytics/events/view_item_list";
+export type {
+ PageViewEvent,
+ PageViewParams,
+} from "./analytics/events/page_view";
export type {
CurrencyCode,
Item,
From 238c6a205d174e6704974d948a8f4ea0657c34b7 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 16 Sep 2024 12:46:45 +0000
Subject: [PATCH 040/154] [no ci] Release: 3.0.106
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
packages/sdk/package.json | 2 +-
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 632d44b55a..935da89aa5 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.103",
+ "version": "3.0.106",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -11,7 +11,7 @@
},
"dependencies": {
"@faststore/api": "^3.0.100",
- "@faststore/sdk": "^3.0.97",
+ "@faststore/sdk": "^3.0.106",
"@faststore/ui": "^3.0.103",
"next": "13.0.7",
"nextra": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index 7d03b030fb..d0a50e307b 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.105",
+ "version": "3.0.106",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 711fef345e..c900702ca7 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.105 linux-x64 node-v18.20.4
+@faststore/cli/3.0.106 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.105/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index f62e8687e6..608d3d16f3 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.105",
+ "version": "3.0.106",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.105",
+ "@faststore/core": "^3.0.106",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 64f831ea4a..d0b1a5a79c 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.105",
+ "version": "3.0.106",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -47,7 +47,7 @@
"@faststore/components": "^3.0.103",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/lighthouse": "^3.0.97",
- "@faststore/sdk": "^3.0.97",
+ "@faststore/sdk": "^3.0.106",
"@faststore/ui": "^3.0.103",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 6795031e28..ca954391ee 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.97",
+ "version": "3.0.106",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
From f238f14625bf7528af890c4e4aea0ac9ec6a0ad7 Mon Sep 17 00:00:00 2001
From: ataideverton <56592231+ataideverton@users.noreply.github.com>
Date: Mon, 16 Sep 2024 09:57:34 -0300
Subject: [PATCH 041/154] feat: Adds B2B Customer ID (#2405)
## What's the purpose of this pull request?
As we develop more b2b features inside the `faststore`, we need to be
able to identify when a customer is a `b2b` customer and if he is member
of an Organization (Normally refered to as a Buyer Organization). This
PR addresses the first step to do so.
For that, we added a `b2b` section to the `session` hook and mutation
and inside of it, a `customerId` field, that informs us of what
BuyerOrganization that customer is a part of.
Why we decided to do this inside FastStore and not as an override or
extra request: The information comes from the same `sessions` api
`Faststore` already uses, we just need to bring an additional field.
This will not impact B2C stores, for them, it will only be an empty
objetct
## How it works?
On a B2B account that fulfills several conditions (Some specific apps,
some specific versions of apps, a feature flag), the `sessions` api will
return the `customerId` field on the `authentication` namespace and that
will be inserted on the internal session object, like so:
Account: `b2bfaststoredev`:
![image](https://github.com/user-attachments/assets/88ed84f8-0b62-406c-8596-931e09ca799d)
On a B2C account, or any account that doesn't fit all the criteria, the
field will be empty and should not interfere with anything.
Account: `storeframework`
![image](https://github.com/user-attachments/assets/81dbb28c-7561-4bf9-ae56-f3a57846e9c6)
## How to test it?
To make validation easier, we have 2 previews (You will need to be
logged in to see it working, as they are previews, you will need to edit
the cookie):
[B2B Preview - Session will print on console every few seconds, only on
the /self-management
page](https://sfj-45b4ae2--b2bfaststoredev.preview.vtex.app/self-management)
[B2C Preview - Has a button on navbar to print the session on
console](https://sfj-342a275--starter.preview.vtex.app/)
The button and the `faststore/cli` dependency are the only changes here
The PRs for these previews:
[B2B](https://github.com/vtex-sites/b2bfaststoredev.store/pull/91)
[B2C](https://github.com/vtex-sites/starter.store/pull/509)
---
packages/api/src/__generated__/schema.ts | 13 ++++++++++
.../platforms/vtex/clients/commerce/index.ts | 2 +-
.../vtex/clients/commerce/types/Session.ts | 5 ++++
.../vtex/resolvers/validateSession.ts | 24 +++++++++++--------
packages/api/src/typeDefs/session.graphql | 16 +++++++++++++
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 15 +++++++++++-
packages/core/faststore.config.default.js | 1 +
packages/core/src/sdk/session/index.ts | 3 +++
packages/sdk/src/session/index.ts | 5 ++++
packages/sdk/test/session/index.test.tsx | 1 +
11 files changed, 75 insertions(+), 14 deletions(-)
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index 61a55df546..b1a051f456 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -152,6 +152,10 @@ export type IShippingItem = {
seller: Scalars['String'];
};
+export type IStoreB2B = {
+ customerId: Scalars['String'];
+};
+
/** Shopping cart input. */
export type IStoreCart = {
/** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
@@ -274,6 +278,8 @@ export type IStoreSelectedFacet = {
export type IStoreSession = {
/** Session input address type. */
addressType?: Maybe;
+ /** Session input b2b. */
+ b2b?: Maybe;
/** Session input channel. */
channel?: Maybe;
/** Session input country. */
@@ -651,6 +657,11 @@ export type StoreAuthor = {
name: Scalars['String'];
};
+export type StoreB2B = {
+ __typename?: 'StoreB2B';
+ customerId: Scalars['String'];
+};
+
/** Brand of a given product. */
export type StoreBrand = {
__typename?: 'StoreBrand';
@@ -1094,6 +1105,8 @@ export type StoreSession = {
__typename?: 'StoreSession';
/** Session address type. */
addressType?: Maybe;
+ /** B2B Information. */
+ b2b?: Maybe;
/** Session channel. */
channel?: Maybe;
/** Session country. */
diff --git a/packages/api/src/platforms/vtex/clients/commerce/index.ts b/packages/api/src/platforms/vtex/clients/commerce/index.ts
index 3630a8d170..50e243da5a 100644
--- a/packages/api/src/platforms/vtex/clients/commerce/index.ts
+++ b/packages/api/src/platforms/vtex/clients/commerce/index.ts
@@ -333,7 +333,7 @@ export const VtexCommerce = (
params.set(
'items',
- 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol'
+ 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol,authentication.customerId,'
)
const headers: HeadersInit = withCookie({
diff --git a/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts b/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
index 3557f0c40d..9d2236e54a 100644
--- a/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
+++ b/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
@@ -8,6 +8,11 @@ export interface Namespaces {
store?: Store
checkout?: Checkout
public?: Public
+ authentication?: Authentication
+}
+
+export interface Authentication {
+ customerId: Value
}
export interface Value {
diff --git a/packages/api/src/platforms/vtex/resolvers/validateSession.ts b/packages/api/src/platforms/vtex/resolvers/validateSession.ts
index 87d28eef1a..01ad7ee778 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateSession.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateSession.ts
@@ -27,17 +27,18 @@ export const validateSession = async (
const [regionData, sessionData] = await Promise.all([
postalCode || geoCoordinates
? clients.commerce.checkout.region({
- postalCode,
- geoCoordinates,
- country,
- salesChannel,
- })
+ postalCode,
+ geoCoordinates,
+ country,
+ salesChannel,
+ })
: Promise.resolve(null),
clients.commerce.session(params.toString()).catch(() => null),
])
const profile = sessionData?.namespaces.profile ?? null
const store = sessionData?.namespaces.store ?? null
+ const authentication = sessionData?.namespaces.authentication ?? null
const region = regionData?.[0]
// Set seller only if it's inside a region
const seller = region?.sellers.find((seller) => channel.seller === seller.id)
@@ -55,13 +56,16 @@ export const validateSession = async (
seller: seller?.id,
hasOnlyDefaultSalesChannel: !store?.channel?.value
}),
+ b2b: {
+ customerId: authentication?.customerId?.value ?? ''
+ },
person: profile?.id
? {
- id: profile.id?.value ?? '',
- email: profile.email?.value ?? '',
- givenName: profile.firstName?.value ?? '',
- familyName: profile.lastName?.value ?? '',
- }
+ id: profile.id?.value ?? '',
+ email: profile.email?.value ?? '',
+ givenName: profile.firstName?.value ?? '',
+ familyName: profile.lastName?.value ?? '',
+ }
: null,
}
diff --git a/packages/api/src/typeDefs/session.graphql b/packages/api/src/typeDefs/session.graphql
index 5f8ab3cf76..dfb2a12e75 100644
--- a/packages/api/src/typeDefs/session.graphql
+++ b/packages/api/src/typeDefs/session.graphql
@@ -149,6 +149,18 @@ type StoreSession {
Session input person.
"""
person: StorePerson
+ """
+ B2B Information.
+ """
+ b2b: StoreB2B
+}
+
+type StoreB2B {
+ customerId: String!
+}
+
+input IStoreB2B {
+ customerId: String!
}
"""
@@ -191,4 +203,8 @@ input IStoreSession {
Session input person.
"""
person: IStorePerson
+ """
+ Session input b2b.
+ """
+ b2b: IStoreB2B
}
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 7364cd0d25..79b71bdad0 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -52,7 +52,7 @@ const documents = {
types.ClientSearchSuggestionsQueryDocument,
'\n query ClientTopSearchSuggestionsQuery(\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]\n ) {\n ...ClientTopSearchSuggestions\n search(first: 5, term: $term, selectedFacets: $selectedFacets) {\n suggestions {\n terms {\n value\n }\n }\n }\n }\n':
types.ClientTopSearchSuggestionsQueryDocument,
- '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n }\n }\n':
+ '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n b2b {\n customerId\n }\n }\n }\n':
types.ValidateSessionDocument,
'\n query ClientShippingSimulationQuery(\n $postalCode: String!\n $country: String!\n $items: [IShippingItem!]!\n ) {\n ...ClientShippingSimulation\n shipping(items: $items, postalCode: $postalCode, country: $country) {\n logisticsInfo {\n slas {\n carrier\n price\n availableDeliveryWindows {\n startDateUtc\n endDateUtc\n price\n listPrice\n }\n shippingEstimate\n localizedEstimates\n }\n }\n address {\n city\n neighborhood\n state\n }\n }\n }\n':
types.ClientShippingSimulationQueryDocument,
@@ -182,7 +182,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n }\n }\n'
+ source: '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n b2b {\n customerId\n }\n }\n }\n'
): typeof import('./graphql').ValidateSessionDocument
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index b3d289130b..58c11c1165 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -167,6 +167,10 @@ export type IShippingItem = {
seller: Scalars['String']['input']
}
+export type IStoreB2B = {
+ customerId: Scalars['String']['input']
+}
+
/** Shopping cart input. */
export type IStoreCart = {
/** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
@@ -289,6 +293,8 @@ export type IStoreSelectedFacet = {
export type IStoreSession = {
/** Session input address type. */
addressType: InputMaybe
+ /** Session input b2b. */
+ b2b: InputMaybe
/** Session input channel. */
channel: InputMaybe
/** Session input country. */
@@ -635,6 +641,10 @@ export type StoreAuthor = {
name: Scalars['String']['output']
}
+export type StoreB2B = {
+ customerId: Scalars['String']['output']
+}
+
/** Brand of a given product. */
export type StoreBrand = {
/** Brand name. */
@@ -1040,6 +1050,8 @@ export type StoreSeo = {
export type StoreSession = {
/** Session address type. */
addressType: Maybe
+ /** B2B Information. */
+ b2b: Maybe
/** Session channel. */
channel: Maybe
/** Session country. */
@@ -1601,6 +1613,7 @@ export type ValidateSessionMutation = {
givenName: string
familyName: string
} | null
+ b2b: { customerId: string } | null
} | null
}
@@ -2096,7 +2109,7 @@ export const ClientTopSearchSuggestionsQueryDocument = {
export const ValidateSessionDocument = {
__meta__: {
operationName: 'ValidateSession',
- operationHash: '5696202828f9275216a445e316ebf516f168c506',
+ operationHash: '1e69c734ed31bd9e763a34fe9660f5bbad3fd143',
},
} as unknown as TypedDocumentString<
ValidateSessionMutation,
diff --git a/packages/core/faststore.config.default.js b/packages/core/faststore.config.default.js
index f845bf686e..35f310172f 100644
--- a/packages/core/faststore.config.default.js
+++ b/packages/core/faststore.config.default.js
@@ -36,6 +36,7 @@ module.exports = {
addressType: null,
postalCode: null,
geoCoordinates: null,
+ b2b: null,
person: null,
},
diff --git a/packages/core/src/sdk/session/index.ts b/packages/core/src/sdk/session/index.ts
index aa5c45153e..9aa7606bf7 100644
--- a/packages/core/src/sdk/session/index.ts
+++ b/packages/core/src/sdk/session/index.ts
@@ -42,6 +42,9 @@ export const mutation = gql(`
givenName
familyName
}
+ b2b {
+ customerId
+ }
}
}
`)
diff --git a/packages/sdk/src/session/index.ts b/packages/sdk/src/session/index.ts
index 97c2330dcf..572b3f2959 100644
--- a/packages/sdk/src/session/index.ts
+++ b/packages/sdk/src/session/index.ts
@@ -28,6 +28,10 @@ export interface Person {
familyName: string
}
+export interface B2bInfo {
+ customerId: string
+}
+
export interface Session {
locale: string // en-US
currency: Currency
@@ -38,6 +42,7 @@ export interface Session {
postalCode: string | null
geoCoordinates: GeoCoordinates | null
person: Person | null
+ b2b: B2bInfo | null
}
export const createSessionStore = (
diff --git a/packages/sdk/test/session/index.test.tsx b/packages/sdk/test/session/index.test.tsx
index ce2bfeab52..7dac858acd 100644
--- a/packages/sdk/test/session/index.test.tsx
+++ b/packages/sdk/test/session/index.test.tsx
@@ -16,6 +16,7 @@ const initialSession = {
postalCode: null,
geoCoordinates: null,
person: null,
+ b2b: null,
}
test('Session Provider: Set initial session values', async () => {
From 76421761da22073a9c6a19c95667b43a5bd5839d Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 16 Sep 2024 13:02:48 +0000
Subject: [PATCH 042/154] [no ci] Release: 3.0.107
---
apps/site/package.json | 6 +++---
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 6 +++---
packages/sdk/package.json | 2 +-
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 935da89aa5..70009e92a2 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.106",
+ "version": "3.0.107",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,8 +10,8 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.100",
- "@faststore/sdk": "^3.0.106",
+ "@faststore/api": "^3.0.107",
+ "@faststore/sdk": "^3.0.107",
"@faststore/ui": "^3.0.103",
"next": "13.0.7",
"nextra": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index d0a50e307b..0ff469a134 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.106",
+ "version": "3.0.107",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index e79d36acfd..9a082acb70 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.100",
+ "version": "3.0.107",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index c900702ca7..c6218127a3 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.106 linux-x64 node-v18.20.4
+@faststore/cli/3.0.107 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.106/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 608d3d16f3..24839350bb 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.106",
+ "version": "3.0.107",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.106",
+ "@faststore/core": "^3.0.107",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index d0b1a5a79c..895c478455 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.106",
+ "version": "3.0.107",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,11 +43,11 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.100",
+ "@faststore/api": "^3.0.107",
"@faststore/components": "^3.0.103",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/lighthouse": "^3.0.97",
- "@faststore/sdk": "^3.0.106",
+ "@faststore/sdk": "^3.0.107",
"@faststore/ui": "^3.0.103",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index ca954391ee..07ccfde249 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.106",
+ "version": "3.0.107",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
From a057cb884475970089102e3522c469fd81d14931 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Mon, 16 Sep 2024 14:10:06 -0300
Subject: [PATCH 043/154] Revert "feat: Adds B2B Customer ID" (#2459)
Reverts vtex/faststore#2405
It's causing some builds to break if the packages aren't updated
accordingly. We will revert the changes for now and work on a solution
later.
---
packages/api/src/__generated__/schema.ts | 13 ----------
.../platforms/vtex/clients/commerce/index.ts | 2 +-
.../vtex/clients/commerce/types/Session.ts | 5 ----
.../vtex/resolvers/validateSession.ts | 24 ++++++++-----------
packages/api/src/typeDefs/session.graphql | 16 -------------
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 15 +-----------
packages/core/faststore.config.default.js | 1 -
packages/core/src/sdk/session/index.ts | 3 ---
packages/sdk/src/session/index.ts | 5 ----
packages/sdk/test/session/index.test.tsx | 1 -
11 files changed, 14 insertions(+), 75 deletions(-)
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index b1a051f456..61a55df546 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -152,10 +152,6 @@ export type IShippingItem = {
seller: Scalars['String'];
};
-export type IStoreB2B = {
- customerId: Scalars['String'];
-};
-
/** Shopping cart input. */
export type IStoreCart = {
/** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
@@ -278,8 +274,6 @@ export type IStoreSelectedFacet = {
export type IStoreSession = {
/** Session input address type. */
addressType?: Maybe;
- /** Session input b2b. */
- b2b?: Maybe;
/** Session input channel. */
channel?: Maybe;
/** Session input country. */
@@ -657,11 +651,6 @@ export type StoreAuthor = {
name: Scalars['String'];
};
-export type StoreB2B = {
- __typename?: 'StoreB2B';
- customerId: Scalars['String'];
-};
-
/** Brand of a given product. */
export type StoreBrand = {
__typename?: 'StoreBrand';
@@ -1105,8 +1094,6 @@ export type StoreSession = {
__typename?: 'StoreSession';
/** Session address type. */
addressType?: Maybe;
- /** B2B Information. */
- b2b?: Maybe;
/** Session channel. */
channel?: Maybe;
/** Session country. */
diff --git a/packages/api/src/platforms/vtex/clients/commerce/index.ts b/packages/api/src/platforms/vtex/clients/commerce/index.ts
index 50e243da5a..3630a8d170 100644
--- a/packages/api/src/platforms/vtex/clients/commerce/index.ts
+++ b/packages/api/src/platforms/vtex/clients/commerce/index.ts
@@ -333,7 +333,7 @@ export const VtexCommerce = (
params.set(
'items',
- 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol,authentication.customerId,'
+ 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol'
)
const headers: HeadersInit = withCookie({
diff --git a/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts b/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
index 9d2236e54a..3557f0c40d 100644
--- a/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
+++ b/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
@@ -8,11 +8,6 @@ export interface Namespaces {
store?: Store
checkout?: Checkout
public?: Public
- authentication?: Authentication
-}
-
-export interface Authentication {
- customerId: Value
}
export interface Value {
diff --git a/packages/api/src/platforms/vtex/resolvers/validateSession.ts b/packages/api/src/platforms/vtex/resolvers/validateSession.ts
index 01ad7ee778..87d28eef1a 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateSession.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateSession.ts
@@ -27,18 +27,17 @@ export const validateSession = async (
const [regionData, sessionData] = await Promise.all([
postalCode || geoCoordinates
? clients.commerce.checkout.region({
- postalCode,
- geoCoordinates,
- country,
- salesChannel,
- })
+ postalCode,
+ geoCoordinates,
+ country,
+ salesChannel,
+ })
: Promise.resolve(null),
clients.commerce.session(params.toString()).catch(() => null),
])
const profile = sessionData?.namespaces.profile ?? null
const store = sessionData?.namespaces.store ?? null
- const authentication = sessionData?.namespaces.authentication ?? null
const region = regionData?.[0]
// Set seller only if it's inside a region
const seller = region?.sellers.find((seller) => channel.seller === seller.id)
@@ -56,16 +55,13 @@ export const validateSession = async (
seller: seller?.id,
hasOnlyDefaultSalesChannel: !store?.channel?.value
}),
- b2b: {
- customerId: authentication?.customerId?.value ?? ''
- },
person: profile?.id
? {
- id: profile.id?.value ?? '',
- email: profile.email?.value ?? '',
- givenName: profile.firstName?.value ?? '',
- familyName: profile.lastName?.value ?? '',
- }
+ id: profile.id?.value ?? '',
+ email: profile.email?.value ?? '',
+ givenName: profile.firstName?.value ?? '',
+ familyName: profile.lastName?.value ?? '',
+ }
: null,
}
diff --git a/packages/api/src/typeDefs/session.graphql b/packages/api/src/typeDefs/session.graphql
index dfb2a12e75..5f8ab3cf76 100644
--- a/packages/api/src/typeDefs/session.graphql
+++ b/packages/api/src/typeDefs/session.graphql
@@ -149,18 +149,6 @@ type StoreSession {
Session input person.
"""
person: StorePerson
- """
- B2B Information.
- """
- b2b: StoreB2B
-}
-
-type StoreB2B {
- customerId: String!
-}
-
-input IStoreB2B {
- customerId: String!
}
"""
@@ -203,8 +191,4 @@ input IStoreSession {
Session input person.
"""
person: IStorePerson
- """
- Session input b2b.
- """
- b2b: IStoreB2B
}
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 79b71bdad0..7364cd0d25 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -52,7 +52,7 @@ const documents = {
types.ClientSearchSuggestionsQueryDocument,
'\n query ClientTopSearchSuggestionsQuery(\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]\n ) {\n ...ClientTopSearchSuggestions\n search(first: 5, term: $term, selectedFacets: $selectedFacets) {\n suggestions {\n terms {\n value\n }\n }\n }\n }\n':
types.ClientTopSearchSuggestionsQueryDocument,
- '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n b2b {\n customerId\n }\n }\n }\n':
+ '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n }\n }\n':
types.ValidateSessionDocument,
'\n query ClientShippingSimulationQuery(\n $postalCode: String!\n $country: String!\n $items: [IShippingItem!]!\n ) {\n ...ClientShippingSimulation\n shipping(items: $items, postalCode: $postalCode, country: $country) {\n logisticsInfo {\n slas {\n carrier\n price\n availableDeliveryWindows {\n startDateUtc\n endDateUtc\n price\n listPrice\n }\n shippingEstimate\n localizedEstimates\n }\n }\n address {\n city\n neighborhood\n state\n }\n }\n }\n':
types.ClientShippingSimulationQueryDocument,
@@ -182,7 +182,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n b2b {\n customerId\n }\n }\n }\n'
+ source: '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n }\n }\n'
): typeof import('./graphql').ValidateSessionDocument
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index 58c11c1165..b3d289130b 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -167,10 +167,6 @@ export type IShippingItem = {
seller: Scalars['String']['input']
}
-export type IStoreB2B = {
- customerId: Scalars['String']['input']
-}
-
/** Shopping cart input. */
export type IStoreCart = {
/** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
@@ -293,8 +289,6 @@ export type IStoreSelectedFacet = {
export type IStoreSession = {
/** Session input address type. */
addressType: InputMaybe
- /** Session input b2b. */
- b2b: InputMaybe
/** Session input channel. */
channel: InputMaybe
/** Session input country. */
@@ -641,10 +635,6 @@ export type StoreAuthor = {
name: Scalars['String']['output']
}
-export type StoreB2B = {
- customerId: Scalars['String']['output']
-}
-
/** Brand of a given product. */
export type StoreBrand = {
/** Brand name. */
@@ -1050,8 +1040,6 @@ export type StoreSeo = {
export type StoreSession = {
/** Session address type. */
addressType: Maybe
- /** B2B Information. */
- b2b: Maybe
/** Session channel. */
channel: Maybe
/** Session country. */
@@ -1613,7 +1601,6 @@ export type ValidateSessionMutation = {
givenName: string
familyName: string
} | null
- b2b: { customerId: string } | null
} | null
}
@@ -2109,7 +2096,7 @@ export const ClientTopSearchSuggestionsQueryDocument = {
export const ValidateSessionDocument = {
__meta__: {
operationName: 'ValidateSession',
- operationHash: '1e69c734ed31bd9e763a34fe9660f5bbad3fd143',
+ operationHash: '5696202828f9275216a445e316ebf516f168c506',
},
} as unknown as TypedDocumentString<
ValidateSessionMutation,
diff --git a/packages/core/faststore.config.default.js b/packages/core/faststore.config.default.js
index 35f310172f..f845bf686e 100644
--- a/packages/core/faststore.config.default.js
+++ b/packages/core/faststore.config.default.js
@@ -36,7 +36,6 @@ module.exports = {
addressType: null,
postalCode: null,
geoCoordinates: null,
- b2b: null,
person: null,
},
diff --git a/packages/core/src/sdk/session/index.ts b/packages/core/src/sdk/session/index.ts
index 9aa7606bf7..aa5c45153e 100644
--- a/packages/core/src/sdk/session/index.ts
+++ b/packages/core/src/sdk/session/index.ts
@@ -42,9 +42,6 @@ export const mutation = gql(`
givenName
familyName
}
- b2b {
- customerId
- }
}
}
`)
diff --git a/packages/sdk/src/session/index.ts b/packages/sdk/src/session/index.ts
index 572b3f2959..97c2330dcf 100644
--- a/packages/sdk/src/session/index.ts
+++ b/packages/sdk/src/session/index.ts
@@ -28,10 +28,6 @@ export interface Person {
familyName: string
}
-export interface B2bInfo {
- customerId: string
-}
-
export interface Session {
locale: string // en-US
currency: Currency
@@ -42,7 +38,6 @@ export interface Session {
postalCode: string | null
geoCoordinates: GeoCoordinates | null
person: Person | null
- b2b: B2bInfo | null
}
export const createSessionStore = (
diff --git a/packages/sdk/test/session/index.test.tsx b/packages/sdk/test/session/index.test.tsx
index 7dac858acd..ce2bfeab52 100644
--- a/packages/sdk/test/session/index.test.tsx
+++ b/packages/sdk/test/session/index.test.tsx
@@ -16,7 +16,6 @@ const initialSession = {
postalCode: null,
geoCoordinates: null,
person: null,
- b2b: null,
}
test('Session Provider: Set initial session values', async () => {
From 300edadb11511cf916d3770fb6f59194b3b38653 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 16 Sep 2024 17:15:22 +0000
Subject: [PATCH 044/154] [no ci] Release: 3.0.108
---
apps/site/package.json | 6 +++---
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 6 +++---
packages/sdk/package.json | 2 +-
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 70009e92a2..063a7b974f 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.107",
+ "version": "3.0.108",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,8 +10,8 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.107",
- "@faststore/sdk": "^3.0.107",
+ "@faststore/api": "^3.0.108",
+ "@faststore/sdk": "^3.0.108",
"@faststore/ui": "^3.0.103",
"next": "13.0.7",
"nextra": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index 0ff469a134..62820b2895 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.107",
+ "version": "3.0.108",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 9a082acb70..fcd2f8811e 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.107",
+ "version": "3.0.108",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index c6218127a3..3017396526 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.107 linux-x64 node-v18.20.4
+@faststore/cli/3.0.108 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.107/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 24839350bb..dffe4b633b 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.107",
+ "version": "3.0.108",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.107",
+ "@faststore/core": "^3.0.108",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 895c478455..d6912dfa39 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.107",
+ "version": "3.0.108",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,11 +43,11 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.107",
+ "@faststore/api": "^3.0.108",
"@faststore/components": "^3.0.103",
"@faststore/graphql-utils": "^3.0.97",
"@faststore/lighthouse": "^3.0.97",
- "@faststore/sdk": "^3.0.107",
+ "@faststore/sdk": "^3.0.108",
"@faststore/ui": "^3.0.103",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 07ccfde249..b7ac34d48c 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.107",
+ "version": "3.0.108",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
From 59ca31031fc6ccaca5a9aba3a3dea2c792c13f04 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 23 Sep 2024 17:28:55 -0300
Subject: [PATCH 045/154] Chore(deps): Bump dset from 3.1.2 to 3.1.4 (#2449)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [dset](https://github.com/lukeed/dset) from 3.1.2 to 3.1.4.
Release notes
Sourced from dset's
releases .
v3.1.3
Patches
Add "types"
export conditions for TypeScript
"nodenext"
/"node16"
resolution: #40
Thank you @Akkuma
Full Changelog : https://github.com/lukeed/dset/compare/v3.1.2...v3.1.3
Commits
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dset&package-manager=npm_and_yarn&previous-version=3.1.2&new-version=3.1.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/vtex/faststore/network/alerts).
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
yarn.lock | 37 +++++++++++++++++++++++++++++++------
1 file changed, 31 insertions(+), 6 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index fa61ffc523..ae7b329513 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7564,9 +7564,9 @@ draftjs-to-html@^0.9.1:
integrity sha512-fFstE6+IayaVFBEvaFt/wN8vdj8FsTRzij7dy7LI9QIwf5LgfHFi9zSpvCg+feJ2tbYVqHxUkjcibwpsTpgFVQ==
dset@^3.1.2:
- version "3.1.2"
- resolved "https://registry.npmjs.org/dset/-/dset-3.1.2.tgz"
- integrity sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/dset/-/dset-3.1.4.tgz#f8eaf5f023f068a036d08cd07dc9ffb7d0065248"
+ integrity sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==
duplexer3@^0.1.4:
version "0.1.5"
@@ -16662,7 +16662,7 @@ string-similarity@^4.0.1:
resolved "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz"
integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==
-"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+"string-width-cjs@npm:string-width@^4.2.0":
version "4.2.3"
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -16680,6 +16680,15 @@ string-width@^1.0.1:
is-fullwidth-code-point "^1.0.0"
strip-ansi "^3.0.0"
+"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"
@@ -16774,7 +16783,7 @@ stringify-entities@^4.0.0:
character-entities-html4 "^2.0.0"
character-entities-legacy "^3.0.0"
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
version "6.0.1"
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -16802,6 +16811,13 @@ strip-ansi@^5.1.0:
dependencies:
ansi-regex "^4.1.0"
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
strip-ansi@^7.0.1, strip-ansi@^7.1.0:
version "7.1.0"
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
@@ -18488,7 +18504,7 @@ wordwrap@^1.0.0:
resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
version "7.0.0"
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -18522,6 +18538,15 @@ wrap-ansi@^6.0.1, wrap-ansi@^6.2.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
wrap-ansi@^8.1.0:
version "8.1.0"
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz"
From 1bc6245d3142c4ef2e950758d5b21759e87e7540 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Mon, 23 Sep 2024 18:13:07 -0300
Subject: [PATCH 046/154] docs: update version on readme (#2445)
## What's the purpose of this pull request?
## How it works?
## How to test it?
### Starters Deploy Preview
## References
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 6bf5bca3fb..f914f568b9 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
- FastStore v2
+ FastStore v3
From cfa2b7693376839605f8721356be2c589e480003 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 23 Sep 2024 21:18:47 +0000
Subject: [PATCH 047/154] [no ci] Release: 3.0.109
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 16 ++++++++--------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 46 insertions(+), 46 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 063a7b974f..e5e9f5d92d 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.108",
+ "version": "3.0.109",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.108",
- "@faststore/sdk": "^3.0.108",
- "@faststore/ui": "^3.0.103",
+ "@faststore/api": "^3.0.109",
+ "@faststore/sdk": "^3.0.109",
+ "@faststore/ui": "^3.0.109",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 62820b2895..627622bd94 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.108",
+ "version": "3.0.109",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index fcd2f8811e..5e9f06ebc1 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.108",
+ "version": "3.0.109",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^2.6.0",
- "@faststore/eslint-config": "^3.0.97",
- "@faststore/shared": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
+ "@faststore/shared": "^3.0.109",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 3017396526..7dbd5617fe 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.108 linux-x64 node-v18.20.4
+@faststore/cli/3.0.109 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.108/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index dffe4b633b..87dd113869 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.108",
+ "version": "3.0.109",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.108",
+ "@faststore/core": "^3.0.109",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -31,8 +31,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.97",
- "@faststore/shared": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
+ "@faststore/shared": "^3.0.109",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 26dc329781..3d9e6d59ac 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.103",
+ "version": "3.0.109",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.97",
- "@faststore/shared": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
+ "@faststore/shared": "^3.0.109",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
"@types/jest-axe": "^3.5.9",
diff --git a/packages/core/package.json b/packages/core/package.json
index d6912dfa39..74cb87b6c6 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.108",
+ "version": "3.0.109",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.108",
- "@faststore/components": "^3.0.103",
- "@faststore/graphql-utils": "^3.0.97",
- "@faststore/lighthouse": "^3.0.97",
- "@faststore/sdk": "^3.0.108",
- "@faststore/ui": "^3.0.103",
+ "@faststore/api": "^3.0.109",
+ "@faststore/components": "^3.0.109",
+ "@faststore/graphql-utils": "^3.0.109",
+ "@faststore/lighthouse": "^3.0.109",
+ "@faststore/sdk": "^3.0.109",
+ "@faststore/ui": "^3.0.109",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -89,7 +89,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index 8ba46a6c3f..fe33d9be66 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.97",
+ "version": "3.0.109",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index ef5e05cb40..242bb0078d 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.97",
+ "version": "3.0.109",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.97",
- "@faststore/shared": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
+ "@faststore/shared": "^3.0.109",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 265bf2db75..f74a68e1c8 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.97",
+ "version": "3.0.109",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.97",
- "@faststore/shared": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
+ "@faststore/shared": "^3.0.109",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index b7ac34d48c..97aff97667 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.108",
+ "version": "3.0.109",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.97",
+ "@faststore/shared": "^3.0.109",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 2da2bebf92..3462d5df8f 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.97",
+ "version": "3.0.109",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 6d15cb1b6c..a8e8c06708 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.103",
+ "version": "3.0.109",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.103",
+ "@faststore/components": "^3.0.109",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.97",
- "@faststore/shared": "^3.0.97",
+ "@faststore/eslint-config": "^3.0.109",
+ "@faststore/shared": "^3.0.109",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From 33aa4a3a34f137a4dd35acef9b8ff5f9408f7a68 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 23 Sep 2024 18:24:40 -0300
Subject: [PATCH 048/154] Chore(deps): Bump @grpc/grpc-js from 1.8.14 to 1.11.2
(#2450)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [@grpc/grpc-js](https://github.com/grpc/grpc-node) from 1.8.14 to
1.11.2.
Release notes
Sourced from @grpc/grpc-js
's
releases .
@grpc/grpc-js
1.11.2
Fix client crash on receiving a custom error code (#2801
contributed by @hastom
)
Report connection errors more consistently (#2808 )
Avoid computing the channel constructor trace log when that tracer
is not enabled (#2817
contributed by @ygalbel
)
@grpc/grpc-js
1.11.1
Revert a change that used APIs that were not available in early
minor versions of Node 14 (#2799
contributed by @xqin
)
@grpc/grpc-js-xds
1.11.0
Add xDS Servers (#2783 )
Note: this is primarily a foundation for future features. It doesn't
actually do much right now.
Add support for dualstack socket support in xDS clients (#2665 )
@grpc/grpc-js
1.11.0
Changelog
Add Server connection injection API as described in gRFC
L114 (#2675 )
Implement support for an alternate DNS resolver that supports custom
authorities (#2776
contributed by @gkampitakis
)
Add a channel option to configure retry attempt limits (#2795 )
Add a getHost
method to server call objects (#2783 ,
#2793 )
Fix typos and omissions in service config validation errors (#2782
contributed by @matthewbinshtok
)
Experimental API changes
Added:
splitHostPort
HostPort
createServerCredentialsWithInterceptors
@grpc/grpc-js
1.10.11
Fix a bug that caused clients to reconnect unnecessarily while no
requests are pending. (#2784 )
Fix a bug that caused clients to fail to re-establish existing
connections while waiting for DNS results (#2784 )
Fix a bug that caused servers to sometimes not close idle
connections depending on timing (#2790 )
Fix a bug that caused calls to be pending indefinitely while unable
to start after a channel is closed (#2791 )
@grpc/grpc-js
1.10.10
Various improvements to handling of keepalive timers (#2760
by @davidfiala
)
Fix a bug causing unary response client requests to hang when
unexpectedly receiving multiple messages (#2772 )
Fix a bug causing some requests to fail when making requests through
a local proxy (#2746
contributed by @mjameswh
,
backported in #2777 )
Fix handling of URL-encoded user credentials in proxy configuration
(#2761
contributed by @brendan-myers
,
backported in #2777 )
Fix missing client-side handling of the
grpc.max_send_message_length
channel option (#2779 )
@grpc/grpc-js
1.10.9
Avoid buffering significantly more than
grpc.max_receive_message_size
per received message.
@grpc/grpc-js
1.10.8
Fix a bug that caused channels with unix:
targets to
not reconnect after the channel goes idle (#2750 )
@grpc/grpc-js
1.10.7
... (truncated)
Commits
0c5ab98
Merge pull request #2803
from murgatroid99/grpc-js_1.11.2
bb4496b
Merge pull request #2817
from ygalbel/tracer-slow
90e472e
made the call to trace to be called only when tracer is enabled
c63bdae
Merge pull request #2808
from murgatroid99/grpc-js_transport_error_reporting
d409311
grpc-js: Report session error events instead of waiting for close
b763f98
grpc-js: Bump to 1.11.2
f5ea6ce
Merge pull request #2801
from hastom/master
33073d0
Fix test case
15d422d
Fix client crash on custom error code
43032b1
Merge pull request #2800
from murgatroid99/grpc-js_1.11.1
Additional commits viewable in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@grpc/grpc-js&package-manager=npm_and_yarn&previous-version=1.8.14&new-version=1.11.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/vtex/faststore/network/alerts).
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
yarn.lock | 60 +++++++++++++++++++++++++++++++++----------------------
1 file changed, 36 insertions(+), 24 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index ae7b329513..59ef8f77a0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1931,22 +1931,21 @@
integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==
"@grpc/grpc-js@^1.7.1":
- version "1.8.14"
- resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.14.tgz"
- integrity sha512-w84maJ6CKl5aApCMzFll0hxtFNT6or9WwMslobKaqWUEf1K+zhlL43bSQhFreyYWIWR+Z0xnVFC1KtLm4ZpM/A==
+ version "1.11.2"
+ resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.11.2.tgz#541a00303e533b5efe9d84ed61b84cdf9dd93ee7"
+ integrity sha512-DWp92gDD7/Qkj7r8kus6/HCINeo3yPZWZ3paKgDgsbKbSpoxKg1yvN8xe2Q8uE3zOsPe3bX8FQX2+XValq2yTw==
dependencies:
- "@grpc/proto-loader" "^0.7.0"
- "@types/node" ">=12.12.47"
+ "@grpc/proto-loader" "^0.7.13"
+ "@js-sdsl/ordered-map" "^4.4.2"
-"@grpc/proto-loader@^0.7.0":
- version "0.7.7"
- resolved "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.7.tgz"
- integrity sha512-1TIeXOi8TuSCQprPItwoMymZXxWT0CPxUhkrkeCUH+D8U7QDwQ6b7SUz2MaLuWM2llT+J/TVFLmQI5KtML3BhQ==
+"@grpc/proto-loader@^0.7.13":
+ version "0.7.13"
+ resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.13.tgz#f6a44b2b7c9f7b609f5748c6eac2d420e37670cf"
+ integrity sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==
dependencies:
- "@types/long" "^4.0.1"
lodash.camelcase "^4.3.0"
- long "^4.0.0"
- protobufjs "^7.0.0"
+ long "^5.0.0"
+ protobufjs "^7.2.5"
yargs "^17.7.2"
"@headlessui/react@^1.7.10":
@@ -2376,6 +2375,11 @@
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
+"@js-sdsl/ordered-map@^4.4.2":
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz#9299f82874bab9e4c7f9c48d865becbfe8d6907c"
+ integrity sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==
+
"@kamilkisiela/fast-url-parser@^1.1.4":
version "1.1.4"
resolved "https://registry.npmjs.org/@kamilkisiela/fast-url-parser/-/fast-url-parser-1.1.4.tgz"
@@ -4233,11 +4237,6 @@
dependencies:
"@types/node" "*"
-"@types/long@^4.0.1":
- version "4.0.2"
- resolved "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz"
- integrity sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==
-
"@types/mdast@^3.0.0":
version "3.0.10"
resolved "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz"
@@ -4282,7 +4281,7 @@
resolved "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz"
integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==
-"@types/node@>=12.12.47", "@types/node@>=13.7.0":
+"@types/node@>=13.7.0":
version "20.2.3"
resolved "https://registry.npmjs.org/@types/node/-/node-20.2.3.tgz"
integrity sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw==
@@ -12175,11 +12174,6 @@ log-update@^6.0.0:
strip-ansi "^7.1.0"
wrap-ansi "^9.0.0"
-long@^4.0.0:
- version "4.0.0"
- resolved "https://registry.npmjs.org/long/-/long-4.0.0.tgz"
- integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
-
long@^5.0.0:
version "5.2.3"
resolved "https://registry.npmjs.org/long/-/long-5.2.3.tgz"
@@ -15130,7 +15124,7 @@ property-information@^6.0.0:
resolved "https://registry.npmjs.org/property-information/-/property-information-6.2.0.tgz"
integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==
-protobufjs@^7.0.0, protobufjs@^7.2.2:
+protobufjs@^7.2.2:
version "7.2.5"
resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.5.tgz"
integrity sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==
@@ -15148,6 +15142,24 @@ protobufjs@^7.0.0, protobufjs@^7.2.2:
"@types/node" ">=13.7.0"
long "^5.0.0"
+protobufjs@^7.2.5:
+ version "7.4.0"
+ resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.4.0.tgz#7efe324ce9b3b61c82aae5de810d287bc08a248a"
+ integrity sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==
+ dependencies:
+ "@protobufjs/aspromise" "^1.1.2"
+ "@protobufjs/base64" "^1.1.2"
+ "@protobufjs/codegen" "^2.0.4"
+ "@protobufjs/eventemitter" "^1.1.0"
+ "@protobufjs/fetch" "^1.1.0"
+ "@protobufjs/float" "^1.0.2"
+ "@protobufjs/inquire" "^1.1.0"
+ "@protobufjs/path" "^1.1.2"
+ "@protobufjs/pool" "^1.1.0"
+ "@protobufjs/utf8" "^1.1.0"
+ "@types/node" ">=13.7.0"
+ long "^5.0.0"
+
protocols@^2.0.0, protocols@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz"
From 8697c6c622efaf54238ea6273d6a771232806ee5 Mon Sep 17 00:00:00 2001
From: Pedro Soares <32311264+pedromtec@users.noreply.github.com>
Date: Tue, 24 Sep 2024 10:19:36 -0300
Subject: [PATCH 049/154] feat: add sendPageViewEvent to useEffect dependencies
(#2467)
## What's the purpose of this pull request?
Add `sendPageViewEvent` to `useEffect` dependencies to fix eslint
warning
---
packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts b/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
index 12dd85b6ec..8aa7f397ed 100644
--- a/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
@@ -23,7 +23,7 @@ export const usePageViewEvent = () => {
return () => {
router.events.off('routeChangeComplete', sendPageViewEvent)
}
- }, [router])
+ }, [router, sendPageViewEvent])
return { sendPageViewEvent }
}
From c2922d7fe5a93f027d95e4566481559025df2133 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 24 Sep 2024 13:24:53 +0000
Subject: [PATCH 050/154] [no ci] Release: 3.0.110
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 16 ++++++++--------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 46 insertions(+), 46 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index e5e9f5d92d..1cca6b0eb9 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.109",
+ "version": "3.0.110",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.109",
- "@faststore/sdk": "^3.0.109",
- "@faststore/ui": "^3.0.109",
+ "@faststore/api": "^3.0.110",
+ "@faststore/sdk": "^3.0.110",
+ "@faststore/ui": "^3.0.110",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 627622bd94..1b6e746b6e 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.109",
+ "version": "3.0.110",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 5e9f06ebc1..6c2c3e76d3 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.109",
+ "version": "3.0.110",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^2.6.0",
- "@faststore/eslint-config": "^3.0.109",
- "@faststore/shared": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
+ "@faststore/shared": "^3.0.110",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 7dbd5617fe..9ece430a81 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.109 linux-x64 node-v18.20.4
+@faststore/cli/3.0.110 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.109/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 87dd113869..b499ac1340 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.109",
+ "version": "3.0.110",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.109",
+ "@faststore/core": "^3.0.110",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -31,8 +31,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.109",
- "@faststore/shared": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
+ "@faststore/shared": "^3.0.110",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 3d9e6d59ac..98a7393ed4 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.109",
+ "version": "3.0.110",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.109",
- "@faststore/shared": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
+ "@faststore/shared": "^3.0.110",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
"@types/jest-axe": "^3.5.9",
diff --git a/packages/core/package.json b/packages/core/package.json
index 74cb87b6c6..912a974acf 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.109",
+ "version": "3.0.110",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.109",
- "@faststore/components": "^3.0.109",
- "@faststore/graphql-utils": "^3.0.109",
- "@faststore/lighthouse": "^3.0.109",
- "@faststore/sdk": "^3.0.109",
- "@faststore/ui": "^3.0.109",
+ "@faststore/api": "^3.0.110",
+ "@faststore/components": "^3.0.110",
+ "@faststore/graphql-utils": "^3.0.110",
+ "@faststore/lighthouse": "^3.0.110",
+ "@faststore/sdk": "^3.0.110",
+ "@faststore/ui": "^3.0.110",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -89,7 +89,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index fe33d9be66..eab0871968 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.109",
+ "version": "3.0.110",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index 242bb0078d..f05d23b6b5 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.109",
+ "version": "3.0.110",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.109",
- "@faststore/shared": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
+ "@faststore/shared": "^3.0.110",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index f74a68e1c8..846acc4828 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.109",
+ "version": "3.0.110",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.109",
- "@faststore/shared": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
+ "@faststore/shared": "^3.0.110",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 97aff97667..0794130453 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.109",
+ "version": "3.0.110",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.109",
+ "@faststore/shared": "^3.0.110",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 3462d5df8f..44d98c527c 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.109",
+ "version": "3.0.110",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index a8e8c06708..33e2a65f64 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.109",
+ "version": "3.0.110",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.109",
+ "@faststore/components": "^3.0.110",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.109",
- "@faststore/shared": "^3.0.109",
+ "@faststore/eslint-config": "^3.0.110",
+ "@faststore/shared": "^3.0.110",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From 8a94f6bd4093e31365a730005264537aed049355 Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 24 Sep 2024 18:29:16 -0300
Subject: [PATCH 051/154] Feat: adds new `deviceSizes` and adjust `Hero` Image
(#2470)
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to add a new
`deviceSizes` with a size of `412`. This is the size used for `Moto G
Super`, the mobile device used in the PageSpees Insight (PSI).
It also changes the `Hero` Image size to fit a better config related to
the LCP metric.
---
packages/core/next.config.js | 2 +-
packages/core/src/components/sections/Hero/Hero.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/core/next.config.js b/packages/core/next.config.js
index fa041b2953..59e99b265a 100644
--- a/packages/core/next.config.js
+++ b/packages/core/next.config.js
@@ -11,7 +11,7 @@ const nextConfig = {
swcMinify: true,
images: {
domains: [`${storeConfig.api.storeId}.vtexassets.com`],
- deviceSizes: [360, 540, 768, 1280, 1440],
+ deviceSizes: [360, 412, 540, 768, 1280, 1440],
imageSizes: [34, 68, 154, 320],
},
i18n: {
diff --git a/packages/core/src/components/sections/Hero/Hero.tsx b/packages/core/src/components/sections/Hero/Hero.tsx
index c530491e23..c98c26116d 100644
--- a/packages/core/src/components/sections/Hero/Hero.tsx
+++ b/packages/core/src/components/sections/Hero/Hero.tsx
@@ -59,7 +59,7 @@ const Hero = ({
alt={image.alt}
width={360}
height={240}
- sizes="(max-width: 360px) 50vw, (max-width: 768px) 90vw, 50vw"
+ sizes="(max-width: 412px) 40vw, (max-width: 768px) 90vw, 50vw"
/>
Date: Tue, 24 Sep 2024 21:34:25 +0000
Subject: [PATCH 052/154] [no ci] Release: 3.0.111
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 1b6e746b6e..75103c2c99 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.110",
+ "version": "3.0.111",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 9ece430a81..18637eb307 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.110 linux-x64 node-v18.20.4
+@faststore/cli/3.0.111 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.110/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index b499ac1340..2b28d86889 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.110",
+ "version": "3.0.111",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.110",
+ "@faststore/core": "^3.0.111",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 912a974acf..c8ed6f729c 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.110",
+ "version": "3.0.111",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 7a787be9da8d5e4a827a595c7b07ea9b0edc060d Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 24 Sep 2024 18:52:12 -0300
Subject: [PATCH 053/154] feat: removes lazy without suspense from global
sections (#2468)
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to remove lazy
components/sections without a `Suspense` associated.
PSI snapshot
## starter PR
- https://github.com/vtex-sites/starter.store/pull/545
---
packages/core/src/components/cms/GlobalSections.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/core/src/components/cms/GlobalSections.tsx b/packages/core/src/components/cms/GlobalSections.tsx
index 050bde140f..499b8afa84 100644
--- a/packages/core/src/components/cms/GlobalSections.tsx
+++ b/packages/core/src/components/cms/GlobalSections.tsx
@@ -1,7 +1,7 @@
import { Locator, Section } from '@vtex/client-cms'
import storeConfig from 'faststore.config'
import type { ComponentType } from 'react'
-import { PropsWithChildren, lazy } from 'react'
+import { PropsWithChildren } from 'react'
import CUSTOM_COMPONENTS from 'src/customizations/src/components'
import { PageContentType, getPage } from 'src/server/cms'
@@ -13,8 +13,8 @@ import Footer from 'src/components/sections/Footer'
import { OverriddenDefaultNavbar as Navbar } from 'src/components/sections/Navbar/OverriddenDefaultNavbar'
import { OverriddenDefaultRegionBar as RegionBar } from 'src/components/sections/RegionBar/OverriddenDefaultRegionBar'
-const RegionModal = lazy(() => import('src/components/region/RegionModal'))
-const CartSidebar = lazy(() => import('src/components/cart/CartSidebar'))
+import CartSidebar from 'src/components/cart/CartSidebar'
+import RegionModal from 'src/components/region/RegionModal'
export const GLOBAL_SECTIONS_CONTENT_TYPE = 'globalSections'
From e2326e5b2410854590d3153af4011080e034ef44 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 24 Sep 2024 21:57:44 +0000
Subject: [PATCH 054/154] [no ci] Release: 3.0.112
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 75103c2c99..d42b271c60 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.111",
+ "version": "3.0.112",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 18637eb307..213ddd9725 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.111 linux-x64 node-v18.20.4
+@faststore/cli/3.0.112 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.111/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 2b28d86889..58edf5efc5 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.111",
+ "version": "3.0.112",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.111",
+ "@faststore/core": "^3.0.112",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index c8ed6f729c..40f78afe63 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.111",
+ "version": "3.0.112",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From a09f274de317b686b4956bf84e25f26e5dafa50d Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 24 Sep 2024 19:10:17 -0300
Subject: [PATCH 055/154] feat: removes nextjs-progressbar and chalk (#2469)
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to remove
`nextjs-progressbar` and `chalk` libs.
### Starter PR
- https://github.com/vtex-sites/starter.store/pull/546
PSI snapshot
---
packages/core/package.json | 2 --
.../src/components/cms/RenderSections.tsx | 7 ++-----
packages/core/src/pages/_app.tsx | 7 -------
yarn.lock | 20 +------------------
4 files changed, 3 insertions(+), 33 deletions(-)
diff --git a/packages/core/package.json b/packages/core/package.json
index 40f78afe63..9936042d18 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -63,7 +63,6 @@
"@vtex/client-cms": "^0.2.12",
"@vtex/prettier-config": "1.0.0",
"autoprefixer": "^10.4.0",
- "chalk": "^5.2.0",
"css-loader": "^6.7.1",
"deepmerge": "^4.3.1",
"draftjs-to-html": "^0.9.1",
@@ -72,7 +71,6 @@
"include-media": "^1.4.10",
"next": "^13.5.6",
"next-seo": "^6.4.0",
- "nextjs-progressbar": "^0.0.14",
"postcss": "^8.4.4",
"prettier": "^2.2.0",
"react": "^18.2.0",
diff --git a/packages/core/src/components/cms/RenderSections.tsx b/packages/core/src/components/cms/RenderSections.tsx
index f59c1e9cb9..fdd7d9ef2d 100644
--- a/packages/core/src/components/cms/RenderSections.tsx
+++ b/packages/core/src/components/cms/RenderSections.tsx
@@ -1,4 +1,3 @@
-import chalk from 'chalk'
import { ComponentType, PropsWithChildren, memo, useMemo } from 'react'
import SectionBoundary from './SectionBoundary'
@@ -30,10 +29,8 @@ const RenderSectionsBase = ({ sections = [], components }: Props) => {
if (!Component) {
// TODO: add a documentation link to help to do this
- console.info(
- `${chalk.yellow(
- 'warn'
- )} - ${name} not found. Add a new component for this section or remove it from the CMS`
+ console.warn(
+ `${name} not found. Add a new component for this section or remove it from the CMS`
)
return null
diff --git a/packages/core/src/pages/_app.tsx b/packages/core/src/pages/_app.tsx
index 97fef596f3..44aca4b429 100644
--- a/packages/core/src/pages/_app.tsx
+++ b/packages/core/src/pages/_app.tsx
@@ -1,6 +1,5 @@
import { UIProvider } from '@faststore/ui'
import type { AppProps } from 'next/app'
-import NextNProgress from 'nextjs-progressbar'
import Layout from 'src/Layout'
import AnalyticsHandler from 'src/sdk/analytics'
import ErrorBoundary from 'src/sdk/error/ErrorBoundary'
@@ -15,12 +14,6 @@ import { DefaultSeo } from 'next-seo'
function App({ Component, pageProps }: AppProps) {
return (
-
-
diff --git a/yarn.lock b/yarn.lock
index 59ef8f77a0..0fecf27d82 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5768,11 +5768,6 @@ chalk@^3.0.0:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
-chalk@^5.2.0:
- version "5.2.0"
- resolved "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz"
- integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
-
change-case-all@1.0.14:
version "1.0.14"
resolved "https://registry.npmjs.org/change-case-all/-/change-case-all-1.0.14.tgz"
@@ -13591,14 +13586,6 @@ next@^13.5.6:
"@next/swc-win32-ia32-msvc" "13.5.6"
"@next/swc-win32-x64-msvc" "13.5.6"
-nextjs-progressbar@^0.0.14:
- version "0.0.14"
- resolved "https://registry.npmjs.org/nextjs-progressbar/-/nextjs-progressbar-0.0.14.tgz"
- integrity sha512-AXYXHDN6M52AwFnGqH/vlwyo0gbC9zM7QS/4ryOTI0RUqfze5FJl8uSrxKJMzK6hGFdDeQXcZoWsLGXeCVtTwg==
- dependencies:
- nprogress "^0.2.0"
- prop-types "^15.7.2"
-
nextra-theme-docs@^2.8.0:
version "2.8.0"
resolved "https://registry.npmjs.org/nextra-theme-docs/-/nextra-theme-docs-2.8.0.tgz"
@@ -14074,11 +14061,6 @@ npmlog@^6.0.0, npmlog@^6.0.2:
gauge "^4.0.3"
set-blocking "^2.0.0"
-nprogress@^0.2.0:
- version "0.2.0"
- resolved "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz"
- integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==
-
nullthrows@^1.1.1:
version "1.1.1"
resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz"
@@ -15110,7 +15092,7 @@ promzard@^1.0.0:
dependencies:
read "^3.0.1"
-prop-types@^15.7.2, prop-types@^15.8.1:
+prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
From 47915eac24beec2aea06c244ef931500bac2f8de Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 24 Sep 2024 22:16:07 +0000
Subject: [PATCH 056/154] [no ci] Release: 3.0.113
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index d42b271c60..892236b5af 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.112",
+ "version": "3.0.113",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 213ddd9725..ef782df16e 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.112 linux-x64 node-v18.20.4
+@faststore/cli/3.0.113 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.112/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 58edf5efc5..042c3a2949 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.112",
+ "version": "3.0.113",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.112",
+ "@faststore/core": "^3.0.113",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 9936042d18..965089df1d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.112",
+ "version": "3.0.113",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 2a8eade90764815bb64229c9530a70f569000f3c Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 24 Sep 2024 19:46:08 -0300
Subject: [PATCH 057/154] Feat: `Promise.all` homepage and global Promises
(#2471)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to `Promise.all` the
homepage and global requests so that we can leverage parallelism during
requests instead of sequential requests.
PSI snapshot
## Starter PR
- https://github.com/vtex-sites/starter.store/pull/547
---------
Co-authored-by: Larícia Mota
---
.../src/components/cms/GlobalSections.tsx | 6 +--
packages/core/src/pages/index.tsx | 37 +++++++++----------
2 files changed, 21 insertions(+), 22 deletions(-)
diff --git a/packages/core/src/components/cms/GlobalSections.tsx b/packages/core/src/components/cms/GlobalSections.tsx
index 499b8afa84..155443aa23 100644
--- a/packages/core/src/components/cms/GlobalSections.tsx
+++ b/packages/core/src/components/cms/GlobalSections.tsx
@@ -56,7 +56,7 @@ export const getGlobalSectionsData = async (
const page = cmsData[GLOBAL_SECTIONS_CONTENT_TYPE][0]
if (page) {
- const pageData = await getPage({
+ const pageData = getPage({
contentType: GLOBAL_SECTIONS_CONTENT_TYPE,
documentId: page.documentId,
versionId: page.versionId,
@@ -66,11 +66,11 @@ export const getGlobalSectionsData = async (
}
}
- const { sections } = await getPage({
+ const pageData = getPage({
...(previewData?.contentType === GLOBAL_SECTIONS_CONTENT_TYPE &&
previewData),
contentType: GLOBAL_SECTIONS_CONTENT_TYPE,
})
- return { sections }
+ return pageData
}
diff --git a/packages/core/src/pages/index.tsx b/packages/core/src/pages/index.tsx
index 08e3f28831..7f0fb5e8f1 100644
--- a/packages/core/src/pages/index.tsx
+++ b/packages/core/src/pages/index.tsx
@@ -100,30 +100,29 @@ export const getStaticProps: GetStaticProps<
Record,
Locator
> = async ({ previewData }) => {
- const serverData = await getDynamicContent({ pageType: 'home' })
- const globalSections = await getGlobalSectionsData(previewData)
+ const globalSectionsPromise = getGlobalSectionsData(previewData)
+ const serverDataPromise = getDynamicContent({ pageType: 'home' })
+ let cmsPage = null
if (storeConfig.cms.data) {
const cmsData = JSON.parse(storeConfig.cms.data)
- const page = cmsData['home'][0]
-
- if (page) {
- const pageData = await getPage({
+ cmsPage = cmsData['home'][0]
+ }
+ const pagePromise = cmsPage
+ ? getPage({
contentType: 'home',
- documentId: page.documentId,
- versionId: page.versionId,
+ documentId: cmsPage.documentId,
+ versionId: cmsPage.versionId,
})
-
- return {
- props: { page: pageData, globalSections, serverData },
- }
- }
- }
-
- const page = await getPage({
- ...(previewData?.contentType === 'home' && previewData),
- contentType: 'home',
- })
+ : getPage({
+ ...(previewData?.contentType === 'home' && previewData),
+ contentType: 'home',
+ })
+ const [page, globalSections, serverData] = await Promise.all([
+ pagePromise,
+ globalSectionsPromise,
+ serverDataPromise,
+ ])
return {
props: { page, globalSections, serverData },
From 7948467a59991fc417358a4df3d8d3e330977dd9 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 24 Sep 2024 22:52:05 +0000
Subject: [PATCH 058/154] [no ci] Release: 3.0.114
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 892236b5af..59229a5716 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.113",
+ "version": "3.0.114",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index ef782df16e..72ce7899a4 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.113 linux-x64 node-v18.20.4
+@faststore/cli/3.0.114 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.113/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 042c3a2949..4958e4eeb0 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.113",
+ "version": "3.0.114",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.113",
+ "@faststore/core": "^3.0.114",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 965089df1d..fd03156f0f 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.113",
+ "version": "3.0.114",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 2d6d89e4f95fa7a6ea12ca6d873b186ca3d8f637 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Thu, 26 Sep 2024 14:34:25 -0300
Subject: [PATCH 059/154] Fix: Integration and enable back accessibility tests
(#2458)
## What's the purpose of this pull request?
- Updates pdp product link for tests and updates tests to adapt to new
product
The product we were testing is OutOfStock and does not have the expected
ID. We switched to another product and updated the other tests
accordingly."
- Puts back `cy.checkA11y` for home page, collection page and product
page. (a11y.test.js)
- Fix automatic accessibility issues & improves overall
## How it works?
This PR, should fix the failing tests below:
## How to test it?
1. You can test using this
[PR](https://github.com/vtex-sites/starter.store/pull/535), the
integration test all should be passing.
2. Run the core locally, then run `yarn test`. All the tests should
pass.
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/535
### References
https://dequeuniversity.com/rules/axe/4.10/region?application=AxeChrome
---
.../PaymentMethods/PaymentMethods.tsx | 12 ++++--
.../core/cypress/integration/a11y.test.js | 22 +++++++---
.../cypress/integration/analytics.test.js | 4 +-
packages/core/cypress/integration/seo.test.js | 9 ++--
packages/core/faststore.config.default.js | 4 +-
.../src/components/common/Footer/Footer.tsx | 8 +++-
.../components/common/Footer/FooterLinks.tsx | 2 +-
.../components/common/Footer/FooterSocial.tsx | 13 ++++--
.../sections/Incentives/Incentives.tsx | 8 ++--
.../components/ui/Incentives/Incentives.tsx | 16 +++++---
.../ProductDetails/ProductDetailsSettings.tsx | 3 +-
.../components/atoms/Incentive/Incentive.tsx | 6 +--
turbo.json | 41 +++++--------------
13 files changed, 84 insertions(+), 64 deletions(-)
diff --git a/packages/components/src/organisms/PaymentMethods/PaymentMethods.tsx b/packages/components/src/organisms/PaymentMethods/PaymentMethods.tsx
index 5f5977b631..8635c9bbdd 100644
--- a/packages/components/src/organisms/PaymentMethods/PaymentMethods.tsx
+++ b/packages/components/src/organisms/PaymentMethods/PaymentMethods.tsx
@@ -1,7 +1,7 @@
-import type { ReactNode, AriaAttributes } from 'react'
+import type { AriaAttributes, ReactNode } from 'react'
import React, { forwardRef } from 'react'
-import { List, SROnly, Icon } from '../../index'
+import { Icon, List, SROnly } from '../../index'
type Flag = {
icon: {
@@ -48,9 +48,15 @@ const PaymentMethods = forwardRef(
ref={ref}
data-fs-payment-methods
data-testid={testId}
+ aria-labelledby={title ? 'payment-methods-title' : 'Payment Methods'}
{...otherProps}
>
- {!!title && {title}
}
+ {/* TODO: We can consider removing and make title always required or add it via heading */}
+ {!!title && (
+
+ {title}
+
+ )}
{
cy.getById('product-link').should('exist')
cy.injectAxe()
- cy.checkA11y(null, disabledA11yRules)
+
+ cy.checkA11y(null, {
+ rules: {
+ 'aria-allowed-role': { enabled: true },
+ },
+ })
})
it('checks a11y for product page', () => {
@@ -30,10 +34,14 @@ describe('Accessibility tests', () => {
cy.waitForHydration()
// Wait for product to be available and page to be interactive
- cy.getById('buy-button').should('exist')
+ cy.get('[data-testid="buy-button"]').should('exist')
cy.injectAxe()
- cy.checkA11y(null, disabledA11yRules)
+ cy.checkA11y(null, {
+ rules: {
+ 'aria-allowed-role': { enabled: true },
+ },
+ })
})
it('checks a11y for home page', () => {
@@ -41,6 +49,10 @@ describe('Accessibility tests', () => {
cy.waitForHydration()
cy.injectAxe()
- cy.checkA11y(null, disabledA11yRules)
+ cy.checkA11y(null, {
+ rules: {
+ 'aria-allowed-role': { enabled: true },
+ },
+ })
})
})
diff --git a/packages/core/cypress/integration/analytics.test.js b/packages/core/cypress/integration/analytics.test.js
index 6d32154660..d1e6d60adc 100644
--- a/packages/core/cypress/integration/analytics.test.js
+++ b/packages/core/cypress/integration/analytics.test.js
@@ -4,8 +4,8 @@
* Cypress tests for testing the Analytics module
*/
-import { options } from '../global'
import { cypress } from '../../faststore.config'
+import { options } from '../global'
const { pages } = cypress
@@ -395,7 +395,7 @@ describe('view_cart event', () => {
({ event: eventName }) => eventName === 'view_cart'
)
- expect(event.ecommerce.value).to.equal(950)
+ expect(event.ecommerce.value).to.equal(420)
expect(event.ecommerce.items.length).to.equal(1)
})
})
diff --git a/packages/core/cypress/integration/seo.test.js b/packages/core/cypress/integration/seo.test.js
index f749fb10e3..c126cfebc7 100644
--- a/packages/core/cypress/integration/seo.test.js
+++ b/packages/core/cypress/integration/seo.test.js
@@ -6,8 +6,8 @@
* TODO: Improve structured data validaton by actually using schema.org's schemas
*/
-import { options } from '../global'
import { cypress, storeUrl } from '../../faststore.config'
+import { options } from '../global'
const { pages } = cypress
@@ -88,10 +88,13 @@ describe('Product Page Seo', () => {
.should(($el) => {
expect($el.attr('content')).to.eq('index,follow')
})
+
cy.get('link[rel="canonical"]')
.should('exist')
- .should(($link) => {
- expect($link.attr('href')).to.eq(`${storeUrl}${pages.pdp}`)
+ .and(($link) => {
+ const href = $link.attr('href')
+ const regex = new RegExp(`^${href.split('/')[0]}`)
+ expect(`${storeUrl}${pages.pdp}`).to.match(regex)
})
})
diff --git a/packages/core/faststore.config.default.js b/packages/core/faststore.config.default.js
index f845bf686e..842bfad166 100644
--- a/packages/core/faststore.config.default.js
+++ b/packages/core/faststore.config.default.js
@@ -67,7 +67,7 @@ module.exports = {
server: process.env.BASE_SITE_URL || 'http://localhost:3000',
pages: {
home: '/',
- pdp: '/apple-magic-mouse/p',
+ pdp: '/4k-philips-monitor-99988213/p',
collection: '/office',
},
},
@@ -76,7 +76,7 @@ module.exports = {
cypress: {
pages: {
home: '/',
- pdp: '/apple-magic-mouse/p',
+ pdp: '/4k-philips-monitor-99988213/p',
collection: '/office',
collection_2: '/technology',
collection_filtered:
diff --git a/packages/core/src/components/common/Footer/Footer.tsx b/packages/core/src/components/common/Footer/Footer.tsx
index 3f8e809d21..83dc87e20d 100644
--- a/packages/core/src/components/common/Footer/Footer.tsx
+++ b/packages/core/src/components/common/Footer/Footer.tsx
@@ -6,11 +6,15 @@ interface FooterProps {
}
export function FooterInfo({ children }: FooterProps) {
- return {children}
+ return (
+
+ )
}
export function FooterNavigation({ children }: FooterProps) {
- return {children}
+ return
}
export function Footer({ children }: FooterProps) {
diff --git a/packages/core/src/components/common/Footer/FooterLinks.tsx b/packages/core/src/components/common/Footer/FooterLinks.tsx
index 2d150ac203..facdea8cab 100644
--- a/packages/core/src/components/common/Footer/FooterLinks.tsx
+++ b/packages/core/src/components/common/Footer/FooterLinks.tsx
@@ -67,7 +67,7 @@ function FooterLinks({ links }: FooterLinksProps) {
-
+
{links.map(({ sectionTitle, items }) => (
{sectionTitle}
diff --git a/packages/core/src/components/common/Footer/FooterSocial.tsx b/packages/core/src/components/common/Footer/FooterSocial.tsx
index 331e94e02f..5d2d1629f6 100644
--- a/packages/core/src/components/common/Footer/FooterSocial.tsx
+++ b/packages/core/src/components/common/Footer/FooterSocial.tsx
@@ -13,12 +13,19 @@ type FooterSocialLink = {
export interface FooterSocialProps {
title: string
links: FooterSocialLink[]
+ id?: string
}
-function FooterSocial({ title, links }: FooterSocialProps) {
+function FooterSocial({
+ title,
+ links,
+ id = 'footer-social-title',
+}: FooterSocialProps) {
return (
-
- {title}
+
+
+ {title}
+
{links.map(({ icon: { icon }, url }) => (
diff --git a/packages/core/src/components/sections/Incentives/Incentives.tsx b/packages/core/src/components/sections/Incentives/Incentives.tsx
index 97ee4713bb..9fd6d40ebb 100644
--- a/packages/core/src/components/sections/Incentives/Incentives.tsx
+++ b/packages/core/src/components/sections/Incentives/Incentives.tsx
@@ -1,17 +1,19 @@
-import UIIncentives from 'src/components/ui/Incentives/Incentives'
import type { Incentive } from 'src/components/ui/Incentives'
+import UIIncentives from 'src/components/ui/Incentives/Incentives'
import Section from '../Section'
import styles from './section.module.scss'
interface Props {
incentives: Incentive[]
+ label?: string
}
-function Incentives({ incentives }: Props) {
+function Incentives({ incentives, label }: Props) {
return (
-
+ {/* Leaving label as an empty string isn’t ideal, but it works for now. Ideally, we should receive a label from the CMS to identify which Incentive section we’re referring to. */}
+
)
}
diff --git a/packages/core/src/components/ui/Incentives/Incentives.tsx b/packages/core/src/components/ui/Incentives/Incentives.tsx
index 3bd65f7302..b8da296f11 100644
--- a/packages/core/src/components/ui/Incentives/Incentives.tsx
+++ b/packages/core/src/components/ui/Incentives/Incentives.tsx
@@ -1,7 +1,7 @@
import {
Icon as UIIcon,
- List as UIList,
Incentive as UIIncentive,
+ List as UIList,
} from '@faststore/ui'
export type Incentive = {
@@ -22,18 +22,24 @@ export interface IncentivesProps {
* Controls the component's direction.
*/
variant?: 'horizontal' | 'vertical'
+ /**
+ * Label to identify the incentive list and offer better accessibility
+ */
+ label?: string
}
function Incentives({
incentives,
variant = 'horizontal',
colored = false,
+ label,
}: IncentivesProps) {
return (
-
{incentives.map((incentive, index) => (
@@ -46,7 +52,7 @@ function Incentives({
width={32}
height={32}
/>
-
+
{incentive.title}
{incentive.firstLineText}
@@ -56,12 +62,12 @@ function Incentives({
{incentive.secondLineText}
)}
-
+
))}
-
+
)
}
diff --git a/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx b/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx
index 97d248ce19..623c28252c 100644
--- a/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx
+++ b/packages/core/src/components/ui/ProductDetails/ProductDetailsSettings.tsx
@@ -9,9 +9,8 @@ import { useFormattedPrice } from 'src/sdk/product/useFormattedPrice'
import Selectors from 'src/components/ui/SkuSelector'
import AddToCartLoadingSkeleton from './AddToCartLoadingSkeleton'
-import { Icon as UIIcon, useUI } from '@faststore/ui'
+import { Icon as UIIcon, Label as UILabel, useUI } from '@faststore/ui'
import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
-import { Label as UILabel } from '@faststore/ui'
interface ProductDetailsSettingsProps {
product: ProductDetailsFragment_ProductFragment
diff --git a/packages/ui/src/components/atoms/Incentive/Incentive.tsx b/packages/ui/src/components/atoms/Incentive/Incentive.tsx
index 174f1619a7..1496793714 100644
--- a/packages/ui/src/components/atoms/Incentive/Incentive.tsx
+++ b/packages/ui/src/components/atoms/Incentive/Incentive.tsx
@@ -1,5 +1,5 @@
-import React, { forwardRef } from 'react'
import type { HTMLAttributes } from 'react'
+import React, { forwardRef } from 'react'
export interface IncentiveProps extends HTMLAttributes {
/**
@@ -14,9 +14,9 @@ const Incentive = forwardRef(function Incentive(
ref
) {
return (
-
+
+
)
})
diff --git a/turbo.json b/turbo.json
index d796036cd8..8db3235edd 100644
--- a/turbo.json
+++ b/turbo.json
@@ -8,34 +8,21 @@
],
"pipeline": {
"site#build": {
- "dependsOn": [
- "^build"
- ],
- "env": [
- "BASE_SITE_URL"
- ],
- "outputs": [
- ".next/**"
- ]
+ "dependsOn": ["^build"],
+ "env": ["BASE_SITE_URL"],
+ "outputs": [".next/**"]
},
"build": {
- "outputs": [
- "dist/**"
- ],
- "dependsOn": [
- "^build"
- ]
+ "dependsOn": ["^build"],
+ "env": ["BASE_SITE_URL"],
+ "outputs": ["dist/**"]
},
"test": {
- "dependsOn": [
- "^build"
- ]
+ "dependsOn": ["^build"]
},
"lint": {},
"start": {
- "outputs": [
- "dist/**"
- ]
+ "outputs": ["dist/**"]
},
"size": {},
"dev": {
@@ -45,19 +32,13 @@
"cache": false
},
"@faststore/api#dev:graphql": {
- "outputs": [
- "dist/**"
- ]
+ "outputs": ["dist/**"]
},
"@faststore/api#build:cjs": {
- "outputs": [
- "dist/**"
- ]
+ "outputs": ["dist/**"]
},
"@faststore/api#build:esm": {
- "outputs": [
- "dist/**"
- ]
+ "outputs": ["dist/**"]
}
}
}
From 1cc987d52dfce0b3235e80662099a55c7acb9ba9 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 26 Sep 2024 17:40:18 +0000
Subject: [PATCH 060/154] [no ci] Release: 3.0.115
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/components/package.json | 2 +-
packages/core/package.json | 6 +++---
packages/ui/package.json | 4 ++--
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 1cca6b0eb9..19cc7ed0c6 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.110",
+ "version": "3.0.115",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -12,7 +12,7 @@
"dependencies": {
"@faststore/api": "^3.0.110",
"@faststore/sdk": "^3.0.110",
- "@faststore/ui": "^3.0.110",
+ "@faststore/ui": "^3.0.115",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index 59229a5716..418b58e9ef 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.114",
+ "version": "3.0.115",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 72ce7899a4..0d28bee8d6 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.114 linux-x64 node-v18.20.4
+@faststore/cli/3.0.115 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.114/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 4958e4eeb0..49e4f43c0f 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.114",
+ "version": "3.0.115",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.114",
+ "@faststore/core": "^3.0.115",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/components/package.json b/packages/components/package.json
index 98a7393ed4..15c2ec9311 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.110",
+ "version": "3.0.115",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
diff --git a/packages/core/package.json b/packages/core/package.json
index fd03156f0f..a55c5597ce 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.114",
+ "version": "3.0.115",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -44,11 +44,11 @@
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
"@faststore/api": "^3.0.110",
- "@faststore/components": "^3.0.110",
+ "@faststore/components": "^3.0.115",
"@faststore/graphql-utils": "^3.0.110",
"@faststore/lighthouse": "^3.0.110",
"@faststore/sdk": "^3.0.110",
- "@faststore/ui": "^3.0.110",
+ "@faststore/ui": "^3.0.115",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 33e2a65f64..09eee93a1e 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.110",
+ "version": "3.0.115",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.110",
+ "@faststore/components": "^3.0.115",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
From 24167912656c74c56f732f71c89b6ea9ddd399f8 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Fri, 27 Sep 2024 14:42:16 -0300
Subject: [PATCH 061/154] Chore: Updates FastStore Contributing Guide (#2476)
## What's the purpose of this pull request?
Updates contributing guide to reduce friction for contributors.
## How it works?
- Updates the contributing file (added more details and instructions
about the process and label)
- Updates the pull request template
## How to test it?
Check the modified files and review it.
[Preview](https://github.com/vtex/faststore/blob/4adeb901b5bc031161111f0078d3fcd2b8716efb/CONTRIBUTING.MD)
---
.github/PULL_REQUEST_TEMPLATE.md | 21 ++++++-
CONTRIBUTING.MD | 96 +++++++++++++++++++++++++-------
README.md | 2 +-
3 files changed, 95 insertions(+), 24 deletions(-)
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index d0af64e777..09068bf3b4 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -4,7 +4,7 @@
## How it works?
-
+
## How to test it?
@@ -12,7 +12,7 @@
### Starters Deploy Preview
-
+
@@ -21,3 +21,20 @@
+
+## Checklist
+
+You may erase this after checking them all :wink:
+
+**PR Title and Commit Messages**
+
+- [ ] PR title and commit messages follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
+ - Available prefixes: `feat`, `fix`, `chore`, `docs`, `style`, `refactor` and `test`
+
+**PR Description**
+
+- [ ] Added a label according to the PR goal - `breaking change`, `bug`, `contributing`, `performance`, `documentation`..
+
+**Dependencies**
+
+- [ ] Committed the `yarn.lock` file when there were changes to the packages
diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD
index 13d532da36..2b481cff1b 100644
--- a/CONTRIBUTING.MD
+++ b/CONTRIBUTING.MD
@@ -1,30 +1,62 @@
-# How to contribute
+# How to contribute 🌟
-1. Fork this repository.
+Thank you for your interest in contributing! We welcome all kinds of contributions, whether they are bug fixes, new features, documentation improvements, or any other suggestions. This guide will walk you through the process of contributing to FastStore framework.
-2. Clone your forked `faststore` repository.
+## 1. Requirements
-3. Create a new branch for the changes you are working on.
+Before you begin, make sure you have the following installed on your local machine to run the project:
-## Developing Locally
+- [Git](https://git-scm.com)
+- [Node.js](https://nodejs.org/en)
+- [Yarn](https://yarnpkg.com/)
+- [Turbo](https://turbo.build/repo/docs/getting-started/installation#installing-turbo)
+- Your Preferred Code Editor (VSCode, Sublime, etc.)
-### Developing Packages
+## 2. Getting Started
-1. Run `yarn` at the root of the repo.
+### Forking the Repository
-2. Run `yarn build` at the root of the repo.
+**If you don’t have write access to this repository**, you'll need to fork it (else, skip this step):
+
+Fork the repository (click the Fork button at the top right of
+[this page](https://github.com/vtex/faststore)).This will create a copy of the repository in your GitHub account.
+
+### Cloning the Repository
+
+1. Open a terminal and clone the `faststore` repository.
+2. Navigate into the project folder.
+
+### Setting Up the Environment
+
+1. Run `yarn` at the root of the repository.
+
+2. Run `yarn build` at the root of the repository.
3. Run `yarn turbo run dev --filter={packageName}` to run a package individually.
-> For example, if you want to run the `@faststore/core` package, at the root of the repo run:
+> For example, if you want to run the `@faststore/core` package, at the root of the repository run:
>
> `yarn turbo run dev --filter=@faststore/core`
-### Developing packages while also testing on a store
+**Note**: If you encounter issues during the setup process, please check if your current version of Yarn, Turbo, and Node.js are matching the versions specified in the package.json file.
+
+## 3. Working on an Issue
+
+### Creating a New Branch
+
+Before starting any work, create a new branch for your changes:
+
+```
+git checkout -b feat/your-branch-name
+```
+
+Choose a branch name that reflects the work being done, such as `fix/query-typo` or `feat/add-new-component`.
+
+### Testing Changes on a Store
To test your changes in a store, you will need to create a pull request (for more guidance, refer to the next section). You can keep your pull request in `draft` while testing.
-1. After committing your changes, push them to the remote repo and open a Pull Request.
+1. After committing your changes, push them to the remote repository and open a Pull Request.
2. In the checks section, find `ci/codesandbox` and click on `Details`.
@@ -32,25 +64,47 @@ To test your changes in a store, you will need to create a pull request (for mor
3. Use the `Local Install Instructions` provided for the PR to **add your version of the packages** as dependencies in the `package.json` file of the [starter](https://github.com/vtex-sites/starter.store) or your store.
-
+
+
+4. Run `yarn` to install the updates and test your changes in the store.
-4. Run `yarn` to install the updates and test your changes.
+**Note**: This link is intended for testing purposes only. Please avoid using it in your store. Once the published version of your package is available, make sure to update the link accordingly.
-## Creating Pull Requests
+## 4. Creating a Pull Request
We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification for pull request titles and commit messages.
-1. After committing your changes, push them to the remote repo and open a Pull Request.
+After committing your changes, push them to the remote repository and open a Pull Request.
+
+### Pull Request Guidelines
+
+1. Please add a clear and concise title PR title with one of the prefixes.
+
+- Available prefixes: `Feat`, `Fix`, `Chore`, `Docs`, `Style`
+- Example: `Feat: Add Carousel component`
+
+2. You will be presented with a pull request template. Please describe the motivation behind your changes and provide details about what you have implemented.
+
+3. If applicable, include screenshots and steps for testing. This information will help reviewers understand your contributions better.
+
+4. Add the `contributing` label to identify your PR. And any other [label](https://github.com/vtex/faststore/labels) that is applicable for your PR.
+
+**Note**: If you believe your changes might cause a breaking change, or if you have any concerns about it, please mention this in the pull request description.
+
+## 5. Review Process
+
+Once your PR is submitted, the team will review it.
-2. Please add a clear and concise title PR title with one of the prefixes.
+Pull requests need only the approval 👍 of two or more maintainers to be merged.
-- Available prefixes: `feat`, `fix`, `chore`, `docs`, `style`
-- Example: `feat: Add Carousel component`
+All contributions will go through a review process. Make sure you keep an eye on the PR, you might need to:
-3. You will be presented with a pull request template. Kindly describe the motivation behind and the changes you made. This information will help reviewers in understanding your contributions.
+1. Respond to any feedback from reviewers.
+2. Make any requested changes by committing to your branch and pushing the updates.
-4. Wait for checks to pass and reviews to be approved.
+Once your PR is approved, your changes will be merged into the `main` branch and a new release will be initiated, incorporating your updates into the latest version.
-5. When your changes are merged, a new release will be initiated, incorporating your updates into the latest version.
+Please be patient, as this process can take some time depending on the team’s availability. However, if your changes are critical and you are a client, consider contacting customer support to request priority through a support ticket.
Thanks for contributing 🎉
diff --git a/README.md b/README.md
index f914f568b9..518e5a45f5 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ Check out our [Overview](https://www.faststore.dev/docs/getting-started-overview
## Contributing
-This is still a work in progress, however, if you are also an adventurous person, you can read the code and have some fun!
+This is a work in progress. If you are an adventurous person, you can read the code and have some fun! Refer to [Contributing guidelines](CONTRIBUTING.MD) for more information.
## Getting help
From 9abc0ddd52926f6298ff34b86aa1a333812707df Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Fri, 27 Sep 2024 15:38:02 -0300
Subject: [PATCH 062/154] chore: removes mark from components/sections (#2478)
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to remove the mark from
our components and sections. It also removes the mark from the tests
(they were being skipped).
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/552
### PSI Snapshot
---
.../cypress/integration/performance.test.js | 65 -------------------
.../src/components/common/Alert/Alert.tsx | 4 +-
.../src/components/common/Footer/Footer.tsx | 4 +-
.../components/navigation/Navbar/Navbar.tsx | 5 +-
.../navigation/NavbarLinks/NavbarLinks.tsx | 3 +-
.../navigation/NavbarSlider/NavbarSlider.tsx | 3 +-
.../ProductGallery/ProductGallery.tsx | 9 +--
packages/core/src/pages/[...slug].tsx | 4 +-
packages/core/src/pages/[slug]/p.tsx | 5 +-
packages/core/src/pages/index.tsx | 5 +-
packages/core/src/pages/s.tsx | 5 +-
packages/core/src/sdk/tests/mark.tsx | 10 ---
12 files changed, 11 insertions(+), 111 deletions(-)
delete mode 100644 packages/core/cypress/integration/performance.test.js
delete mode 100644 packages/core/src/sdk/tests/mark.tsx
diff --git a/packages/core/cypress/integration/performance.test.js b/packages/core/cypress/integration/performance.test.js
deleted file mode 100644
index f1d769bc37..0000000000
--- a/packages/core/cypress/integration/performance.test.js
+++ /dev/null
@@ -1,65 +0,0 @@
-// eslint-disable-next-line spaced-comment
-///
-/**
- * Cypress tests for testing the Cart module
- */
-
-import { options } from '../global'
-import { cypress } from '../../faststore.config'
-
-const { pages } = cypress
-
-const paths = [pages.home, pages.pdp, pages.collection]
-
-const testMark = (path, mark) => {
- cy.visit(path, options)
- cy.waitForHydration()
-
- cy.window().should((win) => {
- expect(win.performance.getEntriesByName(mark)).to.have.length(1)
- })
-}
-
-describe('React rendering performance', () => {
- beforeEach(() => {
- cy.clearIDB()
- })
-
- it.skip('Renders Navbar component once', () => {
- const mark = 'Navbar'
-
- for (const path of paths) {
- testMark(path, mark)
- }
- })
-
- it.skip('Renders Footer component once', () => {
- const mark = 'Footer'
-
- for (const path of paths) {
- testMark(path, mark)
- }
- })
-
- it.skip('Renders Alert component once', () => {
- const mark = 'Alert'
-
- for (const path of paths) {
- testMark(path, mark)
- }
- })
-
- it.skip('Renders Page component once', () => {
- const mark = 'Page'
-
- for (const path of paths) {
- testMark(path, mark)
- }
- })
-
- it.skip('Renders ProductGallery component once on PLP', () => {
- const mark = 'ProductGallery'
-
- testMark(pages.collection, mark)
- })
-})
diff --git a/packages/core/src/components/common/Alert/Alert.tsx b/packages/core/src/components/common/Alert/Alert.tsx
index d17571955c..8cd510f4b5 100644
--- a/packages/core/src/components/common/Alert/Alert.tsx
+++ b/packages/core/src/components/common/Alert/Alert.tsx
@@ -2,7 +2,6 @@ import type { PropsWithChildren, ReactNode } from 'react'
import { useCallback, useState } from 'react'
import { AlertProps as UIAlertProps } from '@faststore/ui'
-import { mark } from 'src/sdk/tests/mark'
import Section from 'src/components/sections/Section/Section'
import styles from './section.module.scss'
@@ -50,5 +49,4 @@ function Alert({
)
}
-Alert.displayName = 'Alert'
-export default mark(Alert)
+export default Alert
diff --git a/packages/core/src/components/common/Footer/Footer.tsx b/packages/core/src/components/common/Footer/Footer.tsx
index 83dc87e20d..717776bdd8 100644
--- a/packages/core/src/components/common/Footer/Footer.tsx
+++ b/packages/core/src/components/common/Footer/Footer.tsx
@@ -1,5 +1,4 @@
import { ReactNode } from 'react'
-import { mark } from 'src/sdk/tests/mark'
interface FooterProps {
children: ReactNode
@@ -30,5 +29,4 @@ export function Footer({ children }: FooterProps) {
)
}
-Footer.displayName = 'Footer'
-export default mark(Footer)
+export default Footer
diff --git a/packages/core/src/components/navigation/Navbar/Navbar.tsx b/packages/core/src/components/navigation/Navbar/Navbar.tsx
index 401a4b9455..a77aec553b 100644
--- a/packages/core/src/components/navigation/Navbar/Navbar.tsx
+++ b/packages/core/src/components/navigation/Navbar/Navbar.tsx
@@ -2,8 +2,6 @@ import { useRef, useState, useCallback } from 'react'
import { useUI, useScrollDirection, Icon as UIIcon } from '@faststore/ui'
-import { mark } from 'src/sdk/tests/mark'
-
import type { SearchInputRef } from 'src/components/search/SearchInput'
import SearchInput from 'src/components/search/SearchInput'
import NavbarLinks from 'src/components/navigation/NavbarLinks'
@@ -174,5 +172,4 @@ function Navbar({
)
}
-Navbar.displayName = 'Navbar'
-export default mark(Navbar)
+export default Navbar
diff --git a/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx b/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx
index 86f09161bb..904f17b648 100644
--- a/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx
+++ b/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx
@@ -7,7 +7,6 @@ import Link from 'src/components/ui/Link'
import RegionButton from 'src/components/region/RegionButton'
import type { NavbarProps } from 'src/components/navigation/Navbar'
-import { mark } from 'src/sdk/tests/mark'
import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
interface NavbarLinksProps extends UINavbarLinksProps {
@@ -52,4 +51,4 @@ function NavbarLinks({
)
}
-export default mark(NavbarLinks)
+export default NavbarLinks
diff --git a/packages/core/src/components/navigation/NavbarSlider/NavbarSlider.tsx b/packages/core/src/components/navigation/NavbarSlider/NavbarSlider.tsx
index 8c07c2c19c..888d586d31 100644
--- a/packages/core/src/components/navigation/NavbarSlider/NavbarSlider.tsx
+++ b/packages/core/src/components/navigation/NavbarSlider/NavbarSlider.tsx
@@ -5,7 +5,6 @@ import { ButtonSignInFallback } from 'src/components/ui/Button'
import Link from 'src/components/ui/Link'
import NavbarLinks from 'src/components/navigation/NavbarLinks'
import Logo from 'src/components/ui/Logo'
-import { mark } from 'src/sdk/tests/mark'
import type { NavbarProps } from '../Navbar'
@@ -73,4 +72,4 @@ function NavbarSlider({
)
}
-export default mark(NavbarSlider)
+export default NavbarSlider
diff --git a/packages/core/src/components/sections/ProductGallery/ProductGallery.tsx b/packages/core/src/components/sections/ProductGallery/ProductGallery.tsx
index 8bd65f32a6..d1156c9071 100644
--- a/packages/core/src/components/sections/ProductGallery/ProductGallery.tsx
+++ b/packages/core/src/components/sections/ProductGallery/ProductGallery.tsx
@@ -1,5 +1,3 @@
-import { mark } from '../../../sdk/tests/mark'
-
import ProductGallery, {
ProductGalleryProps,
} from '../../ui/ProductGallery/ProductGallery'
@@ -70,11 +68,8 @@ function ProductGallerySection({
)
}
-ProductGallerySection.displayName = 'ProductGallery'
-const MarkedProductGallery = mark(ProductGallerySection)
-
const OverridableProductGallery = getOverridableSection<
- typeof MarkedProductGallery
->('ProductGallery', MarkedProductGallery, ProductGalleryDefaultComponents)
+ typeof ProductGallerySection
+>('ProductGallery', ProductGallerySection, ProductGalleryDefaultComponents)
export default OverridableProductGallery
diff --git a/packages/core/src/pages/[...slug].tsx b/packages/core/src/pages/[...slug].tsx
index 86bbb7457d..77af7c1347 100644
--- a/packages/core/src/pages/[...slug].tsx
+++ b/packages/core/src/pages/[...slug].tsx
@@ -7,7 +7,6 @@ import type {
ServerCollectionPageQueryQuery,
ServerCollectionPageQueryQueryVariables,
} from '@generated/graphql'
-import { mark } from 'src/sdk/tests/mark'
import { execute } from 'src/server'
import { Locator } from '@vtex/client-cms'
@@ -150,5 +149,4 @@ export const getStaticPaths: GetStaticPaths = async () => {
}
}
-Page.displayName = 'Page'
-export default mark(Page)
+export default Page
diff --git a/packages/core/src/pages/[slug]/p.tsx b/packages/core/src/pages/[slug]/p.tsx
index d5c1edd043..5634bdb5a1 100644
--- a/packages/core/src/pages/[slug]/p.tsx
+++ b/packages/core/src/pages/[slug]/p.tsx
@@ -22,7 +22,6 @@ import { OverriddenDefaultProductShelf as ProductShelf } from 'src/components/se
import ProductTiles from 'src/components/sections/ProductTiles'
import CUSTOM_COMPONENTS from 'src/customizations/src/components'
import { useSession } from 'src/sdk/session'
-import { mark } from 'src/sdk/tests/mark'
import { execute } from 'src/server'
import storeConfig from 'faststore.config'
@@ -274,6 +273,4 @@ export const getStaticPaths: GetStaticPaths = async () => {
}
}
-Page.displayName = 'Page'
-
-export default mark(Page)
+export default Page
diff --git a/packages/core/src/pages/index.tsx b/packages/core/src/pages/index.tsx
index 7f0fb5e8f1..7863ec3c4a 100644
--- a/packages/core/src/pages/index.tsx
+++ b/packages/core/src/pages/index.tsx
@@ -12,7 +12,6 @@ import { OverriddenDefaultNewsletter as Newsletter } from 'src/components/sectio
import { OverriddenDefaultProductShelf as ProductShelf } from 'src/components/sections/ProductShelf/OverriddenDefaultProductShelf'
import ProductTiles from 'src/components/sections/ProductTiles'
import CUSTOM_COMPONENTS from 'src/customizations/src/components'
-import { mark } from 'src/sdk/tests/mark'
import type { PageContentType } from 'src/server/cms'
import { getPage } from 'src/server/cms'
@@ -129,6 +128,4 @@ export const getStaticProps: GetStaticProps<
}
}
-Page.displayName = 'Page'
-
-export default mark(Page)
+export default Page
diff --git a/packages/core/src/pages/s.tsx b/packages/core/src/pages/s.tsx
index ab11f6a3c0..5d5b370ad3 100644
--- a/packages/core/src/pages/s.tsx
+++ b/packages/core/src/pages/s.tsx
@@ -13,7 +13,6 @@ import { SROnly as UISROnly } from '@faststore/ui'
import { ITEMS_PER_PAGE } from 'src/constants'
import { useApplySearchState } from 'src/sdk/search/state'
-import { mark } from 'src/sdk/tests/mark'
import { Locator } from '@vtex/client-cms'
import storeConfig from 'faststore.config'
@@ -153,6 +152,4 @@ export const getStaticProps: GetStaticProps<
}
}
-Page.displayName = 'Page'
-
-export default mark(Page)
+export default Page
diff --git a/packages/core/src/sdk/tests/mark.tsx b/packages/core/src/sdk/tests/mark.tsx
deleted file mode 100644
index 90d45eefdc..0000000000
--- a/packages/core/src/sdk/tests/mark.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import type { ComponentType } from 'react'
-
-export const mark = (Component: ComponentType
): ComponentType
=>
- function marked(props: P) {
- if (typeof window !== 'undefined') {
- performance.mark(Component.displayName ?? Component.name ?? 'unknown')
- }
-
- return
- }
From d1224a92e9de9df9ea89b5005f454b25bb5766d2 Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Fri, 27 Sep 2024 15:39:12 -0300
Subject: [PATCH 063/154] Feat: adds preconnect and dns-prefetch (#2477)
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to add `preconnect` and
`dns-prefetch` to the `vtexassets` so that it can establish network
connections early to improve perceived page speed
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/551
### PSI Snapshot
## References
https://web.dev/articles/preconnect-and-dns-prefetch?hl=pt-br
---
packages/core/src/pages/_document.tsx | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/packages/core/src/pages/_document.tsx b/packages/core/src/pages/_document.tsx
index 1705b2b9c5..b0da6af83a 100644
--- a/packages/core/src/pages/_document.tsx
+++ b/packages/core/src/pages/_document.tsx
@@ -1,4 +1,5 @@
import { Head, Html, Main, NextScript } from 'next/document'
+import storeConfig from '../../faststore.config'
import ThirdPartyScripts from 'src/components/ThirdPartyScripts'
import { WebFonts } from 'src/customizations/src/GlobalOverrides'
@@ -7,6 +8,14 @@ function Document() {
return (
+
+
{!process.env.DISABLE_3P_SCRIPTS && }
From 944909c520a5f2d541354bce0b13b35e1ade9653 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 27 Sep 2024 18:44:30 +0000
Subject: [PATCH 064/154] [no ci] Release: 3.0.116
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 16 ++++++++--------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 46 insertions(+), 46 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 19cc7ed0c6..b0850aae08 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.115",
+ "version": "3.0.116",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.110",
- "@faststore/sdk": "^3.0.110",
- "@faststore/ui": "^3.0.115",
+ "@faststore/api": "^3.0.116",
+ "@faststore/sdk": "^3.0.116",
+ "@faststore/ui": "^3.0.116",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 418b58e9ef..3cd50b4eb9 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.115",
+ "version": "3.0.116",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 6c2c3e76d3..48dfd4804f 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.110",
+ "version": "3.0.116",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^2.6.0",
- "@faststore/eslint-config": "^3.0.110",
- "@faststore/shared": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
+ "@faststore/shared": "^3.0.116",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 0d28bee8d6..3029c1dae0 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.115 linux-x64 node-v18.20.4
+@faststore/cli/3.0.116 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.115/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 49e4f43c0f..ae5fc70d48 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.115",
+ "version": "3.0.116",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.115",
+ "@faststore/core": "^3.0.116",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -31,8 +31,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.110",
- "@faststore/shared": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
+ "@faststore/shared": "^3.0.116",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 15c2ec9311..6bce293424 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.115",
+ "version": "3.0.116",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.110",
- "@faststore/shared": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
+ "@faststore/shared": "^3.0.116",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
"@types/jest-axe": "^3.5.9",
diff --git a/packages/core/package.json b/packages/core/package.json
index a55c5597ce..d0a29585ba 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.115",
+ "version": "3.0.116",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.110",
- "@faststore/components": "^3.0.115",
- "@faststore/graphql-utils": "^3.0.110",
- "@faststore/lighthouse": "^3.0.110",
- "@faststore/sdk": "^3.0.110",
- "@faststore/ui": "^3.0.115",
+ "@faststore/api": "^3.0.116",
+ "@faststore/components": "^3.0.116",
+ "@faststore/graphql-utils": "^3.0.116",
+ "@faststore/lighthouse": "^3.0.116",
+ "@faststore/sdk": "^3.0.116",
+ "@faststore/ui": "^3.0.116",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
"@graphql-codegen/typescript": "^4.0.7",
@@ -87,7 +87,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index eab0871968..ff7dec0eeb 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.110",
+ "version": "3.0.116",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index f05d23b6b5..fe713bb767 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.110",
+ "version": "3.0.116",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.110",
- "@faststore/shared": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
+ "@faststore/shared": "^3.0.116",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 846acc4828..3d44690e90 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.110",
+ "version": "3.0.116",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.110",
- "@faststore/shared": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
+ "@faststore/shared": "^3.0.116",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 0794130453..8c8ccc8537 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.110",
+ "version": "3.0.116",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.110",
+ "@faststore/shared": "^3.0.116",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 44d98c527c..0848906b13 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.110",
+ "version": "3.0.116",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 09eee93a1e..05f73b3a0f 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.115",
+ "version": "3.0.116",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.115",
+ "@faststore/components": "^3.0.116",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.110",
- "@faststore/shared": "^3.0.110",
+ "@faststore/eslint-config": "^3.0.116",
+ "@faststore/shared": "^3.0.116",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From cc3cc880a4a79ac6872bb4b8bc29f285e8f546cc Mon Sep 17 00:00:00 2001
From: Tiago Ferreira Lima
Date: Tue, 1 Oct 2024 14:24:28 -0300
Subject: [PATCH 065/154] Add showSponsored as api configuration on
faststore.config.js to IntelligentSearch integration (#2438)
## What's the purpose of this pull request?
This PR adds support for showing sponsored products when using
Intelligent Search. FastShop and probably more retailers are interested
in our ad solution (VTEX Ad Network). This PR intends to create a
frictionless integration between FastStore and VTEX Ad Network.
## How it works?
The store will change the showSponsored configuration on the
feaststore.config.js file to allow intelligent search to return
sponsored products. This will only happen if the store is a active
publisher on VTEX Ad Network.
On faststore.config.js
```yaml
// Platform specific configs for API
API: {
...
showSponsored: true,
}
```
## How to test it?
* Change the `showSponsored` attribute to `true` on faststore.config.js
* Verify if the store is an active publisher on VTEX Ad Network
* Create a campaign to be delivered to the store with a valid product
Check the starter page with the `showSponsored` flag to true and no
label: [Starter With
Ads](https://starter-5q5m6v7l7-faststore.vercel.app/office) - related
[PR](https://github.com/vtex-sites/starter.store/pull/540):
Example with no label:
![image](https://github.com/user-attachments/assets/119baa57-a5b8-4b7f-99c1-954aaae30e07)
Perfomance for category page:
![image](https://github.com/user-attachments/assets/714db14c-a3b4-435c-9acd-5c34f43d37b6)
![image](https://github.com/user-attachments/assets/e9d64b9d-aba5-4987-8477-21ebd6f0ce08)
Performance for full text search page:
![image](https://github.com/user-attachments/assets/de06dc1a-c2a5-47ec-814b-5ef6dada863c)
![image](https://github.com/user-attachments/assets/ce2c910f-6b46-48d2-91a6-fbe6fd62b0d6)
### Starters Deploy Preview
## References
* [VTEX Ad
Network](https://developers.vtex.com/docs/api-reference/vtex-ad-network-api#get-/sponsored_products/-facets-)
* [Intelligent Search
API](https://developers.vtex.com/docs/api-reference/intelligent-search-api#get-/product_search/-facets-)
---------
Co-authored-by: Pedro Soares
---
packages/api/local/server.ts | 1 +
packages/api/mocks/AllProductsQuery.ts | 2 +-
packages/api/mocks/ProductQuery.ts | 2 +-
packages/api/mocks/RedirectQuery.ts | 2 +-
packages/api/mocks/SearchQuery.ts | 4 +--
packages/api/src/__generated__/schema.ts | 17 ++++++++++++
.../platforms/vtex/clients/search/index.ts | 9 +++++--
.../search/types/ProductSearchResult.ts | 9 +++++++
packages/api/src/platforms/vtex/index.ts | 1 +
.../src/platforms/vtex/resolvers/product.ts | 1 +
.../api/src/typeDefs/advertisement.graphql | 25 +++++++++++++++++
packages/api/src/typeDefs/product.graphql | 4 +++
packages/api/test/queries.test.ts | 1 +
packages/api/test/schema.test.ts | 1 +
packages/core/@generated/gql.ts | 4 +--
packages/core/@generated/graphql.ts | 27 +++++++++++++++++--
packages/core/faststore.config.default.js | 1 +
.../product/ProductCard/ProductCard.tsx | 15 +++++++++++
packages/core/src/server/options.ts | 1 +
19 files changed, 116 insertions(+), 11 deletions(-)
create mode 100644 packages/api/src/typeDefs/advertisement.graphql
diff --git a/packages/api/local/server.ts b/packages/api/local/server.ts
index a545b5e8e7..cfbd5e5985 100644
--- a/packages/api/local/server.ts
+++ b/packages/api/local/server.ts
@@ -12,6 +12,7 @@ const apiOptions = {
locale: 'en-US',
environment: 'vtexcommercestable',
channel: '{"salesChannel":"1"}',
+ showSponsored: false,
} as Options
const graphQLContext = getContextFactory(apiOptions)
diff --git a/packages/api/mocks/AllProductsQuery.ts b/packages/api/mocks/AllProductsQuery.ts
index 3e23e96b9d..2ad640de6f 100644
--- a/packages/api/mocks/AllProductsQuery.ts
+++ b/packages/api/mocks/AllProductsQuery.ts
@@ -78,7 +78,7 @@ export const AllProductsQueryFirst5 = `query AllProducts {
`
export const productSearchPage1Count5Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip&showSponsored=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/mocks/ProductQuery.ts b/packages/api/mocks/ProductQuery.ts
index b9b72a4cbc..7bdfa029d8 100644
--- a/packages/api/mocks/ProductQuery.ts
+++ b/packages/api/mocks/ProductQuery.ts
@@ -63,7 +63,7 @@ export const ProductByIdQuery = `query ProductQuery {
`
export const productSearchFetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A64953394&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=1&count=1&query=sku%3A64953394&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip&showSponsored=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/mocks/RedirectQuery.ts b/packages/api/mocks/RedirectQuery.ts
index 1a1b1f1c21..126e358a32 100644
--- a/packages/api/mocks/RedirectQuery.ts
+++ b/packages/api/mocks/RedirectQuery.ts
@@ -6,7 +6,7 @@ export const RedirectQueryTermTech = `query RedirectSearch {
`
export const redirectTermTechFetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=2&count=1&query=tech&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/trade-policy/1?page=2&count=1&query=tech&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip&showSponsored=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/mocks/SearchQuery.ts b/packages/api/mocks/SearchQuery.ts
index 1d426b9c04..443d9ea6e9 100644
--- a/packages/api/mocks/SearchQuery.ts
+++ b/packages/api/mocks/SearchQuery.ts
@@ -101,7 +101,7 @@ export const SearchQueryFirst5Products = `query SearchQuery {
}`
export const productSearchCategory1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/product_search/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip&showSponsored=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
@@ -1395,7 +1395,7 @@ export const productSearchCategory1Fetch = {
}
export const attributeSearchCategory1Fetch = {
- info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/facets/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip',
+ info: 'https://storeframework.vtexcommercestable.com.br/api/io/_v/api/intelligent-search/facets/category-1/office/trade-policy/1?page=1&count=5&query=&sort=&fuzzy=auto&locale=en-US&hideUnavailableItems=false&simulationBehavior=skip&showSponsored=false',
init: undefined,
options: { storeCookies: expect.any(Function) },
result: {
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index 61a55df546..bd53a4c46f 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -99,6 +99,21 @@ export type Address = {
street?: Maybe;
};
+/** Advertisement information about a specific product in a campaign */
+export type Advertisement = {
+ __typename?: 'Advertisement';
+ /** Cost of the action, usually Cost Per Click. */
+ actionCost: Scalars['Float'];
+ /** Advertiser ID of the product. */
+ adId: Scalars['String'];
+ /** Advertiser Request ID. */
+ adRequestId: Scalars['String'];
+ /** Advertiser Response ID. */
+ adResponseId: Scalars['String'];
+ /** Campaign ID. */
+ campaignId: Scalars['String'];
+};
+
export type AvailableDeliveryWindows = {
__typename?: 'AvailableDeliveryWindows';
/** Available delivery window end date in UTC */
@@ -944,6 +959,8 @@ export type StoreProduct = {
__typename?: 'StoreProduct';
/** Array of additional properties. */
additionalProperty: Array;
+ /** Advertisement information about the product. */
+ advertisement?: Maybe;
/** Aggregate ratings data. */
aggregateRating: StoreAggregateRating;
/** Product brand. */
diff --git a/packages/api/src/platforms/vtex/clients/search/index.ts b/packages/api/src/platforms/vtex/clients/search/index.ts
index e8331c9f2b..a64a383c82 100644
--- a/packages/api/src/platforms/vtex/clients/search/index.ts
+++ b/packages/api/src/platforms/vtex/clients/search/index.ts
@@ -27,12 +27,13 @@ export interface SearchArgs {
query?: string
page: number
count: number
- type: 'product_search' | 'facets'
+ type: 'product_search' | 'facets' | 'sponsored_products'
sort?: Sort
selectedFacets?: SelectedFacet[]
fuzzy?: '0' | '1' | 'auto'
hideUnavailableItems?: boolean
showInvisibleItems?: boolean
+ showSponsored?: boolean
}
export interface ProductLocator {
@@ -49,7 +50,7 @@ export const isFacetBoolean = (
): facet is Facet => facet.type === 'TEXT'
export const IntelligentSearch = (
- { account, environment, hideUnavailableItems, simulationBehavior }: Options,
+ { account, environment, hideUnavailableItems, simulationBehavior, showSponsored }: Options,
ctx: Context
) => {
const base = `https://${account}.${environment}.com.br/api/io`
@@ -136,6 +137,10 @@ export const IntelligentSearch = (
params.append('simulationBehavior', simulationBehavior.toString())
}
+ if (showSponsored !== undefined) {
+ params.append('showSponsored', showSponsored.toString())
+ }
+
const pathname = addDefaultFacets(selectedFacets)
.map(({ key, value }) => `${key}/${value}`)
.join('/')
diff --git a/packages/api/src/platforms/vtex/clients/search/types/ProductSearchResult.ts b/packages/api/src/platforms/vtex/clients/search/types/ProductSearchResult.ts
index 0c9347dfa5..201a37c467 100644
--- a/packages/api/src/platforms/vtex/clients/search/types/ProductSearchResult.ts
+++ b/packages/api/src/platforms/vtex/clients/search/types/ProductSearchResult.ts
@@ -92,6 +92,7 @@ export interface Product {
properties: Array<{ name: string; values: string[] }>
selectedProperties: Array<{ key: string; value: string }>
releaseDate: string
+ advertisement?: Advertisement
}
interface Image {
@@ -216,6 +217,14 @@ interface SpecificationGroup {
}>
}
+interface Advertisement {
+ adId: string
+ campaignId: string
+ actionCost: number
+ adRequestId: string
+ adResponseId: string
+}
+
export interface Attribute {
id: string
name: string
diff --git a/packages/api/src/platforms/vtex/index.ts b/packages/api/src/platforms/vtex/index.ts
index ba26455b95..5129f1f3fd 100644
--- a/packages/api/src/platforms/vtex/index.ts
+++ b/packages/api/src/platforms/vtex/index.ts
@@ -37,6 +37,7 @@ export interface Options {
locale: string
hideUnavailableItems: boolean
simulationBehavior?: 'default' | 'skip' | 'only1P'
+ showSponsored: boolean
incrementAddress: boolean
flags?: FeatureFlags
}
diff --git a/packages/api/src/platforms/vtex/resolvers/product.ts b/packages/api/src/platforms/vtex/resolvers/product.ts
index db945e61f9..0569c7ae60 100644
--- a/packages/api/src/platforms/vtex/resolvers/product.ts
+++ b/packages/api/src/platforms/vtex/resolvers/product.ts
@@ -156,4 +156,5 @@ export const StoreProduct: Record> & {
]
},
releaseDate: ({ isVariantOf: { releaseDate } }) => releaseDate ?? '',
+ advertisement: ({ isVariantOf: { advertisement } }) => advertisement,
}
diff --git a/packages/api/src/typeDefs/advertisement.graphql b/packages/api/src/typeDefs/advertisement.graphql
new file mode 100644
index 0000000000..f99328903c
--- /dev/null
+++ b/packages/api/src/typeDefs/advertisement.graphql
@@ -0,0 +1,25 @@
+"""
+Advertisement information about a specific product in a campaign
+"""
+type Advertisement {
+ """
+ Advertiser ID of the product.
+ """
+ adId: String!
+ """
+ Campaign ID.
+ """
+ campaignId: String!
+ """
+ Cost of the action, usually Cost Per Click.
+ """
+ actionCost: Float!
+ """
+ Advertiser Request ID.
+ """
+ adRequestId: String!
+ """
+ Advertiser Response ID.
+ """
+ adResponseId: String!
+}
\ No newline at end of file
diff --git a/packages/api/src/typeDefs/product.graphql b/packages/api/src/typeDefs/product.graphql
index 1fb4613112..b1a7dfcb50 100644
--- a/packages/api/src/typeDefs/product.graphql
+++ b/packages/api/src/typeDefs/product.graphql
@@ -70,6 +70,10 @@ type StoreProduct {
Sku Unit Multiplier
"""
unitMultiplier: Float
+ """
+ Advertisement information about the product.
+ """
+ advertisement: Advertisement
}
"""
diff --git a/packages/api/test/queries.test.ts b/packages/api/test/queries.test.ts
index 78e4f772b5..73c2b55174 100644
--- a/packages/api/test/queries.test.ts
+++ b/packages/api/test/queries.test.ts
@@ -49,6 +49,7 @@ const apiOptions = {
subDomainPrefix: ['www'],
hideUnavailableItems: false,
simulationBehavior: 'skip',
+ showSponsored: false,
incrementAddress: false,
flags: {
enableOrderFormSync: true,
diff --git a/packages/api/test/schema.test.ts b/packages/api/test/schema.test.ts
index 5217cbe5de..47fa97b71d 100644
--- a/packages/api/test/schema.test.ts
+++ b/packages/api/test/schema.test.ts
@@ -83,6 +83,7 @@ beforeAll(async () => {
subDomainPrefix: ['www'],
hideUnavailableItems: false,
incrementAddress: false,
+ showSponsored: false,
flags: {
enableOrderFormSync: true,
},
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 7364cd0d25..415bcf1c7e 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -12,7 +12,7 @@ import * as types from './graphql'
* Therefore it is highly recommended to use the babel or swc plugin for production.
*/
const documents = {
- '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
+ '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n advertisement {\n adId\n adResponseId\n }\n }\n':
types.ProductSummary_ProductFragmentDoc,
'\n fragment Filter_facets on StoreFacet {\n ... on StoreFacetRange {\n key\n label\n\n min {\n selected\n absolute\n }\n\n max {\n selected\n absolute\n }\n\n __typename\n }\n ... on StoreFacetBoolean {\n key\n label\n values {\n label\n value\n selected\n quantity\n }\n\n __typename\n }\n }\n':
types.Filter_FacetsFragmentDoc,
@@ -62,7 +62,7 @@ const documents = {
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
+ source: '\n fragment ProductSummary_product on StoreProduct {\n id: productID\n slug\n sku\n brand {\n brandName: name\n }\n name\n gtin\n\n isVariantOf {\n productGroupID\n name\n }\n\n image {\n url\n alternateName\n }\n\n brand {\n name\n }\n\n offers {\n lowPrice\n lowPriceWithTaxes\n offers {\n availability\n price\n listPrice\n listPriceWithTaxes\n quantity\n seller {\n identifier\n }\n }\n }\n\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n\n advertisement {\n adId\n adResponseId\n }\n }\n'
): typeof import('./graphql').ProductSummary_ProductFragmentDoc
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index b3d289130b..f61acb82d9 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -116,6 +116,20 @@ export type Address = {
street: Maybe
}
+/** Advertisement information about a specific product in a campaign */
+export type Advertisement = {
+ /** Cost of the action, usually Cost Per Click. */
+ actionCost: Scalars['Float']['output']
+ /** Advertiser ID of the product. */
+ adId: Scalars['String']['output']
+ /** Advertiser Request ID. */
+ adRequestId: Scalars['String']['output']
+ /** Advertiser Response ID. */
+ adResponseId: Scalars['String']['output']
+ /** Campaign ID. */
+ campaignId: Scalars['String']['output']
+}
+
export type AvailableDeliveryWindows = {
/** Available delivery window end date in UTC */
endDateUtc: Maybe
@@ -901,6 +915,8 @@ export type StorePerson = {
export type StoreProduct = {
/** Array of additional properties. */
additionalProperty: Array
+ /** Advertisement information about the product. */
+ advertisement: Maybe
/** Aggregate ratings data. */
aggregateRating: StoreAggregateRating
/** Product brand. */
@@ -1123,6 +1139,7 @@ export type ProductSummary_ProductFragment = {
value: any
valueReference: any
}>
+ advertisement: { adId: string; adResponseId: string } | null
}
type Filter_Facets_StoreFacetBoolean_Fragment = {
@@ -1433,6 +1450,7 @@ export type ClientManyProductsQueryQuery = {
value: any
valueReference: any
}>
+ advertisement: { adId: string; adResponseId: string } | null
}
}>
}
@@ -1560,6 +1578,7 @@ export type ClientSearchSuggestionsQueryQuery = {
value: any
valueReference: any
}>
+ advertisement: { adId: string; adResponseId: string } | null
}>
}
products: { pageInfo: { totalCount: number } }
@@ -1690,6 +1709,10 @@ export const ProductSummary_ProductFragmentDoc = new TypedDocumentString(
value
valueReference
}
+ advertisement {
+ adId
+ adResponseId
+ }
}
`,
{ fragmentName: 'ProductSummary_product' }
@@ -2051,7 +2074,7 @@ export const SubscribeToNewsletterDocument = {
export const ClientManyProductsQueryDocument = {
__meta__: {
operationName: 'ClientManyProductsQuery',
- operationHash: '99012563e9885c3b27a716ca212a2c317e7ec12f',
+ operationHash: 'ad2eb78cfccb9dbd5a9f2d1e150cc70fea5da99a',
},
} as unknown as TypedDocumentString<
ClientManyProductsQueryQuery,
@@ -2078,7 +2101,7 @@ export const ClientProductQueryDocument = {
export const ClientSearchSuggestionsQueryDocument = {
__meta__: {
operationName: 'ClientSearchSuggestionsQuery',
- operationHash: '71809c86cb940861f01bcc57dbaf57e6f41cb378',
+ operationHash: '4d9f934764d8578aea08673b8ba57e8bf738f534',
},
} as unknown as TypedDocumentString<
ClientSearchSuggestionsQueryQuery,
diff --git a/packages/core/faststore.config.default.js b/packages/core/faststore.config.default.js
index 842bfad166..7e8e34eedd 100644
--- a/packages/core/faststore.config.default.js
+++ b/packages/core/faststore.config.default.js
@@ -19,6 +19,7 @@ module.exports = {
subDomainPrefix: ['www'],
environment: 'vtexcommercestable',
hideUnavailableItems: false,
+ showSponsored: false,
incrementAddress: true,
},
diff --git a/packages/core/src/components/product/ProductCard/ProductCard.tsx b/packages/core/src/components/product/ProductCard/ProductCard.tsx
index d9aa1e034e..86b079fffa 100644
--- a/packages/core/src/components/product/ProductCard/ProductCard.tsx
+++ b/packages/core/src/components/product/ProductCard/ProductCard.tsx
@@ -77,6 +77,7 @@ function ProductCard({
sku,
isVariantOf: { name },
image: [img],
+ advertisement,
offers: {
lowPrice,
lowPriceWithTaxes,
@@ -106,12 +107,21 @@ function ProductCard({
const hasDiscount = spotPrice <= listPrice
+ const advertisementDataAttributes = advertisement
+ ? {
+ 'data-van-res-id': advertisement.adResponseId,
+ 'data-van-aid': advertisement.adId,
+ 'data-van-prod-name': name,
+ }
+ : {}
+
return (
@@ -189,6 +199,11 @@ export const fragment = gql(`
value
valueReference
}
+
+ advertisement {
+ adId
+ adResponseId
+ }
}
`)
diff --git a/packages/core/src/server/options.ts b/packages/core/src/server/options.ts
index b40e7e3654..c75ccab9f8 100644
--- a/packages/core/src/server/options.ts
+++ b/packages/core/src/server/options.ts
@@ -8,6 +8,7 @@ export const apiOptions: APIOptions = {
environment: storeConfig.api.environment as APIOptions['environment'],
subDomainPrefix: storeConfig.api.subDomainPrefix ?? ['www'],
hideUnavailableItems: storeConfig.api.hideUnavailableItems,
+ showSponsored: storeConfig.api.showSponsored,
simulationBehavior: (storeConfig.api as Record)
.simulationBehavior,
incrementAddress: storeConfig.api.incrementAddress,
From 7f082b44a4b4a5f79afc98b0c9803237feefd2e4 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 1 Oct 2024 17:29:41 +0000
Subject: [PATCH 066/154] [no ci] Release: 3.0.117
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index b0850aae08..cb901023b4 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.116",
+ "version": "3.0.117",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.116",
+ "@faststore/api": "^3.0.117",
"@faststore/sdk": "^3.0.116",
"@faststore/ui": "^3.0.116",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index 3cd50b4eb9..d005286a82 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.116",
+ "version": "3.0.117",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 48dfd4804f..209f6efcf6 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.116",
+ "version": "3.0.117",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 3029c1dae0..e5580d9eb0 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.116 linux-x64 node-v18.20.4
+@faststore/cli/3.0.117 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.116/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index ae5fc70d48..4a74fac73e 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.116",
+ "version": "3.0.117",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.116",
+ "@faststore/core": "^3.0.117",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index d0a29585ba..bc77348ec6 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.116",
+ "version": "3.0.117",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.116",
+ "@faststore/api": "^3.0.117",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
"@faststore/lighthouse": "^3.0.116",
From 1730e2bfe92ebb03f5270358abdbfcf71065e0b0 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Wed, 2 Oct 2024 18:04:57 -0300
Subject: [PATCH 067/154] Refactor import paths to use discovery.config (#2486)
Once we're moving to use monorepo on store repository, the faststore
will manages one module called discovery. So this PR rename all config
file from `faststore.config` to `discovery.config` but keeping
compatibly with the legacy name.
---
packages/core/README.md | 8 ++++----
packages/core/cypress/global.js | 2 +-
packages/core/cypress/integration/a11y.test.js | 2 +-
.../core/cypress/integration/analytics.test.js | 2 +-
packages/core/cypress/integration/cart.test.js | 2 +-
packages/core/cypress/integration/plp.test.js | 2 +-
.../core/cypress/integration/search.test.js | 2 +-
packages/core/cypress/integration/seo.test.js | 2 +-
...g.default.js => discovery.config.default.js} | 0
packages/core/discovery.config.js | 17 +++++++++++++++++
packages/core/faststore.config.js | 11 -----------
packages/core/lighthouserc.js | 2 +-
packages/core/next-seo.config.ts | 2 +-
packages/core/next.config.js | 2 +-
.../ThirdPartyScripts/ThirdPartyScripts.tsx | 4 ++--
.../src/components/ThirdPartyScripts/vtex.tsx | 2 +-
.../core/src/components/cms/GlobalSections.tsx | 2 +-
.../templates/LandingPage/LandingPage.tsx | 2 +-
.../ProductListingPage/ProductListingPage.tsx | 2 +-
packages/core/src/components/ui/Image/loader.ts | 2 +-
packages/core/src/pages/[...slug].tsx | 2 +-
packages/core/src/pages/[slug]/p.tsx | 2 +-
packages/core/src/pages/_document.tsx | 2 +-
packages/core/src/pages/account.tsx | 2 +-
packages/core/src/pages/api/preview.ts | 2 +-
packages/core/src/pages/checkout.tsx | 2 +-
packages/core/src/pages/index.tsx | 2 +-
packages/core/src/pages/login.tsx | 2 +-
packages/core/src/pages/s.tsx | 2 +-
packages/core/src/sdk/analytics/index.tsx | 2 +-
.../src/sdk/analytics/platform/vtex/search.ts | 2 +-
packages/core/src/sdk/cart/index.ts | 2 +-
packages/core/src/sdk/cart/useCheckoutButton.ts | 2 +-
packages/core/src/sdk/session/index.ts | 2 +-
packages/core/src/server/cms/index.ts | 2 +-
packages/core/src/server/cms/pdp.ts | 2 +-
packages/core/src/server/cms/plp.ts | 2 +-
packages/core/src/server/options.ts | 2 +-
packages/core/test/server/index.test.ts | 2 +-
39 files changed, 57 insertions(+), 51 deletions(-)
rename packages/core/{faststore.config.default.js => discovery.config.default.js} (100%)
create mode 100644 packages/core/discovery.config.js
delete mode 100644 packages/core/faststore.config.js
diff --git a/packages/core/README.md b/packages/core/README.md
index 491cadb3e2..b652cf18bc 100644
--- a/packages/core/README.md
+++ b/packages/core/README.md
@@ -56,8 +56,8 @@ A quick look at the top-level files and directories you'll see in a this NextJS
├── codegen.ts
├── cypress
├── cypress.config.ts
- ├── faststore.config.default.js
- ├── faststore.config.js
+ ├── discovery.config.default.js
+ ├── discovery.config.js
├── index.ts
├── jest.config.js
├── LICENSE
@@ -88,7 +88,7 @@ A quick look at the top-level files and directories you'll see in a this NextJS
7. **`tsconfig.json`**: The configuration file for the typescript compiler. This will statically analyze your code for errors and bugs before releasing them into production
-8. **`faststore.config.default.js`**: Configure your e-commerce platform, default sales channel etc.
+8. **`discovery.config.default.js`**: Configure your e-commerce platform, default sales channel etc.
9. **`@generated`**: Where TypeScript typings are generated for your GraphQL queries. You can use these files for strongly typing your App
@@ -196,7 +196,7 @@ The `cms/faststore` contains the `content-types.json` and `sections.json` files.
### CMS configs
-It's possible to change the CMS tenant and workspace at `faststore.config.default.js`.
+It's possible to change the CMS tenant and workspace at `discovery.config.default.js`.
## 🎓 Learning the Frameworks
diff --git a/packages/core/cypress/global.js b/packages/core/cypress/global.js
index 62fd6b7a4e..55010bcb28 100644
--- a/packages/core/cypress/global.js
+++ b/packages/core/cypress/global.js
@@ -1,4 +1,4 @@
-import storeConfig from '../faststore.config'
+import storeConfig from '../discovery.config'
export const { pages } = storeConfig.cypress
diff --git a/packages/core/cypress/integration/a11y.test.js b/packages/core/cypress/integration/a11y.test.js
index 19b4bc07c9..48b0b0653f 100644
--- a/packages/core/cypress/integration/a11y.test.js
+++ b/packages/core/cypress/integration/a11y.test.js
@@ -4,7 +4,7 @@
* Cypress tests for a11y (accessibility)
*/
-import { cypress } from '../../faststore.config'
+import { cypress } from '../../discovery.config'
const { pages } = cypress
diff --git a/packages/core/cypress/integration/analytics.test.js b/packages/core/cypress/integration/analytics.test.js
index d1e6d60adc..b1de222ca6 100644
--- a/packages/core/cypress/integration/analytics.test.js
+++ b/packages/core/cypress/integration/analytics.test.js
@@ -4,7 +4,7 @@
* Cypress tests for testing the Analytics module
*/
-import { cypress } from '../../faststore.config'
+import { cypress } from '../../discovery.config'
import { options } from '../global'
const { pages } = cypress
diff --git a/packages/core/cypress/integration/cart.test.js b/packages/core/cypress/integration/cart.test.js
index e6f576e0ce..93c6176226 100644
--- a/packages/core/cypress/integration/cart.test.js
+++ b/packages/core/cypress/integration/cart.test.js
@@ -5,7 +5,7 @@
*/
import { options } from '../global'
-import { cypress } from '../../faststore.config'
+import { cypress } from '../../discovery.config'
const { pages } = cypress
diff --git a/packages/core/cypress/integration/plp.test.js b/packages/core/cypress/integration/plp.test.js
index 6f76a69629..6e4e0dcfaf 100644
--- a/packages/core/cypress/integration/plp.test.js
+++ b/packages/core/cypress/integration/plp.test.js
@@ -5,7 +5,7 @@
*/
import { options } from '../global'
-import { cypress } from '../../faststore.config'
+import { cypress } from '../../discovery.config'
const { pages } = cypress
diff --git a/packages/core/cypress/integration/search.test.js b/packages/core/cypress/integration/search.test.js
index da28fce039..3714497c95 100644
--- a/packages/core/cypress/integration/search.test.js
+++ b/packages/core/cypress/integration/search.test.js
@@ -5,7 +5,7 @@
*/
import { options } from '../global'
-import { cypress } from '../../faststore.config'
+import { cypress } from '../../discovery.config'
const { pages } = cypress
diff --git a/packages/core/cypress/integration/seo.test.js b/packages/core/cypress/integration/seo.test.js
index c126cfebc7..6e29e60950 100644
--- a/packages/core/cypress/integration/seo.test.js
+++ b/packages/core/cypress/integration/seo.test.js
@@ -6,7 +6,7 @@
* TODO: Improve structured data validaton by actually using schema.org's schemas
*/
-import { cypress, storeUrl } from '../../faststore.config'
+import { cypress, storeUrl } from '../../discovery.config'
import { options } from '../global'
const { pages } = cypress
diff --git a/packages/core/faststore.config.default.js b/packages/core/discovery.config.default.js
similarity index 100%
rename from packages/core/faststore.config.default.js
rename to packages/core/discovery.config.default.js
diff --git a/packages/core/discovery.config.js b/packages/core/discovery.config.js
new file mode 100644
index 0000000000..83530789aa
--- /dev/null
+++ b/packages/core/discovery.config.js
@@ -0,0 +1,17 @@
+const defaultConfig = require('./discovery.config.default')
+const deepmerge = require('deepmerge')
+
+let starterConfig
+
+try {
+ starterConfig = require('./src/customizations/discovery.config')
+} catch (e) {
+ starterConfig = require('./src/customizations/faststore.config')
+}
+
+/**
+ * @type {typeof defaultConfig & Record}
+ * */
+const finalConfig = deepmerge(defaultConfig, starterConfig)
+
+module.exports = finalConfig
diff --git a/packages/core/faststore.config.js b/packages/core/faststore.config.js
deleted file mode 100644
index 0081771a3d..0000000000
--- a/packages/core/faststore.config.js
+++ /dev/null
@@ -1,11 +0,0 @@
-const defaultConfig = require('./faststore.config.default')
-const starterConfig = require('./src/customizations/faststore.config')
-
-const deepmerge = require('deepmerge')
-
-/**
- * @type {typeof defaultConfig & Record}
- * */
-const finalConfig = deepmerge(defaultConfig, starterConfig)
-
-module.exports = finalConfig
diff --git a/packages/core/lighthouserc.js b/packages/core/lighthouserc.js
index d3b5e649c9..5e180bbb5c 100644
--- a/packages/core/lighthouserc.js
+++ b/packages/core/lighthouserc.js
@@ -1,6 +1,6 @@
const lhConfig = require('@faststore/lighthouse').default
-const { lighthouse: lh } = require('./faststore.config')
+const { lighthouse: lh } = require('./discovery.config')
module.exports = lhConfig({
urls: Object.values(lh.pages),
diff --git a/packages/core/next-seo.config.ts b/packages/core/next-seo.config.ts
index d6c0066d51..3dbf19b896 100644
--- a/packages/core/next-seo.config.ts
+++ b/packages/core/next-seo.config.ts
@@ -1,5 +1,5 @@
import { DefaultSeoProps } from 'next-seo'
-import storeConfig from './faststore.config'
+import storeConfig from './discovery.config'
const buildTime = new Date().toISOString()
diff --git a/packages/core/next.config.js b/packages/core/next.config.js
index 59e99b265a..ba1e674bc5 100644
--- a/packages/core/next.config.js
+++ b/packages/core/next.config.js
@@ -1,6 +1,6 @@
// @ts-check
const path = require('path')
-const storeConfig = require('./faststore.config')
+const storeConfig = require('./discovery.config')
/**
* @type {import('next').NextConfig}
diff --git a/packages/core/src/components/ThirdPartyScripts/ThirdPartyScripts.tsx b/packages/core/src/components/ThirdPartyScripts/ThirdPartyScripts.tsx
index 35dd756704..fdb2ea76bc 100644
--- a/packages/core/src/components/ThirdPartyScripts/ThirdPartyScripts.tsx
+++ b/packages/core/src/components/ThirdPartyScripts/ThirdPartyScripts.tsx
@@ -1,6 +1,6 @@
import { Partytown } from '@builder.io/partytown/react'
+import storeConfig from 'discovery.config'
import OverrideComponents from 'src/customizations/src/GlobalOverrides'
-import storeConfig from '../../../faststore.config'
import GoogleTagManager, { GTM_DEBUG_QUERY_STRING } from './GoogleTagManager'
import VTEX from './vtex'
@@ -11,7 +11,7 @@ const includeVTEX = storeConfig.platform === 'vtex'
if (process.env.NODE_ENV === 'development' && !includeGTM) {
console.warn(
- 'No GTM container id found. Check the analytics section on your faststore.config.js file for enhanced observability of your store.'
+ 'No GTM container id found. Check the analytics section on your discovery.config.js file for enhanced observability of your store.'
)
}
diff --git a/packages/core/src/components/ThirdPartyScripts/vtex.tsx b/packages/core/src/components/ThirdPartyScripts/vtex.tsx
index 7b52e7265a..6b022ac847 100644
--- a/packages/core/src/components/ThirdPartyScripts/vtex.tsx
+++ b/packages/core/src/components/ThirdPartyScripts/vtex.tsx
@@ -1,4 +1,4 @@
-import storeConfig from '../../../faststore.config'
+import storeConfig from '../../../discovery.config'
function VTEX() {
return (
diff --git a/packages/core/src/components/cms/GlobalSections.tsx b/packages/core/src/components/cms/GlobalSections.tsx
index 155443aa23..342d057dbd 100644
--- a/packages/core/src/components/cms/GlobalSections.tsx
+++ b/packages/core/src/components/cms/GlobalSections.tsx
@@ -1,5 +1,5 @@
import { Locator, Section } from '@vtex/client-cms'
-import storeConfig from 'faststore.config'
+import storeConfig from 'discovery.config'
import type { ComponentType } from 'react'
import { PropsWithChildren } from 'react'
import CUSTOM_COMPONENTS from 'src/customizations/src/components'
diff --git a/packages/core/src/components/templates/LandingPage/LandingPage.tsx b/packages/core/src/components/templates/LandingPage/LandingPage.tsx
index a5d92f4ab1..5d65d20f1d 100644
--- a/packages/core/src/components/templates/LandingPage/LandingPage.tsx
+++ b/packages/core/src/components/templates/LandingPage/LandingPage.tsx
@@ -17,7 +17,7 @@ import PageProvider from 'src/sdk/overrides/PageProvider'
import type { PageContentType } from 'src/server/cms'
import { getPage } from 'src/server/cms'
-import storeConfig from 'faststore.config'
+import storeConfig from 'discovery.config'
/* A list of components that can be used in the CMS. */
const COMPONENTS: Record> = {
diff --git a/packages/core/src/components/templates/ProductListingPage/ProductListingPage.tsx b/packages/core/src/components/templates/ProductListingPage/ProductListingPage.tsx
index c814961074..9918676f5d 100644
--- a/packages/core/src/components/templates/ProductListingPage/ProductListingPage.tsx
+++ b/packages/core/src/components/templates/ProductListingPage/ProductListingPage.tsx
@@ -14,7 +14,7 @@ import { useApplySearchState } from 'src/sdk/search/state'
import { PLPContentType } from 'src/server/cms/plp'
-import storeConfig from '../../../../faststore.config'
+import storeConfig from '../../../../discovery.config'
import ProductListing from './ProductListing'
export type ProductListingPageProps = {
diff --git a/packages/core/src/components/ui/Image/loader.ts b/packages/core/src/components/ui/Image/loader.ts
index 299a88ce73..f6d98bd23f 100644
--- a/packages/core/src/components/ui/Image/loader.ts
+++ b/packages/core/src/components/ui/Image/loader.ts
@@ -1,4 +1,4 @@
-import storeConfig from 'faststore.config'
+import storeConfig from 'discovery.config'
import { ImageLoaderProps } from 'next/image'
const THUMBOR_SERVER = `https://${storeConfig.api.storeId}.vtexassets.com`
diff --git a/packages/core/src/pages/[...slug].tsx b/packages/core/src/pages/[...slug].tsx
index 77af7c1347..3ced1621d8 100644
--- a/packages/core/src/pages/[...slug].tsx
+++ b/packages/core/src/pages/[...slug].tsx
@@ -1,5 +1,5 @@
import { isNotFoundError } from '@faststore/api'
-import storeConfig from 'faststore.config'
+import storeConfig from 'discovery.config'
import type { GetStaticPaths, GetStaticProps } from 'next'
import { gql } from '@generated'
diff --git a/packages/core/src/pages/[slug]/p.tsx b/packages/core/src/pages/[slug]/p.tsx
index 5634bdb5a1..daa5c76267 100644
--- a/packages/core/src/pages/[slug]/p.tsx
+++ b/packages/core/src/pages/[slug]/p.tsx
@@ -24,7 +24,7 @@ import CUSTOM_COMPONENTS from 'src/customizations/src/components'
import { useSession } from 'src/sdk/session'
import { execute } from 'src/server'
-import storeConfig from 'faststore.config'
+import storeConfig from 'discovery.config'
import GlobalSections, {
GlobalSectionsData,
getGlobalSectionsData,
diff --git a/packages/core/src/pages/_document.tsx b/packages/core/src/pages/_document.tsx
index b0da6af83a..4270bc162c 100644
--- a/packages/core/src/pages/_document.tsx
+++ b/packages/core/src/pages/_document.tsx
@@ -1,5 +1,5 @@
import { Head, Html, Main, NextScript } from 'next/document'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
import ThirdPartyScripts from 'src/components/ThirdPartyScripts'
import { WebFonts } from 'src/customizations/src/GlobalOverrides'
diff --git a/packages/core/src/pages/account.tsx b/packages/core/src/pages/account.tsx
index f9a34e3fc9..f0dba4ced9 100644
--- a/packages/core/src/pages/account.tsx
+++ b/packages/core/src/pages/account.tsx
@@ -1,7 +1,7 @@
import { useEffect } from 'react'
import { NextSeo } from 'next-seo'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
import GlobalSections, {
GlobalSectionsData,
getGlobalSectionsData,
diff --git a/packages/core/src/pages/api/preview.ts b/packages/core/src/pages/api/preview.ts
index 294513f3b8..25c3318800 100644
--- a/packages/core/src/pages/api/preview.ts
+++ b/packages/core/src/pages/api/preview.ts
@@ -1,7 +1,7 @@
import type { NextApiHandler, NextApiRequest } from 'next'
import { clientCMS } from 'src/server/cms'
-import { previewRedirects } from '../../../faststore.config'
+import { previewRedirects } from '../../../discovery.config'
type Settings = {
seo: {
diff --git a/packages/core/src/pages/checkout.tsx b/packages/core/src/pages/checkout.tsx
index be92e3e578..a99d78889e 100644
--- a/packages/core/src/pages/checkout.tsx
+++ b/packages/core/src/pages/checkout.tsx
@@ -1,7 +1,7 @@
import { useEffect } from 'react'
import { NextSeo } from 'next-seo'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
import GlobalSections, {
GlobalSectionsData,
getGlobalSectionsData,
diff --git a/packages/core/src/pages/index.tsx b/packages/core/src/pages/index.tsx
index 7863ec3c4a..53a6c4489b 100644
--- a/packages/core/src/pages/index.tsx
+++ b/packages/core/src/pages/index.tsx
@@ -21,7 +21,7 @@ import GlobalSections, {
} from 'src/components/cms/GlobalSections'
import PageProvider from 'src/sdk/overrides/PageProvider'
import { getDynamicContent } from 'src/utils/dynamicContent'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
/* A list of components that can be used in the CMS. */
const COMPONENTS: Record> = {
diff --git a/packages/core/src/pages/login.tsx b/packages/core/src/pages/login.tsx
index 663b085966..180a9d12ee 100644
--- a/packages/core/src/pages/login.tsx
+++ b/packages/core/src/pages/login.tsx
@@ -2,7 +2,7 @@ import { useEffect } from 'react'
import { NextSeo } from 'next-seo'
import type { ComponentType } from 'react'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
import GlobalSections, {
GlobalSectionsData,
getGlobalSectionsData,
diff --git a/packages/core/src/pages/s.tsx b/packages/core/src/pages/s.tsx
index 5d5b370ad3..6eeeffca3b 100644
--- a/packages/core/src/pages/s.tsx
+++ b/packages/core/src/pages/s.tsx
@@ -15,7 +15,7 @@ import { ITEMS_PER_PAGE } from 'src/constants'
import { useApplySearchState } from 'src/sdk/search/state'
import { Locator } from '@vtex/client-cms'
-import storeConfig from 'faststore.config'
+import storeConfig from 'discovery.config'
import GlobalSections, {
getGlobalSectionsData,
GlobalSectionsData,
diff --git a/packages/core/src/sdk/analytics/index.tsx b/packages/core/src/sdk/analytics/index.tsx
index aeb2aae619..206d414b80 100644
--- a/packages/core/src/sdk/analytics/index.tsx
+++ b/packages/core/src/sdk/analytics/index.tsx
@@ -1,7 +1,7 @@
import type { AnalyticsEvent } from '@faststore/sdk'
import { useAnalyticsEvent } from '@faststore/sdk'
-import storeConfig from '../../../faststore.config'
+import storeConfig from '../../../discovery.config'
if (typeof window !== 'undefined') {
window.dataLayer = window.dataLayer ?? []
diff --git a/packages/core/src/sdk/analytics/platform/vtex/search.ts b/packages/core/src/sdk/analytics/platform/vtex/search.ts
index 57ec3e79f3..ded080d99e 100644
--- a/packages/core/src/sdk/analytics/platform/vtex/search.ts
+++ b/packages/core/src/sdk/analytics/platform/vtex/search.ts
@@ -7,7 +7,7 @@ import type {
SearchSelectItemEvent,
} from '../../types'
-import config from '../../../../../faststore.config'
+import config from '../../../../../discovery.config'
import { getCookie } from '../../../../utils/getCookie'
const THIRTY_MINUTES_S = 30 * 60
diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts
index 7764237ec0..ba8ea163bd 100644
--- a/packages/core/src/sdk/cart/index.ts
+++ b/packages/core/src/sdk/cart/index.ts
@@ -11,7 +11,7 @@ import type {
ValidateCartMutationMutationVariables,
} from '@generated/graphql'
-import storeConfig from '../../../faststore.config'
+import storeConfig from '../../../discovery.config'
import { request } from '../graphql/request'
import { sessionStore } from '../session'
import { createValidationStore, useStore } from '../useStore'
diff --git a/packages/core/src/sdk/cart/useCheckoutButton.ts b/packages/core/src/sdk/cart/useCheckoutButton.ts
index fabaa8c62c..68de3f20bf 100644
--- a/packages/core/src/sdk/cart/useCheckoutButton.ts
+++ b/packages/core/src/sdk/cart/useCheckoutButton.ts
@@ -1,4 +1,4 @@
-import storeConfig from '../../../faststore.config'
+import storeConfig from '../../../discovery.config'
import { useCart } from './index'
export const useCheckoutButton = () => {
diff --git a/packages/core/src/sdk/session/index.ts b/packages/core/src/sdk/session/index.ts
index aa5c45153e..080db093e0 100644
--- a/packages/core/src/sdk/session/index.ts
+++ b/packages/core/src/sdk/session/index.ts
@@ -7,7 +7,7 @@ import type {
ValidateSessionMutation,
ValidateSessionMutationVariables,
} from '@generated/graphql'
-import storeConfig from '../../../faststore.config'
+import storeConfig from '../../../discovery.config'
import { cartStore } from '../cart'
import { request } from '../graphql/request'
import { createValidationStore, useStore } from '../useStore'
diff --git a/packages/core/src/server/cms/index.ts b/packages/core/src/server/cms/index.ts
index 4cdf774313..3895b32f26 100644
--- a/packages/core/src/server/cms/index.ts
+++ b/packages/core/src/server/cms/index.ts
@@ -3,7 +3,7 @@ import ClientCMS from '@vtex/client-cms'
import MissingContentError from 'src/sdk/error/MissingContentError'
import MultipleContentError from 'src/sdk/error/MultipleContentError'
-import config from '../../../faststore.config'
+import config from '../../../discovery.config'
export type Options =
| Locator
diff --git a/packages/core/src/server/cms/pdp.ts b/packages/core/src/server/cms/pdp.ts
index 673d87fe86..7c2b5e255b 100644
--- a/packages/core/src/server/cms/pdp.ts
+++ b/packages/core/src/server/cms/pdp.ts
@@ -3,7 +3,7 @@ import type { ContentData, Locator } from '@vtex/client-cms'
import MissingContentError from 'src/sdk/error/MissingContentError'
import { findBestPDPTemplate } from 'src/utils/multipleTemplates'
import { Options, getCMSPage, getPage } from '.'
-import config from '../../../faststore.config'
+import config from '../../../discovery.config'
type PDPSettings = {
settings: {
diff --git a/packages/core/src/server/cms/plp.ts b/packages/core/src/server/cms/plp.ts
index 80c8f06d17..4b506caf03 100644
--- a/packages/core/src/server/cms/plp.ts
+++ b/packages/core/src/server/cms/plp.ts
@@ -5,7 +5,7 @@ import {
RewritesConfig,
findBestPLPTemplate,
} from 'src/utils/multipleTemplates'
-import config from '../../../faststore.config'
+import config from '../../../discovery.config'
import { Options, getCMSPage, getPage } from '../cms'
type PLPSettings = {
diff --git a/packages/core/src/server/options.ts b/packages/core/src/server/options.ts
index c75ccab9f8..0908c2409b 100644
--- a/packages/core/src/server/options.ts
+++ b/packages/core/src/server/options.ts
@@ -1,6 +1,6 @@
import type { Options as APIOptions } from '@faststore/api'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
export const apiOptions: APIOptions = {
platform: storeConfig.platform as APIOptions['platform'],
diff --git a/packages/core/test/server/index.test.ts b/packages/core/test/server/index.test.ts
index 10c0b7ea3c..3f2df20660 100644
--- a/packages/core/test/server/index.test.ts
+++ b/packages/core/test/server/index.test.ts
@@ -5,7 +5,7 @@ import {
getTypeDefsFromFolder,
getMergedSchema,
} from '../../src/server/generator/schema'
-import storeConfig from '../../faststore.config'
+import storeConfig from '../../discovery.config'
const TYPES = [
'StoreAggregateOffer',
From 9fc28dcd54860b270049321fc338fe7f93efeb15 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 2 Oct 2024 21:10:27 +0000
Subject: [PATCH 068/154] [no ci] Release: 3.0.118
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index d005286a82..d79fbd0c62 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.117",
+ "version": "3.0.118",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index e5580d9eb0..ecdea97c74 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.117 linux-x64 node-v18.20.4
+@faststore/cli/3.0.118 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.117/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 4a74fac73e..0841d18df3 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.117",
+ "version": "3.0.118",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.117",
+ "@faststore/core": "^3.0.118",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index bc77348ec6..de1c736ef8 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.117",
+ "version": "3.0.118",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 8ec05cb0c60e2696e57411536efc7f68f6104169 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Wed, 2 Oct 2024 19:10:54 -0300
Subject: [PATCH 069/154] Refactor import paths to use discovery.config (#2488)
## What's the purpose of this pull request?
## How it works?
## How to test it?
### Starters Deploy Preview
## References
## Checklist
You may erase this after checking them all :wink:
**PR Title and Commit Messages**
- [ ] PR title and commit messages follow the [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
- Available prefixes: `feat`, `fix`, `chore`, `docs`, `style`,
`refactor` and `test`
**PR Description**
- [ ] Added a label according to the PR goal - `breaking change`, `bug`,
`contributing`, `performance`, `documentation`..
**Dependencies**
- [ ] Committed the `yarn.lock` file when there were changes to the
packages
---
packages/cli/src/utils/directory.test.ts | 18 ++++++-----
packages/cli/src/utils/directory.ts | 16 ++++++++--
packages/cli/src/utils/generate.ts | 12 +++++++
packages/core/discovery.config.js | 9 +++++-
...aststore.config.js => discovery.config.js} | 0
yarn.lock | 31 ++-----------------
6 files changed, 47 insertions(+), 39 deletions(-)
rename packages/core/src/customizations/{faststore.config.js => discovery.config.js} (100%)
diff --git a/packages/cli/src/utils/directory.test.ts b/packages/cli/src/utils/directory.test.ts
index 718955efdb..c452f5d646 100644
--- a/packages/cli/src/utils/directory.test.ts
+++ b/packages/cli/src/utils/directory.test.ts
@@ -76,18 +76,20 @@ describe('withBasePath as the current dir `.`', () => {
})
describe('userStoreConfigFile', () => {
- it('returns the path of the user faststore.config file', () => {
+ it('returns the path of the user discovery.config file', () => {
const { userStoreConfigFile: userStoreConfigFileWithBase } = withBasePath(basePath)
- expect(pathsToMatch(userStoreConfigFileWithBase, './faststore.config.js')).toBe(true)
+ console.log('userStoreConfigFileWithBase', userStoreConfigFileWithBase);
+
+ expect(pathsToMatch(userStoreConfigFileWithBase, './discovery.config.js')).toBe(true)
})
})
describe('tmpStoreConfigFile', () => {
- it('returns the path of the faststore.config file in the customizations dir', () => {
+ it('returns the path of the discovery.config file in the customizations dir', () => {
const { tmpStoreConfigFile: tmpStoreConfigFileWithBase } = withBasePath(basePath)
- expect(pathsToMatch(tmpStoreConfigFileWithBase, './.faststore/src/customizations/faststore.config.js')).toBe(true)
+ expect(pathsToMatch(tmpStoreConfigFileWithBase, './.faststore/src/customizations/discovery.config.js')).toBe(true)
})
})
})
@@ -184,18 +186,18 @@ describe('withBasePath as an arbitrary dir', () => {
})
describe('userStoreConfigFile', () => {
- it('returns the path of the user faststore.config file', () => {
+ it('returns the path of the user discovery.config file', () => {
const { userStoreConfigFile: userStoreConfigFileWithBase } = withBasePath(basePath)
- expect(pathsToMatch(userStoreConfigFileWithBase, './src/__mocks__/store/faststore.config.js')).toBe(true)
+ expect(pathsToMatch(userStoreConfigFileWithBase, './src/__mocks__/store/discovery.config.js')).toBe(true)
})
})
describe('tmpStoreConfigFile', () => {
- it('returns the path of the faststore.config file in the customizations dir', () => {
+ it('returns the path of the discovery.config file in the customizations dir', () => {
const { tmpStoreConfigFile: tmpStoreConfigFileWithBase } = withBasePath(basePath)
- expect(pathsToMatch(tmpStoreConfigFileWithBase, './src/__mocks__/store/.faststore/src/customizations/faststore.config.js')).toBe(true)
+ expect(pathsToMatch(tmpStoreConfigFileWithBase, './src/__mocks__/store/.faststore/src/customizations/discovery.config.js')).toBe(true)
})
})
})
diff --git a/packages/cli/src/utils/directory.ts b/packages/cli/src/utils/directory.ts
index 2c711b63a4..fc7d2d217f 100644
--- a/packages/cli/src/utils/directory.ts
+++ b/packages/cli/src/utils/directory.ts
@@ -52,7 +52,8 @@ export const withBasePath = (basepath: string) => {
userSrcDir,
userThemesFileDir: path.join(userSrcDir, 'themes'),
userCMSDir: path.join(getRoot(), 'cms', 'faststore'),
- userStoreConfigFile: path.join(getRoot(), 'faststore.config.js'),
+ userLegacyStoreConfigFile: path.join(getRoot(), 'faststore.config.js'),
+ userStoreConfigFile: path.join(getRoot(), 'discovery.config.js'),
tmpSeoConfig: path.join(tmpDir, 'next-seo.config.ts'),
tmpFolderName,
@@ -61,7 +62,18 @@ export const withBasePath = (basepath: string) => {
tmpThemesCustomizationsFile: path.join(tmpDir, 'src', 'customizations', 'src', 'themes', 'index.scss'),
tmpCMSDir: path.join(tmpDir, 'cms', 'faststore'),
tmpCMSWebhookUrlsFile: path.join(tmpDir, 'cms-webhook-urls.json'),
- tmpStoreConfigFile: path.join(tmpDir, 'src', 'customizations', 'faststore.config.js'),
+ tmpLegacyStoreConfigFile: path.join(
+ tmpDir,
+ 'src',
+ 'customizations',
+ 'faststore.config.js'
+ ),
+ tmpStoreConfigFile: path.join(
+ tmpDir,
+ 'src',
+ 'customizations',
+ 'discovery.config.js'
+ ),
coreDir: getCorePackagePath(),
coreCMSDir: path.join(getCorePackagePath(), 'cms', 'faststore'),
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index 55f9ee6db0..8d724f6681 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -183,8 +183,10 @@ function copyUserStarterToCustomizations(basePath: string) {
const {
userSrcDir,
tmpCustomizationsSrcDir,
+ userLegacyStoreConfigFile,
userStoreConfigFile,
tmpStoreConfigFile,
+ tmpLegacyStoreConfigFile,
} = withBasePath(basePath)
try {
@@ -194,6 +196,16 @@ function copyUserStarterToCustomizations(basePath: string) {
if (existsSync(userStoreConfigFile)) {
copySync(userStoreConfigFile, tmpStoreConfigFile, { dereference: true })
+ } else if (existsSync(userLegacyStoreConfigFile)) {
+ copySync(userLegacyStoreConfigFile, tmpLegacyStoreConfigFile, {
+ dereference: true,
+ })
+ } else {
+ console.info(
+ `${chalk.blue(
+ 'info'
+ )} - No store config file was found in the root directory`
+ )
}
console.log(`${chalk.green('success')} - Starter files copied`)
diff --git a/packages/core/discovery.config.js b/packages/core/discovery.config.js
index 83530789aa..6a9a4649eb 100644
--- a/packages/core/discovery.config.js
+++ b/packages/core/discovery.config.js
@@ -6,7 +6,14 @@ let starterConfig
try {
starterConfig = require('./src/customizations/discovery.config')
} catch (e) {
- starterConfig = require('./src/customizations/faststore.config')
+ try {
+ starterConfig = require('./src/customizations/faststore.config')
+ } catch (e) {
+ console.error(
+ "Failed to load './src/customizations/faststore.config'. Please ensure the file exists."
+ )
+ throw e // Re-throw the error after logging
+ }
}
/**
diff --git a/packages/core/src/customizations/faststore.config.js b/packages/core/src/customizations/discovery.config.js
similarity index 100%
rename from packages/core/src/customizations/faststore.config.js
rename to packages/core/src/customizations/discovery.config.js
diff --git a/yarn.lock b/yarn.lock
index 0fecf27d82..f5ead87a1d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -16656,7 +16656,7 @@ string-similarity@^4.0.1:
resolved "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz"
integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==
-"string-width-cjs@npm:string-width@^4.2.0":
+"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -16674,15 +16674,6 @@ string-width@^1.0.1:
is-fullwidth-code-point "^1.0.0"
strip-ansi "^3.0.0"
-"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
- version "4.2.3"
- resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
- integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.1"
-
string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"
@@ -16777,7 +16768,7 @@ stringify-entities@^4.0.0:
character-entities-html4 "^2.0.0"
character-entities-legacy "^3.0.0"
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -16805,13 +16796,6 @@ strip-ansi@^5.1.0:
dependencies:
ansi-regex "^4.1.0"
-strip-ansi@^6.0.0, strip-ansi@^6.0.1:
- version "6.0.1"
- resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
- integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
- dependencies:
- ansi-regex "^5.0.1"
-
strip-ansi@^7.0.1, strip-ansi@^7.1.0:
version "7.1.0"
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
@@ -18498,7 +18482,7 @@ wordwrap@^1.0.0:
resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
+"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
version "7.0.0"
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -18532,15 +18516,6 @@ wrap-ansi@^6.0.1, wrap-ansi@^6.2.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
-wrap-ansi@^7.0.0:
- version "7.0.0"
- resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
wrap-ansi@^8.1.0:
version "8.1.0"
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz"
From ca6a0f31bf3c3ff791d3e5e14f3a3a2822511e74 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 2 Oct 2024 22:16:32 +0000
Subject: [PATCH 070/154] [no ci] Release: 3.0.119
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index d79fbd0c62..897e77070b 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.118",
+ "version": "3.0.119",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index ecdea97c74..d7707edbf1 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.118 linux-x64 node-v18.20.4
+@faststore/cli/3.0.119 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.118/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 0841d18df3..38b173122c 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.118",
+ "version": "3.0.119",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.118",
+ "@faststore/core": "^3.0.119",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index de1c736ef8..027051342d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.118",
+ "version": "3.0.119",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 2d78a44568ee565aaca39ff104c532c5600da9fc Mon Sep 17 00:00:00 2001
From: ataideverton <56592231+ataideverton@users.noreply.github.com>
Date: Thu, 3 Oct 2024 10:27:35 -0300
Subject: [PATCH 071/154] feat: Adds B2B Customer ID (#2462)
## What's the purpose of this pull request?
As we develop more b2b features inside the `faststore`, we need to be
able to identify when a customer is a `b2b` customer and if he is member
of an Organization (Normally refered to as a Buyer Organization). This
PR addresses the first step to do so.
For that, we added a `b2b` section to the `session` hook and mutation
and inside of it, a `customerId` field, that informs us of what
BuyerOrganization that customer is a part of.
Why we decided to do this inside FastStore and not as an override or
extra request: The information comes from the same `sessions` api
`Faststore` already uses, we just need to bring an additional field.
This will not impact B2C stores, for them, it will only be an empty
objetct
## How it works?
On a B2B account that fulfills several conditions (Some specific apps,
some specific versions of apps, a feature flag), the `sessions` api will
return the `customerId` field on the `authentication` namespace and that
will be inserted on the internal session object, like so:
Account: `b2bfaststoredev`:
![image](https://github.com/user-attachments/assets/88ed84f8-0b62-406c-8596-931e09ca799d)
On a B2C account, or any account that doesn't fit all the criteria, the
field will be empty and should not interfere with anything.
Account: `storeframework`
![image](https://github.com/user-attachments/assets/81dbb28c-7561-4bf9-ae56-f3a57846e9c6)
## How to test it?
To make validation easier, we have 2 previews (You will need to be
logged in to see it working, as they are previews, you will need to edit
the cookie):
[B2B Preview - Session will print on console every few seconds, only on
the /self-management
page](https://sfj-45b4ae2--b2bfaststoredev.preview.vtex.app/self-management)
[B2C Preview - Has a button on navbar to print the session on
console](https://sfj-342a275--starter.preview.vtex.app/)
The button and the `faststore/cli` dependency are the only changes here
The PRs for these previews:
[B2B](https://github.com/vtex-sites/b2bfaststoredev.store/pull/91)
[B2C](https://github.com/vtex-sites/starter.store/pull/509)
---
packages/api/src/__generated__/schema.ts | 13 ++++++++++
.../platforms/vtex/clients/commerce/index.ts | 2 +-
.../vtex/clients/commerce/types/Session.ts | 5 ++++
.../vtex/resolvers/validateSession.ts | 24 +++++++++++--------
packages/api/src/typeDefs/session.graphql | 16 +++++++++++++
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 15 +++++++++++-
packages/core/discovery.config.default.js | 1 +
packages/core/src/sdk/session/index.ts | 3 +++
packages/sdk/src/session/index.ts | 5 ++++
packages/sdk/test/session/index.test.tsx | 1 +
11 files changed, 75 insertions(+), 14 deletions(-)
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index bd53a4c46f..48e7356649 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -167,6 +167,10 @@ export type IShippingItem = {
seller: Scalars['String'];
};
+export type IStoreB2B = {
+ customerId: Scalars['String'];
+};
+
/** Shopping cart input. */
export type IStoreCart = {
/** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
@@ -289,6 +293,8 @@ export type IStoreSelectedFacet = {
export type IStoreSession = {
/** Session input address type. */
addressType?: Maybe;
+ /** Session input b2b. */
+ b2b?: Maybe;
/** Session input channel. */
channel?: Maybe;
/** Session input country. */
@@ -666,6 +672,11 @@ export type StoreAuthor = {
name: Scalars['String'];
};
+export type StoreB2B = {
+ __typename?: 'StoreB2B';
+ customerId: Scalars['String'];
+};
+
/** Brand of a given product. */
export type StoreBrand = {
__typename?: 'StoreBrand';
@@ -1111,6 +1122,8 @@ export type StoreSession = {
__typename?: 'StoreSession';
/** Session address type. */
addressType?: Maybe;
+ /** B2B Information. */
+ b2b?: Maybe;
/** Session channel. */
channel?: Maybe;
/** Session country. */
diff --git a/packages/api/src/platforms/vtex/clients/commerce/index.ts b/packages/api/src/platforms/vtex/clients/commerce/index.ts
index 3630a8d170..50e243da5a 100644
--- a/packages/api/src/platforms/vtex/clients/commerce/index.ts
+++ b/packages/api/src/platforms/vtex/clients/commerce/index.ts
@@ -333,7 +333,7 @@ export const VtexCommerce = (
params.set(
'items',
- 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol'
+ 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol,authentication.customerId,'
)
const headers: HeadersInit = withCookie({
diff --git a/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts b/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
index 3557f0c40d..9d2236e54a 100644
--- a/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
+++ b/packages/api/src/platforms/vtex/clients/commerce/types/Session.ts
@@ -8,6 +8,11 @@ export interface Namespaces {
store?: Store
checkout?: Checkout
public?: Public
+ authentication?: Authentication
+}
+
+export interface Authentication {
+ customerId: Value
}
export interface Value {
diff --git a/packages/api/src/platforms/vtex/resolvers/validateSession.ts b/packages/api/src/platforms/vtex/resolvers/validateSession.ts
index 87d28eef1a..01ad7ee778 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateSession.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateSession.ts
@@ -27,17 +27,18 @@ export const validateSession = async (
const [regionData, sessionData] = await Promise.all([
postalCode || geoCoordinates
? clients.commerce.checkout.region({
- postalCode,
- geoCoordinates,
- country,
- salesChannel,
- })
+ postalCode,
+ geoCoordinates,
+ country,
+ salesChannel,
+ })
: Promise.resolve(null),
clients.commerce.session(params.toString()).catch(() => null),
])
const profile = sessionData?.namespaces.profile ?? null
const store = sessionData?.namespaces.store ?? null
+ const authentication = sessionData?.namespaces.authentication ?? null
const region = regionData?.[0]
// Set seller only if it's inside a region
const seller = region?.sellers.find((seller) => channel.seller === seller.id)
@@ -55,13 +56,16 @@ export const validateSession = async (
seller: seller?.id,
hasOnlyDefaultSalesChannel: !store?.channel?.value
}),
+ b2b: {
+ customerId: authentication?.customerId?.value ?? ''
+ },
person: profile?.id
? {
- id: profile.id?.value ?? '',
- email: profile.email?.value ?? '',
- givenName: profile.firstName?.value ?? '',
- familyName: profile.lastName?.value ?? '',
- }
+ id: profile.id?.value ?? '',
+ email: profile.email?.value ?? '',
+ givenName: profile.firstName?.value ?? '',
+ familyName: profile.lastName?.value ?? '',
+ }
: null,
}
diff --git a/packages/api/src/typeDefs/session.graphql b/packages/api/src/typeDefs/session.graphql
index 5f8ab3cf76..dfb2a12e75 100644
--- a/packages/api/src/typeDefs/session.graphql
+++ b/packages/api/src/typeDefs/session.graphql
@@ -149,6 +149,18 @@ type StoreSession {
Session input person.
"""
person: StorePerson
+ """
+ B2B Information.
+ """
+ b2b: StoreB2B
+}
+
+type StoreB2B {
+ customerId: String!
+}
+
+input IStoreB2B {
+ customerId: String!
}
"""
@@ -191,4 +203,8 @@ input IStoreSession {
Session input person.
"""
person: IStorePerson
+ """
+ Session input b2b.
+ """
+ b2b: IStoreB2B
}
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index 415bcf1c7e..acc84a5177 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -52,7 +52,7 @@ const documents = {
types.ClientSearchSuggestionsQueryDocument,
'\n query ClientTopSearchSuggestionsQuery(\n $term: String!\n $selectedFacets: [IStoreSelectedFacet!]\n ) {\n ...ClientTopSearchSuggestions\n search(first: 5, term: $term, selectedFacets: $selectedFacets) {\n suggestions {\n terms {\n value\n }\n }\n }\n }\n':
types.ClientTopSearchSuggestionsQueryDocument,
- '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n }\n }\n':
+ '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n b2b {\n customerId\n }\n }\n }\n':
types.ValidateSessionDocument,
'\n query ClientShippingSimulationQuery(\n $postalCode: String!\n $country: String!\n $items: [IShippingItem!]!\n ) {\n ...ClientShippingSimulation\n shipping(items: $items, postalCode: $postalCode, country: $country) {\n logisticsInfo {\n slas {\n carrier\n price\n availableDeliveryWindows {\n startDateUtc\n endDateUtc\n price\n listPrice\n }\n shippingEstimate\n localizedEstimates\n }\n }\n address {\n city\n neighborhood\n state\n }\n }\n }\n':
types.ClientShippingSimulationQueryDocument,
@@ -182,7 +182,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n }\n }\n'
+ source: '\n mutation ValidateSession($session: IStoreSession!, $search: String!) {\n validateSession(session: $session, search: $search) {\n locale\n channel\n country\n addressType\n postalCode\n deliveryMode {\n deliveryChannel\n deliveryMethod\n deliveryWindow {\n startDate\n endDate\n }\n }\n geoCoordinates {\n latitude\n longitude\n }\n currency {\n code\n symbol\n }\n person {\n id\n email\n givenName\n familyName\n }\n b2b {\n customerId\n }\n }\n }\n'
): typeof import('./graphql').ValidateSessionDocument
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index f61acb82d9..feeba2639b 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -181,6 +181,10 @@ export type IShippingItem = {
seller: Scalars['String']['input']
}
+export type IStoreB2B = {
+ customerId: Scalars['String']['input']
+}
+
/** Shopping cart input. */
export type IStoreCart = {
/** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
@@ -303,6 +307,8 @@ export type IStoreSelectedFacet = {
export type IStoreSession = {
/** Session input address type. */
addressType: InputMaybe
+ /** Session input b2b. */
+ b2b: InputMaybe
/** Session input channel. */
channel: InputMaybe
/** Session input country. */
@@ -649,6 +655,10 @@ export type StoreAuthor = {
name: Scalars['String']['output']
}
+export type StoreB2B = {
+ customerId: Scalars['String']['output']
+}
+
/** Brand of a given product. */
export type StoreBrand = {
/** Brand name. */
@@ -1056,6 +1066,8 @@ export type StoreSeo = {
export type StoreSession = {
/** Session address type. */
addressType: Maybe
+ /** B2B Information. */
+ b2b: Maybe
/** Session channel. */
channel: Maybe
/** Session country. */
@@ -1620,6 +1632,7 @@ export type ValidateSessionMutation = {
givenName: string
familyName: string
} | null
+ b2b: { customerId: string } | null
} | null
}
@@ -2119,7 +2132,7 @@ export const ClientTopSearchSuggestionsQueryDocument = {
export const ValidateSessionDocument = {
__meta__: {
operationName: 'ValidateSession',
- operationHash: '5696202828f9275216a445e316ebf516f168c506',
+ operationHash: '1e69c734ed31bd9e763a34fe9660f5bbad3fd143',
},
} as unknown as TypedDocumentString<
ValidateSessionMutation,
diff --git a/packages/core/discovery.config.default.js b/packages/core/discovery.config.default.js
index 7e8e34eedd..67b6c3eef9 100644
--- a/packages/core/discovery.config.default.js
+++ b/packages/core/discovery.config.default.js
@@ -37,6 +37,7 @@ module.exports = {
addressType: null,
postalCode: null,
geoCoordinates: null,
+ b2b: null,
person: null,
},
diff --git a/packages/core/src/sdk/session/index.ts b/packages/core/src/sdk/session/index.ts
index 080db093e0..c7532160a1 100644
--- a/packages/core/src/sdk/session/index.ts
+++ b/packages/core/src/sdk/session/index.ts
@@ -42,6 +42,9 @@ export const mutation = gql(`
givenName
familyName
}
+ b2b {
+ customerId
+ }
}
}
`)
diff --git a/packages/sdk/src/session/index.ts b/packages/sdk/src/session/index.ts
index 97c2330dcf..572b3f2959 100644
--- a/packages/sdk/src/session/index.ts
+++ b/packages/sdk/src/session/index.ts
@@ -28,6 +28,10 @@ export interface Person {
familyName: string
}
+export interface B2bInfo {
+ customerId: string
+}
+
export interface Session {
locale: string // en-US
currency: Currency
@@ -38,6 +42,7 @@ export interface Session {
postalCode: string | null
geoCoordinates: GeoCoordinates | null
person: Person | null
+ b2b: B2bInfo | null
}
export const createSessionStore = (
diff --git a/packages/sdk/test/session/index.test.tsx b/packages/sdk/test/session/index.test.tsx
index ce2bfeab52..7dac858acd 100644
--- a/packages/sdk/test/session/index.test.tsx
+++ b/packages/sdk/test/session/index.test.tsx
@@ -16,6 +16,7 @@ const initialSession = {
postalCode: null,
geoCoordinates: null,
person: null,
+ b2b: null,
}
test('Session Provider: Set initial session values', async () => {
From 26ffe660e75b9998cce312995db1de64cd72d0d5 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 3 Oct 2024 13:32:48 +0000
Subject: [PATCH 072/154] [no ci] Release: 3.0.120
---
apps/site/package.json | 6 +++---
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 6 +++---
packages/sdk/package.json | 2 +-
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index cb901023b4..8a034e3602 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.117",
+ "version": "3.0.120",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,8 +10,8 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.117",
- "@faststore/sdk": "^3.0.116",
+ "@faststore/api": "^3.0.120",
+ "@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
"next": "13.0.7",
"nextra": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index 897e77070b..fc949b0610 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.119",
+ "version": "3.0.120",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 209f6efcf6..0d5db6518f 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.117",
+ "version": "3.0.120",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index d7707edbf1..cef17a9b5d 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.119 linux-x64 node-v18.20.4
+@faststore/cli/3.0.120 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.119/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 38b173122c..08b12deb34 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.119",
+ "version": "3.0.120",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.119",
+ "@faststore/core": "^3.0.120",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 027051342d..5b63e1b81d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.119",
+ "version": "3.0.120",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,11 +43,11 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.117",
+ "@faststore/api": "^3.0.120",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
"@faststore/lighthouse": "^3.0.116",
- "@faststore/sdk": "^3.0.116",
+ "@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.6",
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 8c8ccc8537..810dfbcb6d 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.116",
+ "version": "3.0.120",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
From 65329b32e806acb41dfe1cb3539cab669a4a9d07 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Thu, 3 Oct 2024 11:01:23 -0300
Subject: [PATCH 073/154] Chore: Add checkDependencies function to generate
script (#2447)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
Display a warning when typescript versions are different
## How it works?
compare between package json
---------
Co-authored-by: Pedro Soares
---
packages/cli/src/utils/generate.ts | 36 ++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index 8d724f6681..f538adcb94 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -298,6 +298,41 @@ function updateBuildTime(basePath: string) {
}
}
+function checkDependencies(basePath: string, packagesToCheck: string[]) {
+ const { coreDir, getRoot } = withBasePath(basePath)
+
+ const corePackageJsonPath = path.join(coreDir, 'package.json')
+ const rootPackageJsonPath = path.join(getRoot(), 'package.json')
+
+ const corePackageJson = require(corePackageJsonPath)
+ const rootPackageJson = require(rootPackageJsonPath)
+
+ packagesToCheck.forEach((packageName) => {
+ const coreVersion =
+ corePackageJson.devDependencies[packageName] ||
+ corePackageJson.dependencies[packageName]
+ const rootVersion =
+ rootPackageJson.devDependencies[packageName] ||
+ rootPackageJson.dependencies[packageName]
+
+ if (!coreVersion || !rootVersion) {
+ console.warn(
+ `${chalk.yellow(
+ 'warning'
+ )} - Package ${packageName} not found in both core or root dependencies.`
+ )
+ } else if (coreVersion !== rootVersion) {
+ console.warn(
+ `${chalk.yellow(
+ 'warning'
+ )} - Version mismatch detected for ${packageName}.
+ Core: ${coreVersion}, Customization: ${rootVersion}. Please align both versions to prevent issues`
+ )
+
+ }
+ })
+}
+
export async function generate(options: GenerateOptions) {
const { basePath, setup = false } = options
@@ -314,6 +349,7 @@ export async function generate(options: GenerateOptions) {
await Promise.all([
setupPromise,
+ checkDependencies(basePath, ['typescript']),
updateBuildTime(basePath),
copyUserStarterToCustomizations(basePath),
copyTheme(basePath),
From bf2236ade5a326c8e56394f55db2ae3db1545e7b Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 3 Oct 2024 14:06:44 +0000
Subject: [PATCH 074/154] [no ci] Release: 3.0.121
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 2 +-
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/lerna.json b/lerna.json
index fc949b0610..25e5a973c8 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.120",
+ "version": "3.0.121",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index cef17a9b5d..69b12a7e2e 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.120 linux-x64 node-v18.20.4
+@faststore/cli/3.0.121 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.120/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 08b12deb34..e1410459ee 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.120",
+ "version": "3.0.121",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
From 1bc04d64b3b05562ec96fc933cf1ba0fc7eae68c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lar=C3=ADcia=20Mota?=
Date: Thu, 3 Oct 2024 16:33:13 -0300
Subject: [PATCH 075/154] fix(api): slugify breaking category with pipe in its
name (#2490)
## What's the purpose of this pull request?
Fix the breadcrumb list when there is a category with pipe `|` in its
name.
## How it works?
Removes the `|` from the `slugify` function.
Example: the category `vitrola | receiver` would be slugified to
`vitrola---receiver` instead of `vitrola-|-receiver` and it would go to
a not found page.
## How to test it?
I've changed the category `Chairs` to use a pipe (`Furniture | Chairs`).
So if you run the code and access this PDP page
`/gorgeous-cotton-shirt-19863970/p`, you should be able to click on the
breadcrumb link to this category and go to its page without getting a
404.
![Screenshot 2024-10-03 at 10 34
10](https://github.com/user-attachments/assets/d7d49944-7681-4643-a54c-47314770f02a)
![Screenshot 2024-10-03 at 10 34
22](https://github.com/user-attachments/assets/e473f72e-8e8c-46df-9da0-fe90c2e84e8a)
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/561
## References
- [Slack
thread](https://vtex.slack.com/archives/C051B6LL91U/p1726495723479679)
---
packages/api/src/platforms/vtex/utils/slugify.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/api/src/platforms/vtex/utils/slugify.ts b/packages/api/src/platforms/vtex/utils/slugify.ts
index dd5dc393b7..ebcd350605 100644
--- a/packages/api/src/platforms/vtex/utils/slugify.ts
+++ b/packages/api/src/platforms/vtex/utils/slugify.ts
@@ -40,7 +40,7 @@ const slugifySpecialCharacters = (str: string) => {
export function slugify(str: string) {
const noCommas = str.replace(/,/g, '')
- const replaced = noCommas.replace(/[*+~.()'"!:@&\[\]`/ %$#?{}|><=_^]/g, '-')
+ const replaced = noCommas.replace(/[*+~.()'"!:@&\[\]`/ %$#?{}><=_^]/g, '-')
const slugified = slugifySpecialCharacters(removeDiacritics(replaced))
return slugified.toLowerCase()
From e1b59dbac520b276dd759e7a78100ab94edfcbb8 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 3 Oct 2024 19:38:25 +0000
Subject: [PATCH 076/154] [no ci] Release: 3.0.122
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 8a034e3602..f200da4110 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.120",
+ "version": "3.0.122",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.120",
+ "@faststore/api": "^3.0.122",
"@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index 25e5a973c8..48fcf8498c 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.121",
+ "version": "3.0.122",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 0d5db6518f..81902ca311 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.120",
+ "version": "3.0.122",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 69b12a7e2e..549409085b 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.121 linux-x64 node-v18.20.4
+@faststore/cli/3.0.122 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.121/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index e1410459ee..e08d13834b 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.121",
+ "version": "3.0.122",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.120",
+ "@faststore/core": "^3.0.122",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 5b63e1b81d..021ad19ae8 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.120",
+ "version": "3.0.122",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
- "@faststore/api": "^3.0.120",
+ "@faststore/api": "^3.0.122",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
"@faststore/lighthouse": "^3.0.116",
From 689932d76fa713b273aab1e0ce7a0e3e65c9fe58 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Fri, 4 Oct 2024 10:07:17 -0300
Subject: [PATCH 077/154] fix: import paths to use discovery.config (#2489)
## What's the purpose of this pull request?
- Updates package/cli and fix import paths to use `discovery.config`
---
packages/cli/src/utils/directory.ts | 6 ---
packages/cli/src/utils/generate.ts | 57 +++++++++++++++++++++++++----
packages/core/discovery.config.js | 17 +--------
3 files changed, 52 insertions(+), 28 deletions(-)
diff --git a/packages/cli/src/utils/directory.ts b/packages/cli/src/utils/directory.ts
index fc7d2d217f..e21fef6fbb 100644
--- a/packages/cli/src/utils/directory.ts
+++ b/packages/cli/src/utils/directory.ts
@@ -62,12 +62,6 @@ export const withBasePath = (basepath: string) => {
tmpThemesCustomizationsFile: path.join(tmpDir, 'src', 'customizations', 'src', 'themes', 'index.scss'),
tmpCMSDir: path.join(tmpDir, 'cms', 'faststore'),
tmpCMSWebhookUrlsFile: path.join(tmpDir, 'cms-webhook-urls.json'),
- tmpLegacyStoreConfigFile: path.join(
- tmpDir,
- 'src',
- 'customizations',
- 'faststore.config.js'
- ),
tmpStoreConfigFile: path.join(
tmpDir,
'src',
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index f538adcb94..370dc6d283 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -134,7 +134,8 @@ function copyPublicFiles(basePath: string) {
}
async function copyCypressFiles(basePath: string) {
- const { userDir, userStoreConfigFile, tmpDir } = withBasePath(basePath)
+ const { userDir, userStoreConfigFile, userLegacyStoreConfigFile, tmpDir } =
+ withBasePath(basePath)
try {
// Cypress 9.x config file
@@ -151,7 +152,19 @@ async function copyCypressFiles(basePath: string) {
})
}
- const userStoreConfig = await import(path.resolve(userStoreConfigFile))
+ let userStoreConfig
+
+ if (existsSync(userStoreConfigFile)) {
+ userStoreConfig = await import(path.resolve(userStoreConfigFile))
+ } else if (existsSync(userLegacyStoreConfigFile)) {
+ userStoreConfig = await import(path.resolve(userLegacyStoreConfigFile))
+ } else {
+ console.info(
+ `${chalk.blue(
+ 'info'
+ )} - No store config file was found in the root directory`
+ )
+ }
// Copy custom Cypress folder and files
if (
@@ -186,7 +199,6 @@ function copyUserStarterToCustomizations(basePath: string) {
userLegacyStoreConfigFile,
userStoreConfigFile,
tmpStoreConfigFile,
- tmpLegacyStoreConfigFile,
} = withBasePath(basePath)
try {
@@ -197,7 +209,7 @@ function copyUserStarterToCustomizations(basePath: string) {
if (existsSync(userStoreConfigFile)) {
copySync(userStoreConfigFile, tmpStoreConfigFile, { dereference: true })
} else if (existsSync(userLegacyStoreConfigFile)) {
- copySync(userLegacyStoreConfigFile, tmpLegacyStoreConfigFile, {
+ copySync(userLegacyStoreConfigFile, tmpStoreConfigFile, {
dereference: true,
})
} else {
@@ -215,8 +227,24 @@ function copyUserStarterToCustomizations(basePath: string) {
}
async function createCmsWebhookUrlsJsonFile(basePath: string) {
- const { userStoreConfigFile, tmpCMSWebhookUrlsFile } = withBasePath(basePath)
- const userStoreConfig = await import(path.resolve(userStoreConfigFile))
+ const {
+ userStoreConfigFile,
+ userLegacyStoreConfigFile,
+ tmpCMSWebhookUrlsFile,
+ } = withBasePath(basePath)
+ let userStoreConfig
+
+ if (existsSync(userStoreConfigFile)) {
+ userStoreConfig = await import(path.resolve(userStoreConfigFile))
+ } else if (existsSync(userLegacyStoreConfigFile)) {
+ userStoreConfig = await import(path.resolve(userLegacyStoreConfigFile))
+ } else {
+ console.info(
+ `${chalk.blue(
+ 'info'
+ )} - No store config file was found in the root directory`
+ )
+ }
if (
userStoreConfig?.vtexHeadlessCms &&
@@ -240,8 +268,23 @@ async function copyTheme(basePath: string) {
userStoreConfigFile,
userThemesFileDir,
tmpThemesCustomizationsFile,
+ userLegacyStoreConfigFile,
} = withBasePath(basePath)
- const storeConfig = await import(path.resolve(userStoreConfigFile))
+
+ let storeConfig
+
+ if (existsSync(userStoreConfigFile)) {
+ storeConfig = await import(path.resolve(userStoreConfigFile))
+ } else if (existsSync(userLegacyStoreConfigFile)) {
+ storeConfig = await import(path.resolve(userLegacyStoreConfigFile))
+ } else {
+ console.info(
+ `${chalk.blue(
+ 'info'
+ )} - No store config file was found in the root directory`
+ )
+ }
+
if (storeConfig.theme) {
const customTheme = path.join(
userThemesFileDir,
diff --git a/packages/core/discovery.config.js b/packages/core/discovery.config.js
index 6a9a4649eb..244109e1b2 100644
--- a/packages/core/discovery.config.js
+++ b/packages/core/discovery.config.js
@@ -1,20 +1,7 @@
const defaultConfig = require('./discovery.config.default')
-const deepmerge = require('deepmerge')
-
-let starterConfig
+const starterConfig = require('./src/customizations/discovery.config')
-try {
- starterConfig = require('./src/customizations/discovery.config')
-} catch (e) {
- try {
- starterConfig = require('./src/customizations/faststore.config')
- } catch (e) {
- console.error(
- "Failed to load './src/customizations/faststore.config'. Please ensure the file exists."
- )
- throw e // Re-throw the error after logging
- }
-}
+const deepmerge = require('deepmerge')
/**
* @type {typeof defaultConfig & Record}
From 0aa8ed03a8483fae7cea3948d6fc0cc9656b7d76 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 4 Oct 2024 13:12:27 +0000
Subject: [PATCH 078/154] [no ci] Release: 3.0.123
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 48fcf8498c..af845939fc 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.122",
+ "version": "3.0.123",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 549409085b..a1aa1728a6 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.122 linux-x64 node-v18.20.4
+@faststore/cli/3.0.123 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.122/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index e08d13834b..663d951fdb 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.122",
+ "version": "3.0.123",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.122",
+ "@faststore/core": "^3.0.123",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 021ad19ae8..254a86d583 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.122",
+ "version": "3.0.123",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 30129a80a8329d5010d447f2910d05ec4af902c9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lar=C3=ADcia=20Mota?=
Date: Fri, 4 Oct 2024 14:34:04 -0300
Subject: [PATCH 079/154] Chore: Updates Envelop from v2 to v3 (#2473)
## What's the purpose of this pull request?
Update the Envelop to v3.
## How it works?
Added some comments on this PR linking to specific parts of the Envelop
doc.
## How to test it?
Run the project and check if it continues working the same.
### Starters Deploy Preview
Here is the preview of the starter store:
https://sfj-8a111d3--starter.preview.vtex.app/
([PR](https://github.com/vtex-sites/starter.store/pull/549)).
I've also updated the playground store to test in a store with some
level of customization (API extension for example):
https://sfj-e16ec36--playground.preview.vtex.app/
([PR](https://github.com/vtex-sites/playground.store/pull/86/files)).
## References
- [Envelop Migration
doc](https://the-guild.dev/graphql/envelop/v3/guides/migrating-from-v2-to-v3)
- [Jira task](https://vtex-dev.atlassian.net/browse/SFS-129)
---
packages/api/package.json | 6 +-
.../src/telemetry/useFaststoreTelemetry.ts | 29 +++++---
packages/core/package.json | 8 +--
packages/core/src/server/index.ts | 21 +++---
packages/core/test/server/index.test.ts | 2 +-
yarn.lock | 71 +++++++------------
6 files changed, 67 insertions(+), 70 deletions(-)
diff --git a/packages/api/package.json b/packages/api/package.json
index 81902ca311..f0d05566a7 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -34,7 +34,7 @@
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
- "@envelop/on-resolve": "^2.0.6",
+ "@envelop/on-resolve": "^3.0.0",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/schema": "^9.0.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.39.1",
@@ -50,7 +50,7 @@
"sanitize-html": "^2.11.0"
},
"devDependencies": {
- "@envelop/core": "^2.6.0",
+ "@envelop/core": "^3.0.0",
"@faststore/eslint-config": "^3.0.116",
"@faststore/shared": "^3.0.116",
"@graphql-codegen/cli": "2.2.0",
@@ -73,7 +73,7 @@
"typescript": "^5.3.2"
},
"peerDependencies": {
- "@envelop/core": "^1 || ^2",
+ "@envelop/core": "^3",
"graphql": "^15.6.0"
},
"volta": {
diff --git a/packages/api/src/telemetry/useFaststoreTelemetry.ts b/packages/api/src/telemetry/useFaststoreTelemetry.ts
index 5a3e09d3f7..34ad5ab7d1 100644
--- a/packages/api/src/telemetry/useFaststoreTelemetry.ts
+++ b/packages/api/src/telemetry/useFaststoreTelemetry.ts
@@ -1,17 +1,24 @@
-import type { Plugin, OnExecuteHookResult } from '@envelop/core'
+import type { OnExecuteHookResult, Plugin } from '@envelop/core'
import { isAsyncIterable } from '@envelop/core'
import { useOnResolve } from '@envelop/on-resolve'
-import { SpanKind, Context, Span } from '@opentelemetry/api'
import {
- trace as openTelTrace,
+ Context,
context as openTelContext,
+ Span,
+ SpanKind,
+ trace as openTelTrace
} from '@opentelemetry/api'
-import type { BasicTracerProvider } from '@opentelemetry/sdk-trace-base'
-import type { Path } from 'graphql/jsutils/Path'
-import type { LoggerProvider } from '@opentelemetry/sdk-logs'
import type { LogRecord } from '@opentelemetry/api-logs'
import { SeverityNumber } from '@opentelemetry/api-logs'
-import { print, Kind, OperationDefinitionNode } from 'graphql'
+import type { LoggerProvider } from '@opentelemetry/sdk-logs'
+import type { BasicTracerProvider } from '@opentelemetry/sdk-trace-base'
+import {
+ Kind,
+ OperationDefinitionNode,
+ print,
+ type DefinitionNode
+} from 'graphql'
+import type { Path } from 'graphql/jsutils/Path'
export enum AttributeName {
EXECUTION_ERROR = 'graphql.error',
@@ -157,8 +164,12 @@ export const getFaststoreTelemetryPlugin = (
},
onExecute({ args, extendContext }) {
const operationType = args.document.definitions
- .filter((def) => def.kind === Kind.OPERATION_DEFINITION)
- .map((def) => (def as OperationDefinitionNode).operation)?.[0]
+ .filter(
+ (def: DefinitionNode) => def.kind === Kind.OPERATION_DEFINITION
+ )
+ .map(
+ (def: DefinitionNode) => (def as OperationDefinitionNode).operation
+ )?.[0]
// Span name according to Semantic Conventions
// https://github.com/open-telemetry/semantic-conventions
diff --git a/packages/core/package.json b/packages/core/package.json
index 254a86d583..0fd90d7f88 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -39,10 +39,10 @@
"dependencies": {
"@antfu/ni": "^0.21.12",
"@builder.io/partytown": "^0.6.1",
- "@envelop/core": "^1.2.0",
- "@envelop/graphql-jit": "^1.1.1",
- "@envelop/parser-cache": "^2.2.0",
- "@envelop/validation-cache": "^2.2.0",
+ "@envelop/core": "^3.0.0",
+ "@envelop/graphql-jit": "^3.0.0",
+ "@envelop/parser-cache": "^3.0.0",
+ "@envelop/validation-cache": "^3.0.0",
"@faststore/api": "^3.0.122",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
diff --git a/packages/core/src/server/index.ts b/packages/core/src/server/index.ts
index 2fedebf40c..9a03282056 100644
--- a/packages/core/src/server/index.ts
+++ b/packages/core/src/server/index.ts
@@ -1,11 +1,11 @@
/* eslint-disable react-hooks/rules-of-hooks */
-import path from 'path'
-import type { FormatErrorHandler } from '@envelop/core'
import {
envelop,
- useSchema,
+ MaskError,
+ useEngine,
useExtendContext,
useMaskedErrors,
+ useSchema,
} from '@envelop/core'
import { useGraphQlJit } from '@envelop/graphql-jit'
import { useParserCache } from '@envelop/parser-cache'
@@ -16,18 +16,20 @@ import {
getResolvers,
isFastStoreError,
} from '@faststore/api'
-import { GraphQLError } from 'graphql'
-import { makeExecutableSchema } from '@graphql-tools/schema'
import { loadFilesSync } from '@graphql-tools/load-files'
+import { makeExecutableSchema } from '@graphql-tools/schema'
import type { TypeSource } from '@graphql-tools/utils'
+import * as GraphQLJS from 'graphql'
+import { GraphQLError } from 'graphql'
+import path from 'path'
import persisted from '@generated/persisted-documents.json'
-import vtexExtensionsResolvers from '../customizations/src/graphql/vtex/resolvers'
import thirdPartyResolvers from '../customizations/src/graphql/thirdParty/resolvers'
+import vtexExtensionsResolvers from '../customizations/src/graphql/vtex/resolvers'
-import { apiOptions } from './options'
import { Operation } from '../sdk/graphql/request'
+import { apiOptions } from './options'
interface ExecuteOptions> {
operation: Operation
@@ -39,7 +41,7 @@ const persistedQueries = new Map(Object.entries(persisted))
const apiContextFactory = getContextFactory(apiOptions)
-const formatError: FormatErrorHandler = (err) => {
+const customFormatError: MaskError = (err) => {
if (err instanceof GraphQLError && isFastStoreError(err.originalError)) {
return err
}
@@ -68,9 +70,10 @@ function getFinalAPISchema() {
export const getEnvelop = async () =>
envelop({
plugins: [
+ useEngine(GraphQLJS),
useSchema(getFinalAPISchema()),
useExtendContext(apiContextFactory),
- useMaskedErrors({ formatError }),
+ useMaskedErrors({ maskError: customFormatError }),
useGraphQlJit(),
useValidationCache(),
useParserCache(),
diff --git a/packages/core/test/server/index.test.ts b/packages/core/test/server/index.test.ts
index 3f2df20660..0a47f5f145 100644
--- a/packages/core/test/server/index.test.ts
+++ b/packages/core/test/server/index.test.ts
@@ -132,7 +132,7 @@ describe('FastStore GraphQL Layer', () => {
it('should exist with its plugins', async () => {
const envelop = await getEnvelop()
expect(envelop).toBeDefined()
- expect(envelop._plugins).toHaveLength(6)
+ expect(envelop._plugins).toHaveLength(7)
})
it('should handle options and execute', async () => {
diff --git a/yarn.lock b/yarn.lock
index f5ead87a1d..012abd0238 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -867,38 +867,31 @@
debug "^3.1.0"
lodash.once "^4.1.1"
-"@envelop/core@^1.2.0":
- version "1.7.1"
- resolved "https://registry.npmjs.org/@envelop/core/-/core-1.7.1.tgz"
- integrity sha512-ZxeQs4G0FOzoFAH+zskubx5aM9kx6BiUvcSI9Lo3MfYBmnK7cjwcwDdwk6Mq48QDuAeVdGfDmQz+BiWg0k2GmQ==
+"@envelop/core@^3.0.0":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@envelop/core/-/core-3.0.6.tgz#e55c3564d05d648b0356a1c465aa90b0c51f485d"
+ integrity sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig==
dependencies:
- "@envelop/types" "1.5.1"
-
-"@envelop/core@^2.6.0":
- version "2.6.0"
- resolved "https://registry.npmjs.org/@envelop/core/-/core-2.6.0.tgz"
- integrity sha512-yTptKinJN//i6m1kXUbnLBl/FobzddI4ehURAMS08eRUOQwAuXqJU9r8VdTav8nIZLb4t6cuDWFb3n331LiwLw==
- dependencies:
- "@envelop/types" "2.4.0"
- tslib "2.4.0"
+ "@envelop/types" "3.0.2"
+ tslib "^2.5.0"
-"@envelop/graphql-jit@^1.1.1":
- version "1.3.1"
- resolved "https://registry.npmjs.org/@envelop/graphql-jit/-/graphql-jit-1.3.1.tgz"
- integrity sha512-9BdMuQVt0/g1YkSQRzipCzgxp9UAC5DQw2yQXuCrXcdWPEaLxf6Nxokx0GznoxGxulGLiR/iTuboqH6Kt24HLA==
+"@envelop/graphql-jit@^3.0.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@envelop/graphql-jit/-/graphql-jit-3.1.0.tgz#8427fc72ce18038dd99bd245bb34bf108b51bd97"
+ integrity sha512-WC45dCmZRFMdxIHZ5H3MFtNVFoVBiUMS4Xl9bKAUIIiGP50FgfV+NtuNIKTzbbPxADpGCIXPYsjNbdPOBnGCDg==
dependencies:
graphql-jit "^0.7.0"
tiny-lru "7.0.6"
-"@envelop/on-resolve@^2.0.6":
- version "2.0.6"
- resolved "https://registry.npmjs.org/@envelop/on-resolve/-/on-resolve-2.0.6.tgz"
- integrity sha512-l4vH0RKF0gdzyUcetaio/UP/BE84iw2TXvHXGAqDGoiMjRy0MVoeWF30SzwDb5IwNme2XaOsPlRmYRw1K0DAVA==
+"@envelop/on-resolve@^3.0.0":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@envelop/on-resolve/-/on-resolve-3.0.3.tgz#cfba1726c2b79b6b2d9e7333878a5b6e1c95e3f5"
+ integrity sha512-Mo2w3CHmyLCScFuIO2VS2Co44vlPSc4zwujz0x+/zyaJ+eCwBQMRuE9u+9ORjvKImNxrbXI9FQVNlbF0iDk4iQ==
-"@envelop/parser-cache@^2.2.0":
- version "2.2.1"
- resolved "https://registry.npmjs.org/@envelop/parser-cache/-/parser-cache-2.2.1.tgz"
- integrity sha512-7PHYjln5Jl0JieCd5mVCKZoCpxyL3EQf2etxvmB1ALB6D9QjLYSv+zSPQRT/rmeDtLDohFKVN6cIyhYNSUG2bQ==
+"@envelop/parser-cache@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@envelop/parser-cache/-/parser-cache-3.0.0.tgz#2b24131fe1a715c06e0ab50d376777477f8fcf50"
+ integrity sha512-1Pf4pnxrpPBM2N+dDdhRYoUbIK9K0xxzW4PbjWPCQe2C2owOfc+ndZad1nn9Yi1i5hibqwcltsQPmeUCsVPltw==
dependencies:
tiny-lru "7.0.6"
@@ -910,22 +903,17 @@
"@graphql-tools/utils" "^10.0.0"
tslib "^2.5.0"
-"@envelop/types@1.5.1":
- version "1.5.1"
- resolved "https://registry.npmjs.org/@envelop/types/-/types-1.5.1.tgz"
- integrity sha512-NrwLVzyNqiSzgRRqOxkU2IgRc5hSGS73VsgxqchU3jl36rYo7AXVAnITkytmB9wk+jN2vUOVvayLkaTXooARwg==
-
-"@envelop/types@2.4.0":
- version "2.4.0"
- resolved "https://registry.npmjs.org/@envelop/types/-/types-2.4.0.tgz"
- integrity sha512-pjxS98cDQBS84X29VcwzH3aJ/KiLCGwyMxuj7/5FkdiaCXAD1JEvKEj9LARWlFYj1bY43uII4+UptFebrhiIaw==
+"@envelop/types@3.0.2":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@envelop/types/-/types-3.0.2.tgz#a4b29375b7fcee39bb5830f87f66bbc815cf305e"
+ integrity sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng==
dependencies:
- tslib "^2.4.0"
+ tslib "^2.5.0"
-"@envelop/validation-cache@^2.2.0":
- version "2.3.0"
- resolved "https://registry.npmjs.org/@envelop/validation-cache/-/validation-cache-2.3.0.tgz"
- integrity sha512-yCsACrSo3psIjxakfn5tJBG2jG7XAjCCyZJ1YCY3/jogzHAXL2ypRh4r5x0K/aivygf4TrgQQkyizYwM8v5ETw==
+"@envelop/validation-cache@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-3.0.0.tgz#3cac3f25a709a53c4d9d504fd84380ce7cd04281"
+ integrity sha512-JqTA6huTygAlQilaVEM77DlFdGSptf5ElOWX7wdu0VC15h2Np7MmnsyOcy7xQI1Sc7B3oaNSo12l3QD6K28vOQ==
dependencies:
tiny-lru "7.0.6"
@@ -17467,11 +17455,6 @@ tsconfig-paths@^4.1.2:
minimist "^1.2.6"
strip-bom "^3.0.0"
-tslib@2.4.0:
- version "2.4.0"
- resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
- integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
-
tslib@^1.8.1, tslib@^1.9.0:
version "1.14.1"
resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
From 0d1c7d8b773cdf7c0583df30ab7d070f1cd17f85 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 4 Oct 2024 17:39:52 +0000
Subject: [PATCH 080/154] [no ci] Release: 3.0.124
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index f200da4110..1d378daf68 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.122",
+ "version": "3.0.124",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.122",
+ "@faststore/api": "^3.0.124",
"@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index af845939fc..9fcfff34e1 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.123",
+ "version": "3.0.124",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index f0d05566a7..2796c03ef3 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.122",
+ "version": "3.0.124",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index a1aa1728a6..dc7fe5501d 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.123 linux-x64 node-v18.20.4
+@faststore/cli/3.0.124 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.123/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 663d951fdb..ef25be24d9 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.123",
+ "version": "3.0.124",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.123",
+ "@faststore/core": "^3.0.124",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 0fd90d7f88..ed627abb53 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.123",
+ "version": "3.0.124",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^3.0.0",
"@envelop/parser-cache": "^3.0.0",
"@envelop/validation-cache": "^3.0.0",
- "@faststore/api": "^3.0.122",
+ "@faststore/api": "^3.0.124",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
"@faststore/lighthouse": "^3.0.116",
From 7b74bcc4714ab1f6be861becf164fd3d91b895a6 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Mon, 7 Oct 2024 17:27:31 -0300
Subject: [PATCH 081/154] Chore: Removes `BannerNewsletter` section from home
(#2481)
## What's the purpose of this pull request?
We had already removed this section from CMS, but it remained in the
code.
## How it works?
By default we already have the `Newsletter` section in homepage, and
`BannerNewsletter` section should be in the PDP.
|Before| After|
|-|-|
| |
Removed from CMS:
![cms](https://github.com/user-attachments/assets/a7d83b42-2f68-4b77-9b73-bee53131ae79)
No other unused section was detected. BannerNewsletter still being used
in PDP as expected.
## How to test it?
Run `yarn dev` in the core, in the homepage you shouldn't be able to see
the `BannerNewsletter` section
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/557
## References
https://vtex-dev.atlassian.net/browse/SFS-1453
---
packages/core/src/pages/index.tsx | 2 --
1 file changed, 2 deletions(-)
diff --git a/packages/core/src/pages/index.tsx b/packages/core/src/pages/index.tsx
index 53a6c4489b..5b3ca3ba24 100644
--- a/packages/core/src/pages/index.tsx
+++ b/packages/core/src/pages/index.tsx
@@ -4,7 +4,6 @@ import { NextSeo, SiteLinksSearchBoxJsonLd } from 'next-seo'
import type { ComponentType } from 'react'
import RenderSections from 'src/components/cms/RenderSections'
-import BannerNewsletter from 'src/components/sections/BannerNewsletter/BannerNewsletter'
import { OverriddenDefaultBannerText as BannerText } from 'src/components/sections/BannerText/OverriddenDefaultBannerText'
import { OverriddenDefaultHero as Hero } from 'src/components/sections/Hero/OverriddenDefaultHero'
import Incentives from 'src/components/sections/Incentives'
@@ -30,7 +29,6 @@ const COMPONENTS: Record> = {
ProductShelf,
ProductTiles,
BannerText,
- BannerNewsletter,
Newsletter,
...CUSTOM_COMPONENTS,
}
From 88513e18bc718d33ff2424772954847078b7ae21 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 7 Oct 2024 20:32:45 +0000
Subject: [PATCH 082/154] [no ci] Release: 3.0.125
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 9fcfff34e1..47db2d3ec9 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.124",
+ "version": "3.0.125",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index dc7fe5501d..90e6344846 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.124 linux-x64 node-v18.20.4
+@faststore/cli/3.0.125 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.124/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index ef25be24d9..e02ddba727 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.124",
+ "version": "3.0.125",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.124",
+ "@faststore/core": "^3.0.125",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index ed627abb53..2e8bf6474d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.124",
+ "version": "3.0.125",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From f904765362f26b05d2583611cb03d4c6fbb87512 Mon Sep 17 00:00:00 2001
From: Pedro Soares <32311264+pedromtec@users.noreply.github.com>
Date: Tue, 8 Oct 2024 11:26:00 -0300
Subject: [PATCH 083/154] Fix: codegen dependencies (#2496)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
The build process fails when the `codegen` packages update in
`yarn.lock`. It's impacting some clients.
The following packages have been recently updated:
```
https://www.npmjs.com/package/@graphql-codegen/typescript-operations
https://www.npmjs.com/package/@graphql-codegen/typescript
https://www.npmjs.com/package/@graphql-codegen/cli
https://npmjs.com/package/@graphql-codegen/client-preset
```
This PR removes the `caret` from these dependencies to avoid them from
updating to these broken versions.
## How to test it?
In the [starter](https://github.com/vtex-sites/starter.store) project:
- Install this version in the Starter
- Delete `yarn.lock` and `node_modules`
- run `yarn install`
- run `yarn build`
---
packages/core/package.json | 8 ++++----
yarn.lock | 12 ++++++------
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/packages/core/package.json b/packages/core/package.json
index 2e8bf6474d..906c7c293e 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -49,10 +49,10 @@
"@faststore/lighthouse": "^3.0.116",
"@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
- "@graphql-codegen/cli": "^5.0.2",
- "@graphql-codegen/client-preset": "^4.2.6",
- "@graphql-codegen/typescript": "^4.0.7",
- "@graphql-codegen/typescript-operations": "^4.2.1",
+ "@graphql-codegen/cli": "5.0.2",
+ "@graphql-codegen/client-preset": "4.2.6",
+ "@graphql-codegen/typescript": "4.0.7",
+ "@graphql-codegen/typescript-operations": "4.2.1",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.4",
"@graphql-tools/schema": "^10.0.3",
diff --git a/yarn.lock b/yarn.lock
index 012abd0238..e74a205787 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1106,9 +1106,9 @@
yaml "^1.10.0"
yargs "^17.0.0"
-"@graphql-codegen/cli@^5.0.2":
+"@graphql-codegen/cli@5.0.2":
version "5.0.2"
- resolved "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-5.0.2.tgz"
+ resolved "https://registry.yarnpkg.com/@graphql-codegen/cli/-/cli-5.0.2.tgz#07ff691c16da4c3dcc0e1995d3231530379ab317"
integrity sha512-MBIaFqDiLKuO4ojN6xxG9/xL9wmfD3ZjZ7RsPjwQnSHBCUXnEkdKvX+JVpx87Pq29Ycn8wTJUguXnTZ7Di0Mlw==
dependencies:
"@babel/generator" "^7.18.13"
@@ -1147,9 +1147,9 @@
yaml "^2.3.1"
yargs "^17.0.0"
-"@graphql-codegen/client-preset@^4.2.2", "@graphql-codegen/client-preset@^4.2.6":
+"@graphql-codegen/client-preset@4.2.6", "@graphql-codegen/client-preset@^4.2.2":
version "4.2.6"
- resolved "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-4.2.6.tgz"
+ resolved "https://registry.yarnpkg.com/@graphql-codegen/client-preset/-/client-preset-4.2.6.tgz#dbce627c9db5fcb5777d8567b8fd46683741e31d"
integrity sha512-e7SzPb+nxNJfsD0uG+NSyzIeTtCXTouX5VThmcCoqGMDLgF5Lo7932B3HtZCvzmzqcXxRjJ81CmkA2LhlqIbCw==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -1241,7 +1241,7 @@
change-case-all "1.0.15"
tslib "~2.6.0"
-"@graphql-codegen/typescript-operations@^4.2.1":
+"@graphql-codegen/typescript-operations@4.2.1", "@graphql-codegen/typescript-operations@^4.2.1":
version "4.2.1"
resolved "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-4.2.1.tgz"
integrity sha512-LhEPsaP+AI65zfK2j6CBAL4RT0bJL/rR9oRWlvwtHLX0t7YQr4CP4BXgvvej9brYdedAxHGPWeV1tPHy5/z9KQ==
@@ -1262,7 +1262,7 @@
auto-bind "~4.0.0"
tslib "~2.3.0"
-"@graphql-codegen/typescript@^4.0.7":
+"@graphql-codegen/typescript@4.0.7", "@graphql-codegen/typescript@^4.0.7":
version "4.0.7"
resolved "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-4.0.7.tgz"
integrity sha512-Gn+JNvQBJhBqH7s83piAJ6UeU/MTj9GXWFO9bdbl8PMLCAM1uFAtg04iHfkGCtDKXcUg5a3Dt/SZG85uk5KuhA==
From 52d1483dfafce7ca625e0b37116ee8e72c57a39e Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 8 Oct 2024 14:31:53 +0000
Subject: [PATCH 084/154] [no ci] Release: 3.0.126
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 47db2d3ec9..4ae17bffb6 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.125",
+ "version": "3.0.126",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 90e6344846..815818d79d 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.125 linux-x64 node-v18.20.4
+@faststore/cli/3.0.126 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.125/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index e02ddba727..09487734af 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.125",
+ "version": "3.0.126",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.125",
+ "@faststore/core": "^3.0.126",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 906c7c293e..37d0a4e590 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.125",
+ "version": "3.0.126",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 8838ee85c818c6cd289d62cd27f99bd847432c5f Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 8 Oct 2024 11:40:45 -0300
Subject: [PATCH 085/154] Feat: import `sendAnalyticsEvent` on demand (#2472)
## What's the purpose of this pull request?
This PR is part of the Performance epic and aims to import the
`sendAnalyticsEvent` method from `faststore/sdk` dynamically instead of
static so that it will not be part of the initial bundle.
## How to test it?
1. run `yarn dev`.
2. Following the
https://developers.vtex.com/docs/guides/faststore/troubleshooting-analytics-and-partytown#see-events-pushed-to-datalayer
We need to put it in the console when we use the `partytown` to see the
events in the dataLayer:
```js
window.dataLayerHistory = []
const originalPush = dataLayer.push
dataLayer.push = (data) => {
console.log(data)
dataLayerHistory.push(data)
originalPush(data)
}
```
3. Then navigate to the pages and double-check that the tags are being
triggered as before. Check the image below.
### Starter PR
- https://github.com/vtex-sites/starter.store/pull/550
PSI Snapshot
---
.../src/components/cart/CartItem/CartItem.tsx | 67 ++++++++---------
.../cart/CartSidebar/CartSidebar.tsx | 37 +++++-----
.../search/SearchInput/SearchInput.tsx | 28 ++++---
.../ProductDetails/ProductDetails.tsx | 47 ++++++------
.../sdk/analytics/hooks/usePageViewEvent.ts | 21 +++---
.../analytics/hooks/useViewItemListEvent.ts | 42 ++++++-----
packages/core/src/sdk/cart/useBuyButton.ts | 51 ++++++-------
packages/core/src/sdk/cart/useRemoveButton.ts | 47 ++++++------
.../src/sdk/product/useProductGalleryQuery.ts | 24 +++---
.../core/src/sdk/product/useProductLink.ts | 73 ++++++++++---------
.../core/src/sdk/search/useSuggestions.ts | 27 +++----
11 files changed, 239 insertions(+), 225 deletions(-)
diff --git a/packages/core/src/components/cart/CartItem/CartItem.tsx b/packages/core/src/components/cart/CartItem/CartItem.tsx
index bf69b115a5..d3b16b4abe 100644
--- a/packages/core/src/components/cart/CartItem/CartItem.tsx
+++ b/packages/core/src/components/cart/CartItem/CartItem.tsx
@@ -1,23 +1,22 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
+import type {
+ AddToCartEvent,
+ CurrencyCode,
+ RemoveFromCartEvent,
+} from '@faststore/sdk'
import {
CartItem as UICartItem,
CartItemImage as UICartItemImage,
CartItemSummary as UICartItemSummary,
} from '@faststore/ui'
import { useCallback, useMemo } from 'react'
-import type {
- AddToCartEvent,
- CurrencyCode,
- RemoveFromCartEvent,
-} from '@faststore/sdk'
import { Image } from 'src/components/ui/Image'
+import type { AnalyticsItem } from 'src/sdk/analytics/types'
+import type { CartItem as ICartItem } from 'src/sdk/cart'
import { cartStore } from 'src/sdk/cart'
+import { useRemoveButton } from 'src/sdk/cart/useRemoveButton'
import { useFormattedPrice } from 'src/sdk/product/useFormattedPrice'
import { useSession } from 'src/sdk/session'
-import { useRemoveButton } from 'src/sdk/cart/useRemoveButton'
-import type { CartItem as ICartItem } from 'src/sdk/cart'
-import type { AnalyticsItem } from 'src/sdk/analytics/types'
function useCartItemEvent() {
const {
@@ -28,30 +27,32 @@ function useCartItemEvent() {
(item: Props['item'], quantity: number) => {
const quantityDelta = quantity - item.quantity
- return sendAnalyticsEvent<
- AddToCartEvent | RemoveFromCartEvent
- >({
- name: quantityDelta > 0 ? 'add_to_cart' : 'remove_from_cart',
- params: {
- currency: code as CurrencyCode,
- // TODO: In the future, we can explore more robust ways of
- // calculating the value (gift items, discounts, etc.).
- value: item.price * Math.abs(quantityDelta),
- items: [
- {
- item_id: item.itemOffered.isVariantOf.productGroupID,
- item_name: item.itemOffered.isVariantOf.name,
- item_brand: item.itemOffered.brand.name,
- item_variant: item.itemOffered.sku,
- quantity: Math.abs(quantityDelta),
- price: item.price,
- discount: item.listPrice - item.price,
- currency: code as CurrencyCode,
- item_variant_name: item.itemOffered.name,
- product_reference_id: item.itemOffered.gtin,
- },
- ],
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ return sendAnalyticsEvent<
+ AddToCartEvent | RemoveFromCartEvent
+ >({
+ name: quantityDelta > 0 ? 'add_to_cart' : 'remove_from_cart',
+ params: {
+ currency: code as CurrencyCode,
+ // TODO: In the future, we can explore more robust ways of
+ // calculating the value (gift items, discounts, etc.).
+ value: item.price * Math.abs(quantityDelta),
+ items: [
+ {
+ item_id: item.itemOffered.isVariantOf.productGroupID,
+ item_name: item.itemOffered.isVariantOf.name,
+ item_brand: item.itemOffered.brand.name,
+ item_variant: item.itemOffered.sku,
+ quantity: Math.abs(quantityDelta),
+ price: item.price,
+ discount: item.listPrice - item.price,
+ currency: code as CurrencyCode,
+ item_variant_name: item.itemOffered.name,
+ product_reference_id: item.itemOffered.gtin,
+ },
+ ],
+ },
+ })
})
},
[code]
diff --git a/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx b/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
index d20ac2ab23..e4869613e4 100644
--- a/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
+++ b/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
@@ -1,4 +1,3 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
import {
Button as UIButton,
CartSidebar as UICartSidebar,
@@ -28,24 +27,26 @@ function useViewCartEvent() {
const { items, gifts, total } = useCart()
const sendViewCartEvent = useCallback(() => {
- return sendAnalyticsEvent({
- name: 'view_cart',
- params: {
- currency: code as CurrencyCode,
- value: total,
- items: items.concat(gifts).map((item) => ({
- item_id: item.itemOffered.isVariantOf.productGroupID,
- item_name: item.itemOffered.isVariantOf.name,
- item_brand: item.itemOffered.brand.name,
- item_variant: item.itemOffered.sku,
- quantity: item.quantity,
- price: item.price,
- discount: item.listPrice - item.price,
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ return sendAnalyticsEvent({
+ name: 'view_cart',
+ params: {
currency: code as CurrencyCode,
- item_variant_name: item.itemOffered.name,
- product_reference_id: item.itemOffered.gtin,
- })),
- },
+ value: total,
+ items: items.concat(gifts).map((item) => ({
+ item_id: item.itemOffered.isVariantOf.productGroupID,
+ item_name: item.itemOffered.isVariantOf.name,
+ item_brand: item.itemOffered.brand.name,
+ item_variant: item.itemOffered.sku,
+ quantity: item.quantity,
+ price: item.price,
+ discount: item.listPrice - item.price,
+ currency: code as CurrencyCode,
+ item_variant_name: item.itemOffered.name,
+ product_reference_id: item.itemOffered.gtin,
+ })),
+ },
+ })
})
}, [code, gifts, items, total])
diff --git a/packages/core/src/components/search/SearchInput/SearchInput.tsx b/packages/core/src/components/search/SearchInput/SearchInput.tsx
index 3d77c6c409..68aa32072a 100644
--- a/packages/core/src/components/search/SearchInput/SearchInput.tsx
+++ b/packages/core/src/components/search/SearchInput/SearchInput.tsx
@@ -1,5 +1,4 @@
import type { SearchEvent, SearchState } from '@faststore/sdk'
-import { sendAnalyticsEvent } from '@faststore/sdk'
import type {
SearchInputFieldProps as UISearchInputFieldProps,
@@ -22,7 +21,6 @@ import {
useState,
} from 'react'
-import { formatSearchPath } from 'src/sdk/search/formatSearchPath'
import useSearchHistory from 'src/sdk/search/useSearchHistory'
import useSuggestions from 'src/sdk/search/useSuggestions'
import useOnClickOutside from 'src/sdk/ui/useOnClickOutside'
@@ -46,9 +44,11 @@ export type SearchInputRef = UISearchInputFieldRef & {
}
const sendAnalytics = async (term: string) => {
- sendAnalyticsEvent({
- name: 'search',
- params: { search_term: term },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent({
+ name: 'search',
+ params: { search_term: term },
+ })
})
}
@@ -119,13 +119,17 @@ const SearchInput = forwardRef(
placeholder={placeholder}
onChange={(e) => setSearchQuery(e.target.value)}
onSubmit={(term) => {
- const path = formatSearchPath({
- term,
- sort: sort as SearchState['sort'],
- })
-
- onSearchSelection(term, path)
- router.push(path)
+ import('src/sdk/search/formatSearchPath').then(
+ ({ formatSearchPath }) => {
+ const path = formatSearchPath({
+ term,
+ sort: sort as SearchState['sort'],
+ })
+
+ onSearchSelection(term, path)
+ router.push(path)
+ }
+ )
}}
onFocus={() => setSearchDropdownVisible(true)}
value={searchQuery}
diff --git a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
index 62e262b11a..cd77ef01ff 100644
--- a/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
+++ b/packages/core/src/components/sections/ProductDetails/ProductDetails.tsx
@@ -1,7 +1,6 @@
-import { useEffect, useState, useMemo } from 'react'
+import { useEffect, useMemo, useState } from 'react'
import type { CurrencyCode, ViewItemEvent } from '@faststore/sdk'
-import { sendAnalyticsEvent } from '@faststore/sdk'
import { gql } from '@generated'
import type { AnalyticsItem } from 'src/sdk/analytics/types'
@@ -12,10 +11,10 @@ import Section from '../Section'
import styles from './section.module.scss'
-import { usePDP } from '../../../sdk/overrides/PageProvider'
+import { getOverridableSection } from '../../../sdk/overrides/getOverriddenSection'
import { useOverrideComponents } from '../../../sdk/overrides/OverrideContext'
+import { usePDP } from '../../../sdk/overrides/PageProvider'
import { ProductDetailsDefaultComponents } from './DefaultComponents'
-import { getOverridableSection } from '../../../sdk/overrides/getOverriddenSection'
export interface ProductDetailsProps {
productTitle: {
@@ -115,25 +114,27 @@ function ProductDetails({
} = product
useEffect(() => {
- sendAnalyticsEvent>({
- name: 'view_item',
- params: {
- currency: currency.code as CurrencyCode,
- value: price,
- items: [
- {
- item_id: isVariantOf.productGroupID,
- item_name: isVariantOf.name,
- item_brand: brand.name,
- item_variant: sku,
- price,
- discount: listPrice - price,
- currency: currency.code as CurrencyCode,
- item_variant_name: variantName,
- product_reference_id: gtin,
- },
- ],
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent>({
+ name: 'view_item',
+ params: {
+ currency: currency.code as CurrencyCode,
+ value: price,
+ items: [
+ {
+ item_id: isVariantOf.productGroupID,
+ item_name: isVariantOf.name,
+ item_brand: brand.name,
+ item_variant: sku,
+ price,
+ discount: listPrice - price,
+ currency: currency.code as CurrencyCode,
+ item_variant_name: variantName,
+ product_reference_id: gtin,
+ },
+ ],
+ },
+ })
})
}, [
isVariantOf.productGroupID,
diff --git a/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts b/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
index 8aa7f397ed..ba957ff129 100644
--- a/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/usePageViewEvent.ts
@@ -1,17 +1,18 @@
-import { useCallback, useEffect } from 'react'
-import { useRouter } from 'next/router'
-import { sendAnalyticsEvent } from '@faststore/sdk'
import type { PageViewEvent } from '@faststore/sdk'
+import { useRouter } from 'next/router'
+import { useCallback, useEffect } from 'react'
export const usePageViewEvent = () => {
const sendPageViewEvent = useCallback(() => {
- sendAnalyticsEvent({
- name: 'page_view',
- params: {
- page_title: document.title,
- page_location: location.href,
- send_page_view: true,
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent({
+ name: 'page_view',
+ params: {
+ page_title: document.title,
+ page_location: location.href,
+ send_page_view: true,
+ },
+ })
})
}, [])
diff --git a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
index f2afd30484..a923494449 100644
--- a/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
+++ b/packages/core/src/sdk/analytics/hooks/useViewItemListEvent.ts
@@ -1,4 +1,3 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
import { useCallback } from 'react'
import type { CurrencyCode, ViewItemListEvent } from '@faststore/sdk'
@@ -25,25 +24,28 @@ export const useViewItemListEvent = ({
} = useSession()
const sendViewItemListEvent = useCallback(() => {
- sendAnalyticsEvent>({
- name: 'view_item_list',
- params: {
- item_list_name: title,
- item_list_id: title,
- items: products.map(({ node: product }, index) => ({
- item_id: product.isVariantOf.productGroupID,
- item_name: product.isVariantOf.name,
- item_brand: product.brand.name,
- item_variant: product.sku,
- price: product.offers.offers[0].price,
- index: page * pageSize + index + 1,
- discount:
- product.offers.offers[0].listPrice - product.offers.offers[0].price,
- currency: code as CurrencyCode,
- item_variant_name: product.name,
- product_reference_id: product.gtin,
- })),
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent>({
+ name: 'view_item_list',
+ params: {
+ item_list_name: title,
+ item_list_id: title,
+ items: products.map(({ node: product }, index) => ({
+ item_id: product.isVariantOf.productGroupID,
+ item_name: product.isVariantOf.name,
+ item_brand: product.brand.name,
+ item_variant: product.sku,
+ price: product.offers.offers[0].price,
+ index: page * pageSize + index + 1,
+ discount:
+ product.offers.offers[0].listPrice -
+ product.offers.offers[0].price,
+ currency: code as CurrencyCode,
+ item_variant_name: product.name,
+ product_reference_id: product.gtin,
+ })),
+ },
+ })
})
}, [code, products, title, page, pageSize])
diff --git a/packages/core/src/sdk/cart/useBuyButton.ts b/packages/core/src/sdk/cart/useBuyButton.ts
index 5317ed6e79..0964ae84e9 100644
--- a/packages/core/src/sdk/cart/useBuyButton.ts
+++ b/packages/core/src/sdk/cart/useBuyButton.ts
@@ -1,12 +1,11 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
+import type { AddToCartEvent, CurrencyCode } from '@faststore/sdk'
import { useCallback } from 'react'
-import type { CurrencyCode, AddToCartEvent } from '@faststore/sdk'
import type { AnalyticsItem } from 'src/sdk/analytics/types'
import type { CartItem } from 'src/sdk/cart'
-import { useSession } from '../session'
import { useUI } from '@faststore/ui'
+import { useSession } from '../session'
import { cartStore } from './index'
export const useBuyButton = (item: CartItem | null) => {
@@ -23,28 +22,30 @@ export const useBuyButton = (item: CartItem | null) => {
return
}
- sendAnalyticsEvent>({
- name: 'add_to_cart',
- params: {
- currency: code as CurrencyCode,
- // TODO: In the future, we can explore more robust ways of
- // calculating the value (gift items, discounts, etc.).
- value: item.price * item.quantity,
- items: [
- {
- item_id: item.itemOffered.isVariantOf.productGroupID,
- item_name: item.itemOffered.isVariantOf.name,
- item_brand: item.itemOffered.brand.name,
- item_variant: item.itemOffered.sku,
- quantity: item.quantity,
- price: item.price,
- discount: item.listPrice - item.price,
- currency: code as CurrencyCode,
- item_variant_name: item.itemOffered.name,
- product_reference_id: item.itemOffered.gtin,
- },
- ],
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent>({
+ name: 'add_to_cart',
+ params: {
+ currency: code as CurrencyCode,
+ // TODO: In the future, we can explore more robust ways of
+ // calculating the value (gift items, discounts, etc.).
+ value: item.price * item.quantity,
+ items: [
+ {
+ item_id: item.itemOffered.isVariantOf.productGroupID,
+ item_name: item.itemOffered.isVariantOf.name,
+ item_brand: item.itemOffered.brand.name,
+ item_variant: item.itemOffered.sku,
+ quantity: item.quantity,
+ price: item.price,
+ discount: item.listPrice - item.price,
+ currency: code as CurrencyCode,
+ item_variant_name: item.itemOffered.name,
+ product_reference_id: item.itemOffered.gtin,
+ },
+ ],
+ },
+ })
})
cartStore.addItem(item)
diff --git a/packages/core/src/sdk/cart/useRemoveButton.ts b/packages/core/src/sdk/cart/useRemoveButton.ts
index f8f2b64511..8cda59dd0d 100644
--- a/packages/core/src/sdk/cart/useRemoveButton.ts
+++ b/packages/core/src/sdk/cart/useRemoveButton.ts
@@ -1,12 +1,11 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
-import { useCallback } from 'react'
import type { CurrencyCode, RemoveFromCartEvent } from '@faststore/sdk'
+import { useCallback } from 'react'
import type { AnalyticsItem } from 'src/sdk/analytics/types'
+import type { CartItem } from '.'
import { useSession } from '../session'
import { cartStore } from './index'
-import type { CartItem } from '.'
export const useRemoveButton = (item: CartItem | null) => {
const {
@@ -21,26 +20,28 @@ export const useRemoveButton = (item: CartItem | null) => {
return
}
- sendAnalyticsEvent>({
- name: 'remove_from_cart',
- params: {
- currency: code as CurrencyCode,
- value: item.price * item.quantity, // TODO: In the future, we can explore more robust ways of calculating the value (gift items, discounts, etc.).
- items: [
- {
- item_id: item.itemOffered.isVariantOf.productGroupID,
- item_name: item.itemOffered.isVariantOf.name,
- item_brand: item.itemOffered.brand.name,
- item_variant: item.itemOffered.sku,
- quantity: item.quantity,
- price: item.price,
- discount: item.listPrice - item.price,
- currency: code as CurrencyCode,
- item_variant_name: item.itemOffered.name,
- product_reference_id: item.itemOffered.gtin,
- },
- ],
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent>({
+ name: 'remove_from_cart',
+ params: {
+ currency: code as CurrencyCode,
+ value: item.price * item.quantity, // TODO: In the future, we can explore more robust ways of calculating the value (gift items, discounts, etc.).
+ items: [
+ {
+ item_id: item.itemOffered.isVariantOf.productGroupID,
+ item_name: item.itemOffered.isVariantOf.name,
+ item_brand: item.itemOffered.brand.name,
+ item_variant: item.itemOffered.sku,
+ quantity: item.quantity,
+ price: item.price,
+ discount: item.listPrice - item.price,
+ currency: code as CurrencyCode,
+ item_variant_name: item.itemOffered.name,
+ product_reference_id: item.itemOffered.gtin,
+ },
+ ],
+ },
+ })
})
cartStore.removeItem(item.id)
diff --git a/packages/core/src/sdk/product/useProductGalleryQuery.ts b/packages/core/src/sdk/product/useProductGalleryQuery.ts
index 701d576e5e..40e63948f5 100644
--- a/packages/core/src/sdk/product/useProductGalleryQuery.ts
+++ b/packages/core/src/sdk/product/useProductGalleryQuery.ts
@@ -1,5 +1,3 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
-
import { gql } from '@generated'
import { useQuery } from 'src/sdk/graphql/useQuery'
import { useSession } from 'src/sdk/session'
@@ -83,16 +81,18 @@ export const useProductGalleryQuery = ({
return useQuery(query, localizedVariables, {
onSuccess: (data) => {
if (data && term) {
- sendAnalyticsEvent({
- name: 'intelligent_search_query',
- params: {
- locale,
- term,
- url: window.location.href,
- logicalOperator: data.search.metadata?.logicalOperator ?? 'and',
- isTermMisspelled: data.search.metadata?.isTermMisspelled ?? false,
- totalCount: data.search.products.pageInfo.totalCount,
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent({
+ name: 'intelligent_search_query',
+ params: {
+ locale,
+ term,
+ url: window.location.href,
+ logicalOperator: data.search.metadata?.logicalOperator ?? 'and',
+ isTermMisspelled: data.search.metadata?.isTermMisspelled ?? false,
+ totalCount: data.search.products.pageInfo.totalCount,
+ },
+ })
})
}
},
diff --git a/packages/core/src/sdk/product/useProductLink.ts b/packages/core/src/sdk/product/useProductLink.ts
index 488b901a3d..289bbcddc8 100644
--- a/packages/core/src/sdk/product/useProductLink.ts
+++ b/packages/core/src/sdk/product/useProductLink.ts
@@ -1,11 +1,10 @@
-import { sendAnalyticsEvent } from '@faststore/sdk'
-import { useCallback } from 'react'
import type { CurrencyCode, SelectItemEvent } from '@faststore/sdk'
+import { useCallback } from 'react'
import type { ProductSummary_ProductFragment } from '@generated/graphql'
-import { useSession } from '../session'
import type { AnalyticsItem, SearchSelectItemEvent } from '../analytics/types'
+import { useSession } from '../session'
export type ProductLinkOptions = {
index: number
@@ -24,40 +23,42 @@ export const useProductLink = ({
} = useSession()
const onClick = useCallback(() => {
- sendAnalyticsEvent>({
- name: 'select_item',
- params: {
- items: [
- {
- item_id: product.isVariantOf.productGroupID,
- item_name: product.isVariantOf.name,
- item_brand: product.brand.name,
- item_variant: product.sku,
- index,
- price: product.offers.offers[selectedOffer].price,
- discount:
- product.offers.offers[selectedOffer].listPrice -
- product.offers.offers[selectedOffer].price,
- currency: code as CurrencyCode,
- item_variant_name: product.name,
- product_reference_id: product.gtin,
- },
- ],
- },
- })
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent>({
+ name: 'select_item',
+ params: {
+ items: [
+ {
+ item_id: product.isVariantOf.productGroupID,
+ item_name: product.isVariantOf.name,
+ item_brand: product.brand.name,
+ item_variant: product.sku,
+ index,
+ price: product.offers.offers[selectedOffer].price,
+ discount:
+ product.offers.offers[selectedOffer].listPrice -
+ product.offers.offers[selectedOffer].price,
+ currency: code as CurrencyCode,
+ item_variant_name: product.name,
+ product_reference_id: product.gtin,
+ },
+ ],
+ },
+ })
- sendAnalyticsEvent({
- name: 'search_select_item',
- params: {
- url: window.location.href,
- items: [
- {
- item_id: product.isVariantOf.productGroupID,
- item_variant: product.sku,
- index,
- },
- ],
- },
+ sendAnalyticsEvent({
+ name: 'search_select_item',
+ params: {
+ url: window.location.href,
+ items: [
+ {
+ item_id: product.isVariantOf.productGroupID,
+ item_variant: product.sku,
+ index,
+ },
+ ],
+ },
+ })
})
}, [code, product, index, selectedOffer])
diff --git a/packages/core/src/sdk/search/useSuggestions.ts b/packages/core/src/sdk/search/useSuggestions.ts
index 54e88fbb84..8eab11fe68 100644
--- a/packages/core/src/sdk/search/useSuggestions.ts
+++ b/packages/core/src/sdk/search/useSuggestions.ts
@@ -1,6 +1,5 @@
import { useMemo } from 'react'
-import { sendAnalyticsEvent } from '@faststore/sdk'
import { useQuery } from 'src/sdk/graphql/useQuery'
import { gql } from '@generated'
@@ -55,18 +54,20 @@ function useSuggestions(term: string) {
const { data, error } = useQuery(query, variables, {
onSuccess: (callbackData) => {
if (callbackData && term) {
- sendAnalyticsEvent({
- name: 'intelligent_search_query',
- params: {
- locale,
- term,
- url: window.location.href,
- logicalOperator:
- callbackData.search.metadata?.logicalOperator ?? 'and',
- isTermMisspelled:
- callbackData.search.metadata?.isTermMisspelled ?? false,
- totalCount: callbackData.search.products.pageInfo.totalCount,
- },
+ import('@faststore/sdk').then(({ sendAnalyticsEvent }) => {
+ sendAnalyticsEvent({
+ name: 'intelligent_search_query',
+ params: {
+ locale,
+ term,
+ url: window.location.href,
+ logicalOperator:
+ callbackData.search.metadata?.logicalOperator ?? 'and',
+ isTermMisspelled:
+ callbackData.search.metadata?.isTermMisspelled ?? false,
+ totalCount: callbackData.search.products.pageInfo.totalCount,
+ },
+ })
})
}
},
From 7d804304162f7611bfa338edeb0cc1b5934f0d4d Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 8 Oct 2024 14:45:54 +0000
Subject: [PATCH 086/154] [no ci] Release: 3.0.127
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 4ae17bffb6..407c26b3d9 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.126",
+ "version": "3.0.127",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 815818d79d..b068d22d79 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.126 linux-x64 node-v18.20.4
+@faststore/cli/3.0.127 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -60,7 +60,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +75,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,7 +95,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/create.ts)_
## `faststore dev [PATH]`
@@ -107,7 +107,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -154,7 +154,7 @@ ARGUMENTS
PATH The path where the FastStore being run is. Defaults to cwd.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +166,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.126/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 09487734af..6b97ba1c75 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.126",
+ "version": "3.0.127",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.126",
+ "@faststore/core": "^3.0.127",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 37d0a4e590..1b217306e0 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.126",
+ "version": "3.0.127",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From d88a361c1d98e7d11929a4971d721677e2dcd2d0 Mon Sep 17 00:00:00 2001
From: Guilherme Carvalho <77246+gvc@users.noreply.github.com>
Date: Tue, 8 Oct 2024 16:55:30 -0300
Subject: [PATCH 087/154] chore: adjust CLI to meet FSP Spec (#2491)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
To work with the Platform CLI, the FastStore CLI commands needs to
accept more arguments. I've added such arguments but they are not being
used, so this should not affect current behavior in any way.
## How to test it?
Install the version generated by the codesandbox and call all commands
:)
### Starters Deploy Preview
[Code](https://github.com/vtex-sites/starter.store/pull/566) | [Store
(Vercel)](https://starter-rnshhkjja-faststore.vercel.app/) | [Store
(Homebrew)](https://sfj-164c14b--starter.preview.vtex.app/)
## References
[FastStore Platform
Spec](https://github.com/vtex/faststore-platform/blob/main/docs/specification.md)
---------
Co-authored-by: Larícia Mota
---
packages/cli/src/commands/build.ts | 5 +++++
packages/cli/src/commands/dev.ts | 21 ++++++++++++++++-----
packages/cli/src/commands/start.ts | 17 ++++++++++++++---
packages/cli/src/utils/directory.test.ts | 16 ++++++++++++++--
packages/cli/src/utils/directory.ts | 6 +++---
5 files changed, 52 insertions(+), 13 deletions(-)
diff --git a/packages/cli/src/commands/build.ts b/packages/cli/src/commands/build.ts
index c505bbaa16..71a7961e6e 100644
--- a/packages/cli/src/commands/build.ts
+++ b/packages/cli/src/commands/build.ts
@@ -9,6 +9,11 @@ import { generate } from '../utils/generate'
export default class Build extends Command {
static args = [
+ {
+ name: 'account',
+ description:
+ 'The account for which the Discovery is running. Currently noop.',
+ },
{
name: 'path',
description:
diff --git a/packages/cli/src/commands/dev.ts b/packages/cli/src/commands/dev.ts
index fa956e946e..dd0dfe6fbd 100644
--- a/packages/cli/src/commands/dev.ts
+++ b/packages/cli/src/commands/dev.ts
@@ -35,7 +35,7 @@ const defaultIgnored = [
const devAbortController = new AbortController()
-async function storeDev(rootDir: string, tmpDir: string, coreDir: string) {
+async function storeDev(rootDir: string, tmpDir: string, coreDir: string, port: number) {
const envVars = dotenv.parse(readFileSync(path.join(rootDir, 'vtex.env')))
const packageManager = getPreferredPackageManager()
@@ -56,7 +56,7 @@ async function storeDev(rootDir: string, tmpDir: string, coreDir: string) {
console.log(`Attempted to copy from ${path.join(tmpDir, '@generated')} to ${path.join(coreDir, '@generated')}`)
}
- const devProcess = spawn(`${packageManager} dev-only`, {
+ const devProcess = spawn(`${packageManager} dev-only --port ${port}`, {
shell: true,
cwd: tmpDir,
signal: devAbortController.signal,
@@ -84,15 +84,26 @@ function copyGenerated(from: string, to: string) {
export default class Dev extends Command {
static args = [
+ {
+ name: 'account',
+ description:
+ 'The account for which the Discovery is running. Currently noop.',
+ },
{
name: 'path',
- description: 'The path where the FastStore being run is. Defaults to cwd.',
- }
+ description:
+ 'The path where the FastStore being run is. Defaults to cwd.',
+ },
+ {
+ name: 'port',
+ description: 'The port where FastStore should run. Defaults to 3000.',
+ },
]
async run() {
const { args } = await this.parse(Dev)
const basePath = args.path ?? process.cwd()
+ const port = args.port ?? 3000
const { getRoot, tmpDir, coreDir } = withBasePath(basePath)
@@ -118,7 +129,7 @@ export default class Dev extends Command {
await generate({ setup: true, basePath })
- storeDev(getRoot(), tmpDir, coreDir)
+ storeDev(getRoot(), tmpDir, coreDir, port)
return await new Promise((resolve, reject) => {
watcher
diff --git a/packages/cli/src/commands/start.ts b/packages/cli/src/commands/start.ts
index beb85f1d78..7ebed97066 100644
--- a/packages/cli/src/commands/start.ts
+++ b/packages/cli/src/commands/start.ts
@@ -6,15 +6,26 @@ import { getPreferredPackageManager } from '../utils/commands'
export default class Start extends Command {
static args = [
+ {
+ name: 'account',
+ description:
+ 'The account for which the Discovery is running. Currently noop.',
+ },
{
name: 'path',
- description: 'The path where the FastStore being run is. Defaults to cwd.',
- }
+ description:
+ 'The path where the FastStore being run is. Defaults to cwd.',
+ },
+ {
+ name: 'port',
+ description: 'The port where FastStore should run. Defaults to 3000.',
+ },
]
async run() {
const { args } = await this.parse(Start)
const basePath = args.path ?? process.cwd()
+ const port = args.port ?? 3000
const { tmpDir } = withBasePath(basePath)
const packageManager = getPreferredPackageManager()
@@ -24,7 +35,7 @@ export default class Start extends Command {
)
}
- return spawn(`${packageManager} run serve`, {
+ return spawn(`${packageManager} run serve -p ${port}`, {
shell: true,
cwd: tmpDir,
stdio: 'inherit',
diff --git a/packages/cli/src/utils/directory.test.ts b/packages/cli/src/utils/directory.test.ts
index c452f5d646..fa0308fd30 100644
--- a/packages/cli/src/utils/directory.test.ts
+++ b/packages/cli/src/utils/directory.test.ts
@@ -8,6 +8,12 @@ const pathsToMatch = (expected: string, desired: string) => {
return expectedResolved === desiredResolved
}
+const originalProcessCwd = process.cwd
+
+beforeEach(() => {
+ process.cwd = originalProcessCwd
+})
+
describe('withBasePath as the current dir `.`', () => {
const basePath = '.'
@@ -79,8 +85,6 @@ describe('withBasePath as the current dir `.`', () => {
it('returns the path of the user discovery.config file', () => {
const { userStoreConfigFile: userStoreConfigFileWithBase } = withBasePath(basePath)
- console.log('userStoreConfigFileWithBase', userStoreConfigFileWithBase);
-
expect(pathsToMatch(userStoreConfigFileWithBase, './discovery.config.js')).toBe(true)
})
})
@@ -99,6 +103,8 @@ describe('withBasePath as an arbitrary dir', () => {
describe('coreDir', () => {
it('is the faststoreDir + core', () => {
+ const mockedCwd = jest.fn(() => { return './src/__mocks__/store' })
+ process.cwd = mockedCwd
const { coreDir: coreDirWithBase } = withBasePath(basePath)
expect(pathsToMatch(coreDirWithBase, './src/__mocks__/store/node_modules/@faststore/core')).toBe(true)
@@ -106,6 +112,9 @@ describe('withBasePath as an arbitrary dir', () => {
describe('when is in a monorepo', () => {
it('can look at its parent until it reaches the monorepo directory', () => {
+ const mockedCwd = jest.fn(() => { return './src/__mocks__/monorepo' })
+ process.cwd = mockedCwd
+
const { coreDir: coreDirWithBase } = withBasePath(path.join(__dirname, '..', '__mocks__', 'monorepo', 'discovery'))
expect(pathsToMatch(coreDirWithBase, './src/__mocks__/monorepo/node_modules/@faststore/core')).toBe(true)
@@ -171,6 +180,9 @@ describe('withBasePath as an arbitrary dir', () => {
describe('coreCMSDir', () => {
it('returns the path of the CMS dir on @faststore/core package', () => {
+ const mockedCwd = jest.fn(() => { return './src/__mocks__/store' })
+ process.cwd = mockedCwd
+
const { coreCMSDir: coreCMSDirWithBase } = withBasePath(basePath)
expect(pathsToMatch(coreCMSDirWithBase, './src/__mocks__/store/node_modules/@faststore/core/cms/faststore')).toBe(true)
diff --git a/packages/cli/src/utils/directory.ts b/packages/cli/src/utils/directory.ts
index e21fef6fbb..521354c540 100644
--- a/packages/cli/src/utils/directory.ts
+++ b/packages/cli/src/utils/directory.ts
@@ -12,10 +12,10 @@ export const withBasePath = (basepath: string) => {
if (basepath.endsWith(tmpFolderName)) {
// if the current working directory is the build folder (tmp folder), return the starter root
// this makes sure the semantics of the starter root are consistent with the directories declared below
- return path.join(basepath, '..')
+ return path.resolve(process.cwd(), path.join(basepath, '..'))
}
- return basepath
+ return path.resolve(process.cwd(), basepath)
}
/*
@@ -31,7 +31,7 @@ export const withBasePath = (basepath: string) => {
let attemptedPath
do {
- attemptedPath = path.join(basepath, ...parents, coreFromNodeModules)
+ attemptedPath = path.join(resolvedCwd, basepath, ...parents, coreFromNodeModules)
if (fs.existsSync(attemptedPath)) {
return attemptedPath
From 37e2acff2335defce528f67e09ad38d5675964c8 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 8 Oct 2024 20:01:01 +0000
Subject: [PATCH 088/154] [no ci] Release: 3.0.128
---
lerna.json | 2 +-
packages/cli/README.md | 45 ++++++++++++++++++++++-----------------
packages/cli/package.json | 2 +-
3 files changed, 27 insertions(+), 22 deletions(-)
diff --git a/lerna.json b/lerna.json
index 407c26b3d9..fe863aa40e 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.127",
+ "version": "3.0.128",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index b068d22d79..f9ee609324 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.127 linux-x64 node-v18.20.4
+@faststore/cli/3.0.128 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -41,26 +41,27 @@ USAGE
## Commands
-* [`faststore build [PATH]`](#faststore-build-path)
+* [`faststore build [ACCOUNT] [PATH]`](#faststore-build-account-path)
* [`faststore cms-sync [PATH]`](#faststore-cms-sync-path)
* [`faststore create [PATH]`](#faststore-create-path)
-* [`faststore dev [PATH]`](#faststore-dev-path)
+* [`faststore dev [ACCOUNT] [PATH] [PORT]`](#faststore-dev-account-path-port)
* [`faststore generate-graphql [PATH]`](#faststore-generate-graphql-path)
* [`faststore help [COMMAND]`](#faststore-help-command)
-* [`faststore start [PATH]`](#faststore-start-path)
+* [`faststore start [ACCOUNT] [PATH] [PORT]`](#faststore-start-account-path-port)
* [`faststore test [PATH]`](#faststore-test-path)
-## `faststore build [PATH]`
+## `faststore build [ACCOUNT] [PATH]`
```
USAGE
- $ faststore build [PATH]
+ $ faststore build [ACCOUNT] [PATH]
ARGUMENTS
- PATH The path where the FastStore being built is. Defaults to cwd.
+ ACCOUNT The account for which the Discovery is running. Currently noop.
+ PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -75,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -95,19 +96,21 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/create.ts)_
-## `faststore dev [PATH]`
+## `faststore dev [ACCOUNT] [PATH] [PORT]`
```
USAGE
- $ faststore dev [PATH]
+ $ faststore dev [ACCOUNT] [PATH] [PORT]
ARGUMENTS
- PATH The path where the FastStore being run is. Defaults to cwd.
+ ACCOUNT The account for which the Discovery is running. Currently noop.
+ PATH The path where the FastStore being run is. Defaults to cwd.
+ PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -144,17 +147,19 @@ DESCRIPTION
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.22/src/commands/help.ts)_
-## `faststore start [PATH]`
+## `faststore start [ACCOUNT] [PATH] [PORT]`
```
USAGE
- $ faststore start [PATH]
+ $ faststore start [ACCOUNT] [PATH] [PORT]
ARGUMENTS
- PATH The path where the FastStore being run is. Defaults to cwd.
+ ACCOUNT The account for which the Discovery is running. Currently noop.
+ PATH The path where the FastStore being run is. Defaults to cwd.
+ PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -166,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.127/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 6b97ba1c75..8ca3f5057f 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.127",
+ "version": "3.0.128",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
From 999f6328ae2fb2b7447cc104301b422ba40607a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lar=C3=ADcia=20Mota?=
Date: Wed, 9 Oct 2024 10:39:18 -0300
Subject: [PATCH 089/154] Chore: Updates Envelop from v3 to v4 (#2479)
## What's the purpose of this pull request?
Update the Envelop to v4.
## How it works?
Unlike the v3 migration, this one did not require any changes other than
changing the version.
## How to test it?
Run the project and check if it continues working the same.
### Starters Deploy Preview
Here is the preview of the starter store:
https://sfj-90987e3--starter.preview.vtex.app/
([PR](https://github.com/vtex-sites/starter.store/pull/555)).
I've also updated the playground store to test in a store with some
level of customization (API extension for example):
https://sfj-9866076--playground.preview.vtex.app/
([PR](https://github.com/vtex-sites/playground.store/pull/89)).
## References
- [Envelop Migration
doc](https://the-guild.dev/graphql/envelop/v4/guides/migrating-from-v3-to-v4)
- [Jira task](https://vtex-dev.atlassian.net/browse/SFS-1560)
---
packages/api/package.json | 4 +--
packages/core/package.json | 8 ++---
packages/core/src/server/index.ts | 4 +--
yarn.lock | 56 +++++++++++++++----------------
4 files changed, 35 insertions(+), 37 deletions(-)
diff --git a/packages/api/package.json b/packages/api/package.json
index 2796c03ef3..e95bde2f77 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -50,7 +50,7 @@
"sanitize-html": "^2.11.0"
},
"devDependencies": {
- "@envelop/core": "^3.0.0",
+ "@envelop/core": "^4.0.0",
"@faststore/eslint-config": "^3.0.116",
"@faststore/shared": "^3.0.116",
"@graphql-codegen/cli": "2.2.0",
@@ -73,7 +73,7 @@
"typescript": "^5.3.2"
},
"peerDependencies": {
- "@envelop/core": "^3",
+ "@envelop/core": "^4",
"graphql": "^15.6.0"
},
"volta": {
diff --git a/packages/core/package.json b/packages/core/package.json
index 1b217306e0..85f07e5dbc 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -39,10 +39,10 @@
"dependencies": {
"@antfu/ni": "^0.21.12",
"@builder.io/partytown": "^0.6.1",
- "@envelop/core": "^3.0.0",
- "@envelop/graphql-jit": "^3.0.0",
- "@envelop/parser-cache": "^3.0.0",
- "@envelop/validation-cache": "^3.0.0",
+ "@envelop/core": "^4.0.0",
+ "@envelop/graphql-jit": "^4.0.0",
+ "@envelop/parser-cache": "^4.0.0",
+ "@envelop/validation-cache": "^4.0.0",
"@faststore/api": "^3.0.124",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
diff --git a/packages/core/src/server/index.ts b/packages/core/src/server/index.ts
index 9a03282056..3f73f38e61 100644
--- a/packages/core/src/server/index.ts
+++ b/packages/core/src/server/index.ts
@@ -5,7 +5,7 @@ import {
useEngine,
useExtendContext,
useMaskedErrors,
- useSchema,
+ useSchema
} from '@envelop/core'
import { useGraphQlJit } from '@envelop/graphql-jit'
import { useParserCache } from '@envelop/parser-cache'
@@ -14,7 +14,7 @@ import type { CacheControl, Maybe } from '@faststore/api'
import {
getContextFactory,
getResolvers,
- isFastStoreError,
+ isFastStoreError
} from '@faststore/api'
import { loadFilesSync } from '@graphql-tools/load-files'
import { makeExecutableSchema } from '@graphql-tools/schema'
diff --git a/yarn.lock b/yarn.lock
index e74a205787..3b1bfedfeb 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -867,33 +867,35 @@
debug "^3.1.0"
lodash.once "^4.1.1"
-"@envelop/core@^3.0.0":
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/@envelop/core/-/core-3.0.6.tgz#e55c3564d05d648b0356a1c465aa90b0c51f485d"
- integrity sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig==
+"@envelop/core@^4.0.0":
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/@envelop/core/-/core-4.0.3.tgz#6bc3e1ed3b31aa41d81106eb5071a9b8eec188d0"
+ integrity sha512-O0Vz8E0TObT6ijAob8jYFVJavcGywKThM3UAsxUIBBVPYZTMiqI9lo2gmAnbMUnrDcAYkUTZEW9FDYPRdF5l6g==
dependencies:
- "@envelop/types" "3.0.2"
+ "@envelop/types" "4.0.1"
tslib "^2.5.0"
-"@envelop/graphql-jit@^3.0.0":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/@envelop/graphql-jit/-/graphql-jit-3.1.0.tgz#8427fc72ce18038dd99bd245bb34bf108b51bd97"
- integrity sha512-WC45dCmZRFMdxIHZ5H3MFtNVFoVBiUMS4Xl9bKAUIIiGP50FgfV+NtuNIKTzbbPxADpGCIXPYsjNbdPOBnGCDg==
+"@envelop/graphql-jit@^4.0.0":
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/@envelop/graphql-jit/-/graphql-jit-4.6.0.tgz#3b771d1fa7c6907f7d64120382a3e9f405a8cbaa"
+ integrity sha512-6RM+uSfKN7i9rlEcaAvraF/GsFNB4JoCuEUDEdMjOxJVoADvg1MsmzgGPoIAlpZZIQ//A8Pp+A+qWkJW4Wn4PA==
dependencies:
graphql-jit "^0.7.0"
- tiny-lru "7.0.6"
+ lru-cache "^6.0.0"
+ tslib "^2.4.0"
"@envelop/on-resolve@^3.0.0":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@envelop/on-resolve/-/on-resolve-3.0.3.tgz#cfba1726c2b79b6b2d9e7333878a5b6e1c95e3f5"
integrity sha512-Mo2w3CHmyLCScFuIO2VS2Co44vlPSc4zwujz0x+/zyaJ+eCwBQMRuE9u+9ORjvKImNxrbXI9FQVNlbF0iDk4iQ==
-"@envelop/parser-cache@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@envelop/parser-cache/-/parser-cache-3.0.0.tgz#2b24131fe1a715c06e0ab50d376777477f8fcf50"
- integrity sha512-1Pf4pnxrpPBM2N+dDdhRYoUbIK9K0xxzW4PbjWPCQe2C2owOfc+ndZad1nn9Yi1i5hibqwcltsQPmeUCsVPltw==
+"@envelop/parser-cache@^4.0.0":
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/@envelop/parser-cache/-/parser-cache-4.7.0.tgz#fc438d8ed390c88fa24bf56da3e4da36f088e3fc"
+ integrity sha512-63NfXDcW/vGn4U6NFxaZ0JbYWAcJb9A6jhTvghsSz1ZS+Dny/ci8bVSgVmM1q+N56hPyGsVPuyI+rIc71mPU5g==
dependencies:
- tiny-lru "7.0.6"
+ lru-cache "^6.0.0"
+ tslib "^2.4.0"
"@envelop/testing@^6.0.0":
version "6.0.0"
@@ -903,19 +905,20 @@
"@graphql-tools/utils" "^10.0.0"
tslib "^2.5.0"
-"@envelop/types@3.0.2":
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/@envelop/types/-/types-3.0.2.tgz#a4b29375b7fcee39bb5830f87f66bbc815cf305e"
- integrity sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng==
+"@envelop/types@4.0.1":
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/@envelop/types/-/types-4.0.1.tgz#145690d8266a003cdb06dd58fa1236e3c80050a9"
+ integrity sha512-ULo27/doEsP7uUhm2iTnElx13qTO6I5FKvmLoX41cpfuw8x6e0NUFknoqhEsLzAbgz8xVS5mjwcxGCXh4lDYzg==
dependencies:
tslib "^2.5.0"
-"@envelop/validation-cache@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-3.0.0.tgz#3cac3f25a709a53c4d9d504fd84380ce7cd04281"
- integrity sha512-JqTA6huTygAlQilaVEM77DlFdGSptf5ElOWX7wdu0VC15h2Np7MmnsyOcy7xQI1Sc7B3oaNSo12l3QD6K28vOQ==
+"@envelop/validation-cache@^4.0.0":
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-4.7.0.tgz#6871116c5387cd7c310b9ae9187d29c2793ae33f"
+ integrity sha512-PzL+GfWJRT+JjsJqZAIxHKEkvkM3hxkeytS5O0QLXT8kURNBV28r+Kdnn2RCF5+6ILhyGpiDb60vaquBi7g4lw==
dependencies:
- tiny-lru "7.0.6"
+ lru-cache "^6.0.0"
+ tslib "^2.4.0"
"@esbuild/android-arm64@0.18.20":
version "0.18.20"
@@ -17240,11 +17243,6 @@ timed-out@4.0.1:
resolved "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"
integrity sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==
-tiny-lru@7.0.6:
- version "7.0.6"
- resolved "https://registry.npmjs.org/tiny-lru/-/tiny-lru-7.0.6.tgz"
- integrity sha512-zNYO0Kvgn5rXzWpL0y3RS09sMK67eGaQj9805jlK9G6pSadfriTczzLHFXa/xcW4mIRfmlB9HyQ/+SgL0V1uow==
-
title-case@^3.0.3:
version "3.0.3"
resolved "https://registry.npmjs.org/title-case/-/title-case-3.0.3.tgz"
From 8de84b10ff99f3c137e73c2bb27970f03dc28d62 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 9 Oct 2024 13:45:15 +0000
Subject: [PATCH 090/154] [no ci] Release: 3.0.129
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 1d378daf68..8438d9ac4b 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.124",
+ "version": "3.0.129",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.124",
+ "@faststore/api": "^3.0.129",
"@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index fe863aa40e..a6aa09bb99 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.128",
+ "version": "3.0.129",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index e95bde2f77..1997f9cc0a 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.124",
+ "version": "3.0.129",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index f9ee609324..c37f6c8a52 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.128 linux-x64 node-v18.20.4
+@faststore/cli/3.0.129 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.128/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 8ca3f5057f..613d995c19 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.128",
+ "version": "3.0.129",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.127",
+ "@faststore/core": "^3.0.129",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 85f07e5dbc..a026bfd84b 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.127",
+ "version": "3.0.129",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^4.0.0",
"@envelop/parser-cache": "^4.0.0",
"@envelop/validation-cache": "^4.0.0",
- "@faststore/api": "^3.0.124",
+ "@faststore/api": "^3.0.129",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
"@faststore/lighthouse": "^3.0.116",
From 67b50bdadb1f3d452e9b024b07c09214d9fba117 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lar=C3=ADcia=20Mota?=
Date: Thu, 10 Oct 2024 14:35:25 -0300
Subject: [PATCH 091/154] chore: Migrate envelop core to v5 (#2480)
## What's the purpose of this pull request?
Update the Envelop to v5.
## How it works?
Like the v4 migration, this one did not require any changes other than
changing the version.
## How to test it?
Run the project and check if it continues working the same.
### Starters Deploy Preview
Here is the preview of the starter store:
https://sfj-b81808d--starter.preview.vtex.app/
([PR](https://github.com/vtex-sites/starter.store/pull/568)).
I've also updated the playground store to test in a store with some
level of customization (API extension for example):
https://sfj-1dad18a--playground.preview.vtex.app/
([PR](https://github.com/vtex-sites/playground.store/pull/99)).
## References
- [Envelop
release](https://github.com/n1ru4l/envelop/releases/tag/release-1697443919030)
- [Jira task](https://vtex-dev.atlassian.net/browse/SFS-1561)
---
packages/api/package.json | 6 +-
packages/core/package.json | 8 +-
yarn.lock | 161 +++++++++++++++++++++++++------------
3 files changed, 115 insertions(+), 60 deletions(-)
diff --git a/packages/api/package.json b/packages/api/package.json
index 1997f9cc0a..c1f99f57d6 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -34,7 +34,7 @@
"generate": "graphql-codegen --config codegen.yml"
},
"dependencies": {
- "@envelop/on-resolve": "^3.0.0",
+ "@envelop/on-resolve": "^4.1.1",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/schema": "^9.0.0",
"@opentelemetry/exporter-logs-otlp-grpc": "^0.39.1",
@@ -50,7 +50,7 @@
"sanitize-html": "^2.11.0"
},
"devDependencies": {
- "@envelop/core": "^4.0.0",
+ "@envelop/core": "^5.0.2",
"@faststore/eslint-config": "^3.0.116",
"@faststore/shared": "^3.0.116",
"@graphql-codegen/cli": "2.2.0",
@@ -73,7 +73,7 @@
"typescript": "^5.3.2"
},
"peerDependencies": {
- "@envelop/core": "^4",
+ "@envelop/core": "^5",
"graphql": "^15.6.0"
},
"volta": {
diff --git a/packages/core/package.json b/packages/core/package.json
index a026bfd84b..411d4c9de5 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -39,10 +39,10 @@
"dependencies": {
"@antfu/ni": "^0.21.12",
"@builder.io/partytown": "^0.6.1",
- "@envelop/core": "^4.0.0",
- "@envelop/graphql-jit": "^4.0.0",
- "@envelop/parser-cache": "^4.0.0",
- "@envelop/validation-cache": "^4.0.0",
+ "@envelop/core": "^5.0.2",
+ "@envelop/graphql-jit": "^8.0.3",
+ "@envelop/parser-cache": "^6.0.2",
+ "@envelop/validation-cache": "^6.0.2",
"@faststore/api": "^3.0.129",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
diff --git a/yarn.lock b/yarn.lock
index 3b1bfedfeb..e5e2a44578 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -867,35 +867,35 @@
debug "^3.1.0"
lodash.once "^4.1.1"
-"@envelop/core@^4.0.0":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@envelop/core/-/core-4.0.3.tgz#6bc3e1ed3b31aa41d81106eb5071a9b8eec188d0"
- integrity sha512-O0Vz8E0TObT6ijAob8jYFVJavcGywKThM3UAsxUIBBVPYZTMiqI9lo2gmAnbMUnrDcAYkUTZEW9FDYPRdF5l6g==
+"@envelop/core@^5.0.2":
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/@envelop/core/-/core-5.0.2.tgz#f9649c72e66d78b55aafa0d2d2cfa5f9c3bfc127"
+ integrity sha512-tVL6OrMe6UjqLosiE+EH9uxh2TQC0469GwF4tE014ugRaDDKKVWwFwZe0TBMlcyHKh5MD4ZxktWo/1hqUxIuhw==
dependencies:
- "@envelop/types" "4.0.1"
+ "@envelop/types" "5.0.0"
tslib "^2.5.0"
-"@envelop/graphql-jit@^4.0.0":
- version "4.6.0"
- resolved "https://registry.yarnpkg.com/@envelop/graphql-jit/-/graphql-jit-4.6.0.tgz#3b771d1fa7c6907f7d64120382a3e9f405a8cbaa"
- integrity sha512-6RM+uSfKN7i9rlEcaAvraF/GsFNB4JoCuEUDEdMjOxJVoADvg1MsmzgGPoIAlpZZIQ//A8Pp+A+qWkJW4Wn4PA==
+"@envelop/graphql-jit@^8.0.3":
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/@envelop/graphql-jit/-/graphql-jit-8.0.3.tgz#6b3fe0fcf9b0dfbfb02571327dd60ebd5ef74d6e"
+ integrity sha512-IZnKc7dVOQV9jEi5s5RkG8fVKqc6Ss/mBN9PRt2iYFa9o6XkL/haPLJRfWFsS/CSJfFOQuzLyxYuALA8DaoOYw==
dependencies:
- graphql-jit "^0.7.0"
- lru-cache "^6.0.0"
- tslib "^2.4.0"
+ graphql-jit "0.8.6"
+ tslib "^2.5.0"
+ value-or-promise "^1.0.12"
-"@envelop/on-resolve@^3.0.0":
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/@envelop/on-resolve/-/on-resolve-3.0.3.tgz#cfba1726c2b79b6b2d9e7333878a5b6e1c95e3f5"
- integrity sha512-Mo2w3CHmyLCScFuIO2VS2Co44vlPSc4zwujz0x+/zyaJ+eCwBQMRuE9u+9ORjvKImNxrbXI9FQVNlbF0iDk4iQ==
+"@envelop/on-resolve@^4.1.1":
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/@envelop/on-resolve/-/on-resolve-4.1.1.tgz#e4eba4588cfc877954125c69278384ce10a66474"
+ integrity sha512-Zkc+OJMpmxStcx7DlCf/IqnKhCag8LJCfE0rzjnECdSQMBfdTY/9V5CtwdCM8kOAZAC0B4o9tVMwc/I8PfthqQ==
-"@envelop/parser-cache@^4.0.0":
- version "4.7.0"
- resolved "https://registry.yarnpkg.com/@envelop/parser-cache/-/parser-cache-4.7.0.tgz#fc438d8ed390c88fa24bf56da3e4da36f088e3fc"
- integrity sha512-63NfXDcW/vGn4U6NFxaZ0JbYWAcJb9A6jhTvghsSz1ZS+Dny/ci8bVSgVmM1q+N56hPyGsVPuyI+rIc71mPU5g==
+"@envelop/parser-cache@^6.0.2":
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/@envelop/parser-cache/-/parser-cache-6.0.4.tgz#56eb6e2b86641f557165892d5b502dc5921b8d15"
+ integrity sha512-u1cDAFlZ8hGU/F5b/Xeu/OlCGhMfN6Wcdo+KXcOJBL+Uh+0AHNCoD0FJXavwX1KhLpT03dSjFPgl1KDRx8HSYQ==
dependencies:
- lru-cache "^6.0.0"
- tslib "^2.4.0"
+ lru-cache "^10.0.0"
+ tslib "^2.5.0"
"@envelop/testing@^6.0.0":
version "6.0.0"
@@ -905,20 +905,21 @@
"@graphql-tools/utils" "^10.0.0"
tslib "^2.5.0"
-"@envelop/types@4.0.1":
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/@envelop/types/-/types-4.0.1.tgz#145690d8266a003cdb06dd58fa1236e3c80050a9"
- integrity sha512-ULo27/doEsP7uUhm2iTnElx13qTO6I5FKvmLoX41cpfuw8x6e0NUFknoqhEsLzAbgz8xVS5mjwcxGCXh4lDYzg==
+"@envelop/types@5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@envelop/types/-/types-5.0.0.tgz#3ae59b50ec31d4bdcc7bd0b47e9c8cf2ac44b0ff"
+ integrity sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==
dependencies:
tslib "^2.5.0"
-"@envelop/validation-cache@^4.0.0":
- version "4.7.0"
- resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-4.7.0.tgz#6871116c5387cd7c310b9ae9187d29c2793ae33f"
- integrity sha512-PzL+GfWJRT+JjsJqZAIxHKEkvkM3hxkeytS5O0QLXT8kURNBV28r+Kdnn2RCF5+6ILhyGpiDb60vaquBi7g4lw==
+"@envelop/validation-cache@^6.0.2":
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/@envelop/validation-cache/-/validation-cache-6.0.4.tgz#4a40dda3344c0ea5a435ee6866b7a5b407a2d839"
+ integrity sha512-yNGi46zD1ES2DmKLnMp0JUy4g7exKrgC4y4C4rRfhZIt3TGy/J0Tae5BJ2vVvsZKX/AVSrPI7iLnIVyCXQQrcg==
dependencies:
- lru-cache "^6.0.0"
- tslib "^2.4.0"
+ hash-it "^6.0.0"
+ lru-cache "^10.0.0"
+ tslib "^2.5.0"
"@esbuild/android-arm64@0.18.20":
version "0.18.20"
@@ -1050,6 +1051,13 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
+"@fastify/merge-json-schemas@^0.1.0":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@fastify/merge-json-schemas/-/merge-json-schemas-0.1.1.tgz#3551857b8a17a24e8c799e9f51795edb07baa0bc"
+ integrity sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA==
+ dependencies:
+ fast-deep-equal "^3.1.3"
+
"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3":
version "1.1.3"
resolved "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz"
@@ -4697,12 +4705,19 @@ aggregate-error@^3.0.0:
clean-stack "^2.0.0"
indent-string "^4.0.0"
+ajv-formats@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-3.0.1.tgz#3d5dc762bca17679c3c2ea7e90ad6b7532309578"
+ integrity sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==
+ dependencies:
+ ajv "^8.0.0"
+
ajv-keywords@^3.5.2:
version "3.5.2"
resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
-ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.4:
+ajv@^6.10.0, ajv@^6.12.4:
version "6.12.6"
resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -4712,6 +4727,16 @@ ajv@^6.10.0, ajv@^6.11.0, ajv@^6.12.4:
json-schema-traverse "^0.4.1"
uri-js "^4.2.2"
+ajv@^8.0.0, ajv@^8.10.0:
+ version "8.17.1"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
+ integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
+ dependencies:
+ fast-deep-equal "^3.1.3"
+ fast-uri "^3.0.1"
+ json-schema-traverse "^1.0.0"
+ require-from-string "^2.0.2"
+
ajv@^8.0.1:
version "8.12.0"
resolved "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz"
@@ -8580,14 +8605,18 @@ fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-sta
resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-fast-json-stringify@^1.21.0:
- version "1.21.0"
- resolved "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-1.21.0.tgz"
- integrity sha512-xY6gyjmHN3AK1Y15BCbMpeO9+dea5ePVsp3BouHCdukcx0hOHbXwFhRodhcI0NpZIgDChSeAKkHW9YjKvhwKBA==
+fast-json-stringify@^5.8.0:
+ version "5.16.1"
+ resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-5.16.1.tgz#a6d0c575231a3a08c376a00171d757372f2ca46e"
+ integrity sha512-KAdnLvy1yu/XrRtP+LJnxbBGrhN+xXu+gt3EUvZhYGKCr3lFHq/7UFJHHFgmJKoqlh6B40bZLEv7w46B0mqn1g==
dependencies:
- ajv "^6.11.0"
- deepmerge "^4.2.2"
- string-similarity "^4.0.1"
+ "@fastify/merge-json-schemas" "^0.1.0"
+ ajv "^8.10.0"
+ ajv-formats "^3.0.1"
+ fast-deep-equal "^3.1.3"
+ fast-uri "^2.1.0"
+ json-schema-ref-resolver "^1.0.1"
+ rfdc "^1.2.0"
fast-levenshtein@^2.0.6:
version "2.0.6"
@@ -8608,6 +8637,16 @@ fast-querystring@^1.1.1:
dependencies:
fast-decode-uri-component "^1.0.1"
+fast-uri@^2.1.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-2.4.0.tgz#67eae6fbbe9f25339d5d3f4c4234787b65d7d55e"
+ integrity sha512-ypuAmmMKInk5q7XcepxlnUWDLWv4GFtaJqAzWKqn62IpQ3pejtr5dTVbt3vwqVaMKmkNR55sTT+CqUKIaT21BA==
+
+fast-uri@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.0.2.tgz#d78b298cf70fd3b752fd951175a3da6a7b48f024"
+ integrity sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==
+
fast-url-parser@^1.1.3:
version "1.1.3"
resolved "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz"
@@ -9438,15 +9477,14 @@ graphql-config@^5.0.2:
string-env-interpolation "^1.0.1"
tslib "^2.4.0"
-graphql-jit@^0.7.0:
- version "0.7.4"
- resolved "https://registry.npmjs.org/graphql-jit/-/graphql-jit-0.7.4.tgz"
- integrity sha512-kWyHmsQtKMD6xcKDgf4dgPLyIZhviqA6IWGdnA0ElL9wgrIOTxf3eI4c0/U3tnoAU3t09zliVCfDkfIptzYjIA==
+graphql-jit@0.8.6:
+ version "0.8.6"
+ resolved "https://registry.yarnpkg.com/graphql-jit/-/graphql-jit-0.8.6.tgz#c8bf91842670cd3153e09f789884c2192d0e770c"
+ integrity sha512-oVJteh/uYDpIA/M4UHrI+DmzPnX1zTD0a7Je++JA8q8P68L/KbuepimDyrT5FhL4HAq3filUxaFvfsL6/A4msw==
dependencies:
- "@graphql-typed-document-node/core" "^3.1.1"
- fast-json-stringify "^1.21.0"
+ "@graphql-typed-document-node/core" "^3.2.0"
+ fast-json-stringify "^5.8.0"
generate-function "^2.3.1"
- json-schema "^0.4.0"
lodash.memoize "^4.1.2"
lodash.merge "4.6.2"
lodash.mergewith "4.6.2"
@@ -9588,6 +9626,11 @@ has@^1.0.3:
dependencies:
function-bind "^1.1.1"
+hash-it@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/hash-it/-/hash-it-6.0.0.tgz#188df5a8ca2f8e036690e35f2ef88bd9417ff334"
+ integrity sha512-KHzmSFx1KwyMPw0kXeeUD752q/Kfbzhy6dAZrjXV9kAIXGqzGvv8vhkUqj+2MGZldTo0IBpw6v7iWE7uxsvH0w==
+
hash-obj@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/hash-obj/-/hash-obj-4.0.0.tgz"
@@ -11477,6 +11520,13 @@ json-parse-even-better-errors@^3.0.0:
resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz"
integrity sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==
+json-schema-ref-resolver@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/json-schema-ref-resolver/-/json-schema-ref-resolver-1.0.1.tgz#6586f483b76254784fc1d2120f717bdc9f0a99bf"
+ integrity sha512-EJAj1pgHc1hxF6vo2Z3s69fMjO1INq6eGHXZ8Z6wCQeldCuwxGK9Sxf4/cScGn3FZubCVUehfWtcDM/PLteCQw==
+ dependencies:
+ fast-deep-equal "^3.1.3"
+
json-schema-traverse@^0.4.1:
version "0.4.1"
resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
@@ -11487,7 +11537,7 @@ json-schema-traverse@^1.0.0:
resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
-json-schema@0.4.0, json-schema@^0.4.0:
+json-schema@0.4.0:
version "0.4.0"
resolved "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"
integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==
@@ -12213,6 +12263,11 @@ lowercase-keys@^2.0.0:
resolved "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz"
integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
+lru-cache@^10.0.0:
+ version "10.4.3"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
+ integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
+
lru-cache@^10.0.1, lru-cache@^10.2.0:
version "10.2.1"
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.1.tgz"
@@ -15844,6 +15899,11 @@ reusify@^1.0.4:
resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
+rfdc@^1.2.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca"
+ integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==
+
rfdc@^1.3.0:
version "1.3.0"
resolved "https://registry.npmjs.org/rfdc/-/rfdc-1.3.0.tgz"
@@ -16642,11 +16702,6 @@ string-length@^4.0.1:
char-regex "^1.0.2"
strip-ansi "^6.0.0"
-string-similarity@^4.0.1:
- version "4.0.4"
- resolved "https://registry.npmjs.org/string-similarity/-/string-similarity-4.0.4.tgz"
- integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==
-
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
From 397a6ee1653fd5c8b42bd46429be651a95646ccc Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 10 Oct 2024 17:41:23 +0000
Subject: [PATCH 092/154] [no ci] Release: 3.0.130
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 8438d9ac4b..3f89757577 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.129",
+ "version": "3.0.130",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.129",
+ "@faststore/api": "^3.0.130",
"@faststore/sdk": "^3.0.120",
"@faststore/ui": "^3.0.116",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index a6aa09bb99..1a93a186e4 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.129",
+ "version": "3.0.130",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index c1f99f57d6..57d973b882 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.129",
+ "version": "3.0.130",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index c37f6c8a52..142c9a164a 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.129 linux-x64 node-v18.20.4
+@faststore/cli/3.0.130 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.129/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 613d995c19..6dcf0df5b9 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.129",
+ "version": "3.0.130",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.129",
+ "@faststore/core": "^3.0.130",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 411d4c9de5..53f258ef9a 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.129",
+ "version": "3.0.130",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.129",
+ "@faststore/api": "^3.0.130",
"@faststore/components": "^3.0.116",
"@faststore/graphql-utils": "^3.0.116",
"@faststore/lighthouse": "^3.0.116",
From 3885116c6176743ab93b361186c3100a53ba609a Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Fri, 11 Oct 2024 14:23:51 -0300
Subject: [PATCH 093/154] Feat: Adds intersection (ViewportObserver) component
(#2498)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
This PR introduces the `ViewportObserver` component, which will be used
in future tasks as part of our performance improvement initiative.
## How it works?
We'll primarily use it on mobile devices to prevent sections outside the
viewport from being rendered initially. It checks whether a component or
section is within the viewport, based on a specified height. We're using
Moto G Power devices as the reference for this.
## How to test it?
To facilitate the test for our future tasks, I have added a `debug` mode
prop, so we can enable it for testing.
In this case, we can identify if the component is IN or OUT the
viewport. **This is only for the initial render.**
1. go to `core/src/components/product/ProductGrid/ProductGrid.tsx`, add
`debug` prop to following component:
```
```
2. navigate to core, run `yarn dev`
3. go to the PLP, or http://localhost:3000/office?page=0
4. set the browser device to Moto G Power
5. checking via console.log when the component is IN or OUT
- Only the first row of the ProductGrid is inside the viewport, so you
should see `OUT` in the console.log. Scrolling up the next row should
appear, and you will be able to see `IN`
6. checking visually when the component is IN or OUT
- Go to `Network` tab, selects `Slow 4G` as preset, refresh the page
- You will able to see a quick visual feedback (pink rectangle and blue
border) in the first ProductCard of the second row.
https://github.com/user-attachments/assets/87f902b6-2e5a-47bd-8b21-3b7897de9bdd
7. checking if the first two ProductCard image is loading=`eager` and
the rest `loading=`lazy`
### Starters Deploy Preview
## References
https://vtex-dev.atlassian.net/browse/SFS-1507
https://github.com/vtex/faststore/pull/2404
---------
Co-authored-by: Larícia Mota
---
.../src/components/cms/ViewportObserver.tsx | 88 +++++++++++++++
.../product/ProductGrid/ProductGrid.tsx | 103 ++++++++++++++----
.../ui/ProductGallery/ProductGallery.tsx | 7 +-
.../ui/ProductGallery/ProductGalleryPage.tsx | 12 +-
4 files changed, 184 insertions(+), 26 deletions(-)
create mode 100644 packages/core/src/components/cms/ViewportObserver.tsx
diff --git a/packages/core/src/components/cms/ViewportObserver.tsx b/packages/core/src/components/cms/ViewportObserver.tsx
new file mode 100644
index 0000000000..81ff9b9ab7
--- /dev/null
+++ b/packages/core/src/components/cms/ViewportObserver.tsx
@@ -0,0 +1,88 @@
+import type { PropsWithChildren } from 'react'
+import { useCallback, useEffect, useRef, useState } from 'react'
+
+// Mobile height to prevent sections outside the viewport from being rendered initially.
+// We are using the Moto G Power device measurement as a reference, as used by PageSpeed Insights.
+const VIEWPORT_SIZE = 823
+
+type ViewportObserverProps = {
+ /**
+ * Identify the store section
+ */
+ sectionName?: string
+ /**
+ * Debug/test purposes: enables visual debugging to identify the visibility of the section.
+ */
+ debug?: boolean
+} & IntersectionObserverInit
+
+function ViewportObserver({
+ sectionName = '',
+ threshold = 0,
+ root = null,
+ rootMargin,
+ children,
+ debug = false,
+}: PropsWithChildren) {
+ const [isVisible, setVisible] = useState(false)
+ const ref = useRef(null)
+
+ const observerCallback = useCallback(
+ ([entry]: IntersectionObserverEntry[], obs: IntersectionObserver) => {
+ if (entry.isIntersecting) {
+ if (debug) {
+ console.log(`section '${sectionName}' VISIBLE`)
+ document.body.style.border = '2px solid green'
+ }
+ setVisible(true)
+ if (ref.current) {
+ obs.unobserve(ref.current)
+ }
+ } else {
+ setVisible(false)
+ if (debug) {
+ console.log(`section '${sectionName}' NOT VISIBLE`)
+ document.body.style.border = '2px solid red'
+ document.body.style.height = `${VIEWPORT_SIZE}px`
+ document.body.style.boxSizing = 'border-box'
+ }
+ }
+ },
+ [debug, sectionName]
+ )
+
+ useEffect(() => {
+ const observer = new IntersectionObserver(observerCallback, {
+ root,
+ rootMargin,
+ threshold,
+ })
+
+ if (ref.current) {
+ observer.observe(ref.current)
+ }
+
+ return () => observer.disconnect()
+ }, [observerCallback, root, rootMargin, threshold])
+
+ return (
+ <>
+ {!isVisible && (
+
+ )}
+
+ {isVisible && children}
+ >
+ )
+}
+
+export default ViewportObserver
diff --git a/packages/core/src/components/product/ProductGrid/ProductGrid.tsx b/packages/core/src/components/product/ProductGrid/ProductGrid.tsx
index c05a42d0fb..cb9b6b1558 100644
--- a/packages/core/src/components/product/ProductGrid/ProductGrid.tsx
+++ b/packages/core/src/components/product/ProductGrid/ProductGrid.tsx
@@ -7,6 +7,7 @@ import ProductGridSkeleton from 'src/components/skeletons/ProductGridSkeleton'
import { ProductCardProps } from '../ProductCard'
import { memo } from 'react'
+import ViewportObserver from 'src/components/cms/ViewportObserver'
import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
interface Props {
@@ -26,6 +27,10 @@ interface Props {
ProductCardProps,
'showDiscountBadge' | 'bordered' | 'taxesConfiguration'
>
+ /**
+ * Identify the number of firstPage
+ */
+ firstPage?: number
}
function ProductGrid({
@@ -33,38 +38,94 @@ function ProductGrid({
page,
pageSize,
productCard: { showDiscountBadge, bordered, taxesConfiguration } = {},
+ firstPage,
}: Props) {
const { __experimentalProductCard: ProductCard } =
useOverrideComponents<'ProductGallery'>()
const aspectRatio = 1
+ // TODO: Check if is also isMobile
+ const isFirstPage = firstPage === page
+
return (
- {products.map(({ node: product }, idx) => (
-
-
-
- ))}
+ {isFirstPage ? (
+ <>
+ {products.slice(0, 2).map(({ node: product }, idx) => (
+
+
+
+ ))}
+ <>>
+
+ {products.slice(2).map(({ node: product }, idx) => (
+
+
+
+ ))}
+
+ >
+ ) : (
+ <>
+ {products.map(({ node: product }, idx) => (
+
+
+
+ ))}
+ >
+ )}
)
diff --git a/packages/core/src/components/ui/ProductGallery/ProductGallery.tsx b/packages/core/src/components/ui/ProductGallery/ProductGallery.tsx
index f022fb5866..5d9eef8ba4 100644
--- a/packages/core/src/components/ui/ProductGallery/ProductGallery.tsx
+++ b/packages/core/src/components/ui/ProductGallery/ProductGallery.tsx
@@ -12,15 +12,15 @@ import ProductGridSkeleton from 'src/components/skeletons/ProductGridSkeleton'
import { ProductCardProps } from 'src/components/product/ProductCard'
import { FilterSliderProps } from 'src/components/search/Filter/FilterSlider'
import { SortProps } from 'src/components/search/Sort/Sort'
-import { useDelayedFacets } from 'src/sdk/search/useDelayedFacets'
-import { useDelayedPagination } from 'src/sdk/search/useDelayedPagination'
+import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
import {
PLPContext,
SearchPageContext,
usePage,
} from 'src/sdk/overrides/PageProvider'
import { useProductsPrefetch } from 'src/sdk/product/useProductsPrefetch'
-import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
+import { useDelayedFacets } from 'src/sdk/search/useDelayedFacets'
+import { useDelayedPagination } from 'src/sdk/search/useDelayedPagination'
const ProductGalleryPage = lazy(() => import('./ProductGalleryPage'))
const GalleryPageSkeleton =
@@ -237,6 +237,7 @@ function ProductGallery({
title={title}
productCard={productCard}
itemsPerPage={itemsPerPage}
+ firstPage={pages[0]}
/>
))}
diff --git a/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx b/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx
index d27e22061a..d567d3d525 100644
--- a/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx
+++ b/packages/core/src/components/ui/ProductGallery/ProductGalleryPage.tsx
@@ -1,8 +1,8 @@
import ProductGrid from 'src/components/product/ProductGrid'
import Sentinel from 'src/sdk/search/Sentinel'
-import { ProductCardProps } from 'src/components/product/ProductCard'
import { memo } from 'react'
+import { ProductCardProps } from 'src/components/product/ProductCard'
import { useGalleryPage } from 'src/sdk/product/usePageProductsQuery'
interface Props {
@@ -13,9 +13,16 @@ interface Props {
'showDiscountBadge' | 'bordered' | 'taxesConfiguration'
>
itemsPerPage: number
+ firstPage: number
}
-function ProductGalleryPage({ page, title, productCard, itemsPerPage }: Props) {
+function ProductGalleryPage({
+ page,
+ title,
+ productCard,
+ itemsPerPage,
+ firstPage,
+}: Props) {
const { data } = useGalleryPage(page)
const products = data?.search?.products?.edges ?? []
@@ -33,6 +40,7 @@ function ProductGalleryPage({ page, title, productCard, itemsPerPage }: Props) {
page={page}
pageSize={itemsPerPage}
productCard={productCard}
+ firstPage={firstPage}
/>
>
)
From 3e4e1b9600a4bef8a2275f1a43c9395911c0e23e Mon Sep 17 00:00:00 2001
From: Pedro Soares <32311264+pedromtec@users.noreply.github.com>
Date: Fri, 11 Oct 2024 14:26:04 -0300
Subject: [PATCH 094/154] feat: enable preact experimental feature (#2497)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
This PR aims to experimentally allow the store to enable the use of
preact instead of react, keeping react as the default behavior. The
objective is to reduce the size of the package used in the project and
thus improve performance.
### React build output
### Preact build output
## How it works?
When **preact** is enabled, all necessary **preact** dependencies are
installed and preact settings are also added to `next.config`.
## How to test it?
### Validating CLI feature
- Install this preview version of CLI in the starter
- Enable preact in `discovery.config.js`
```
experimental: {
nodeVersion: 18,
cypressVersion: 12,
preact: true
}
```
- Run `yarn dev` or `yarn build`
- Validate if all necessary **preact** dependencies are installed
### Validate performance
- Validate if the build size improves when running `yarn build`
- Validate if the store is working.
---
packages/cli/package.json | 1 +
packages/cli/src/utils/dependencies.ts | 27 +++++++++++++
packages/cli/src/utils/generate.ts | 46 +++++++++++++++++++++++
packages/core/discovery.config.default.js | 1 +
packages/core/next.config.js | 10 +++++
yarn.lock | 2 +-
6 files changed, 86 insertions(+), 1 deletion(-)
create mode 100644 packages/cli/src/utils/dependencies.ts
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 6dcf0df5b9..110dfa2361 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -28,6 +28,7 @@
"degit": "^2.8.4",
"dotenv": "^16.4.5",
"fs-extra": "^10.1.0",
+ "ora": "5.4.1",
"path": "^0.12.7"
},
"devDependencies": {
diff --git a/packages/cli/src/utils/dependencies.ts b/packages/cli/src/utils/dependencies.ts
new file mode 100644
index 0000000000..e7c4cc4748
--- /dev/null
+++ b/packages/cli/src/utils/dependencies.ts
@@ -0,0 +1,27 @@
+import { getPreferredPackageManager } from "./commands"
+import { runCommandSync } from "./runCommandSync"
+
+type InstallDependenciesOptions = {
+ dependencies: string[]
+ cwd: string,
+ errorMessage: string,
+}
+
+export function installDependencies(
+ {
+ dependencies,
+ cwd,
+ errorMessage
+}: InstallDependenciesOptions
+) {
+ const packageManager = getPreferredPackageManager()
+ const installCommand = packageManager === 'npm' ? 'install' : 'add'
+
+ runCommandSync({
+ cmd: `${packageManager} ${installCommand} ${dependencies.join(' ')}`,
+ errorMessage,
+ throws: 'error',
+ debug: false,
+ cwd,
+ })
+}
\ No newline at end of file
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index 370dc6d283..b402f25761 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -12,7 +12,10 @@ import {
} from 'fs-extra'
import path from 'path'
+import ora from 'ora'
+
import { withBasePath } from './directory'
+import { installDependencies } from './dependencies'
interface GenerateOptions {
setup?: boolean
@@ -376,11 +379,54 @@ function checkDependencies(basePath: string, packagesToCheck: string[]) {
})
}
+
+function validateAndInstallMissingDependencies(basePath: string) {
+ const { userDir, userStoreConfigFile } = withBasePath(basePath)
+
+ if (!existsSync(userStoreConfigFile)) {
+ return
+ }
+
+ const userStoreConfig = require(userStoreConfigFile)
+ const userPackageJson = require(path.join(userDir, 'package.json'))
+
+ const missingDependencies: Array<{ feature: string, dependencies: string[] }> = []
+
+ if(userStoreConfig.experimental.preact) {
+ missingDependencies.push({
+ feature: 'Preact',
+ dependencies: ['preact@10.23.1', 'preact-render-to-string@6.5.8']
+ })
+ }
+
+ missingDependencies.forEach(({ feature, dependencies }) => {
+ const dependenciesToInstall = dependencies.filter((dependency) => {
+ const dependencyName = dependency.split('@')[0]
+ return !userPackageJson.dependencies[dependencyName]
+ })
+
+ if(dependenciesToInstall.length > 0) {
+ const spinner = ora(`Installing ${feature} missing dependencies\n`).start()
+
+ installDependencies({
+ dependencies: dependenciesToInstall,
+ cwd: userDir,
+ errorMessage: `failed to install ${feature} dependencies`,
+ })
+
+ spinner.stop()
+ }})
+}
+
+
export async function generate(options: GenerateOptions) {
const { basePath, setup = false } = options
let setupPromise: Promise | null = null
+
+ validateAndInstallMissingDependencies(basePath)
+
if (setup) {
setupPromise = Promise.all([
createTmpFolder(basePath),
diff --git a/packages/core/discovery.config.default.js b/packages/core/discovery.config.default.js
index 67b6c3eef9..c43ae8b227 100644
--- a/packages/core/discovery.config.default.js
+++ b/packages/core/discovery.config.default.js
@@ -100,5 +100,6 @@ module.exports = {
cypressVersion: 12,
enableCypressExtension: false,
noRobots: false,
+ preact: false,
},
}
diff --git a/packages/core/next.config.js b/packages/core/next.config.js
index ba1e674bc5..0acb0e1488 100644
--- a/packages/core/next.config.js
+++ b/packages/core/next.config.js
@@ -46,6 +46,16 @@ const nextConfig = {
config.optimization.splitChunks.maxInitialRequests = 1
}
+ if (storeConfig.experimental.preact && !isServer && !dev) {
+ Object.assign(config.resolve.alias, {
+ react: 'preact/compat',
+
+ 'react-dom/test-utils': 'preact/test-utils',
+
+ 'react-dom': 'preact/compat',
+ })
+ }
+
return config
},
redirects: storeConfig.redirects,
diff --git a/yarn.lock b/yarn.lock
index e5e2a44578..3124456f61 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -14386,7 +14386,7 @@ ora@5.3.0:
strip-ansi "^6.0.0"
wcwidth "^1.0.1"
-ora@^5.4.1:
+ora@5.4.1, ora@^5.4.1:
version "5.4.1"
resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz"
integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==
From 79ad36cd135fc1f9bacd3224b33b4e5f7c4323da Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 11 Oct 2024 17:31:54 +0000
Subject: [PATCH 095/154] [no ci] Release: 3.0.131
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 16 ++++++++--------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 46 insertions(+), 46 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 3f89757577..0724e60fc5 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.130",
+ "version": "3.0.131",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.130",
- "@faststore/sdk": "^3.0.120",
- "@faststore/ui": "^3.0.116",
+ "@faststore/api": "^3.0.131",
+ "@faststore/sdk": "^3.0.131",
+ "@faststore/ui": "^3.0.131",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 1a93a186e4..86dc05f4d1 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.130",
+ "version": "3.0.131",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 57d973b882..5f5afd3aa6 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.130",
+ "version": "3.0.131",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^5.0.2",
- "@faststore/eslint-config": "^3.0.116",
- "@faststore/shared": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
+ "@faststore/shared": "^3.0.131",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 142c9a164a..ee85c40836 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.130 linux-x64 node-v18.20.4
+@faststore/cli/3.0.131 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.130/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 110dfa2361..bca88e8705 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.130",
+ "version": "3.0.131",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.130",
+ "@faststore/core": "^3.0.131",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -32,8 +32,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.116",
- "@faststore/shared": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
+ "@faststore/shared": "^3.0.131",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 6bce293424..e2eb42593d 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.116",
+ "version": "3.0.131",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.116",
- "@faststore/shared": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
+ "@faststore/shared": "^3.0.131",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
"@types/jest-axe": "^3.5.9",
diff --git a/packages/core/package.json b/packages/core/package.json
index 53f258ef9a..9bb41d1ab2 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.130",
+ "version": "3.0.131",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.130",
- "@faststore/components": "^3.0.116",
- "@faststore/graphql-utils": "^3.0.116",
- "@faststore/lighthouse": "^3.0.116",
- "@faststore/sdk": "^3.0.120",
- "@faststore/ui": "^3.0.116",
+ "@faststore/api": "^3.0.131",
+ "@faststore/components": "^3.0.131",
+ "@faststore/graphql-utils": "^3.0.131",
+ "@faststore/lighthouse": "^3.0.131",
+ "@faststore/sdk": "^3.0.131",
+ "@faststore/ui": "^3.0.131",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.6",
"@graphql-codegen/typescript": "4.0.7",
@@ -87,7 +87,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index ff7dec0eeb..1b8955805f 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.116",
+ "version": "3.0.131",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index fe713bb767..aaede3adf1 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.116",
+ "version": "3.0.131",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.116",
- "@faststore/shared": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
+ "@faststore/shared": "^3.0.131",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 3d44690e90..5bbf2537b5 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.116",
+ "version": "3.0.131",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.116",
- "@faststore/shared": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
+ "@faststore/shared": "^3.0.131",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 810dfbcb6d..17770eca0c 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.120",
+ "version": "3.0.131",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.116",
+ "@faststore/shared": "^3.0.131",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 0848906b13..2aad3f9a41 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.116",
+ "version": "3.0.131",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 05f73b3a0f..50ad5fb92e 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.116",
+ "version": "3.0.131",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.116",
+ "@faststore/components": "^3.0.131",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.116",
- "@faststore/shared": "^3.0.116",
+ "@faststore/eslint-config": "^3.0.131",
+ "@faststore/shared": "^3.0.131",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From c94a7684917481b4fe21f4f3372c2bd023aa79e6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lucas=20Feij=C3=B3?=
Date: Mon, 14 Oct 2024 10:47:22 -0300
Subject: [PATCH 096/154] feat: Add `useScreenResize` hook (SFS-1509) (#2487)
## What's the purpose of this pull request?
This PR intends to add a hook to resize depending on the current screen
size.
It's related to the performance POC #2404.
## How it works?
It checks the user's screen size (or manual browser resizing) and
returns the value corresponding if is mobile or not.
### Starters Deploy Preview
vtex-sites/starter.store#562
---
.../components/common/Footer/FooterLinks.tsx | 10 +++--
.../components/navigation/Navbar/Navbar.tsx | 5 ++-
.../src/components/search/Filter/Filter.tsx | 6 ++-
.../sections/RegionBar/RegionBar.tsx | 16 ++++---
.../src/components/ui/Carousel/Carousel.tsx | 8 +++-
packages/core/src/sdk/ui/useScreenResize.ts | 43 +++++++++++++++++++
6 files changed, 72 insertions(+), 16 deletions(-)
create mode 100644 packages/core/src/sdk/ui/useScreenResize.ts
diff --git a/packages/core/src/components/common/Footer/FooterLinks.tsx b/packages/core/src/components/common/Footer/FooterLinks.tsx
index facdea8cab..b51f59c4f3 100644
--- a/packages/core/src/components/common/Footer/FooterLinks.tsx
+++ b/packages/core/src/components/common/Footer/FooterLinks.tsx
@@ -8,6 +8,7 @@ import {
import { useState } from 'react'
import Link from 'src/components/ui/Link'
+import useScreenResize from 'src/sdk/ui/useScreenResize'
type Item = {
url: string
@@ -38,6 +39,7 @@ export interface FooterLinksProps {
}
function FooterLinks({ links }: FooterLinksProps) {
+ const { isDesktop } = useScreenResize()
const [indicesExpanded, setIndicesExpanded] = useState>(
new Set([])
)
@@ -53,7 +55,7 @@ function FooterLinks({ links }: FooterLinksProps) {
return (
-
+ {!isDesktop && (
{links.map(({ sectionTitle, items }) => (
@@ -64,9 +66,9 @@ function FooterLinks({ links }: FooterLinksProps) {
))}
-
+ )}
-
+ {isDesktop && (
{links.map(({ sectionTitle, items }) => (
@@ -75,7 +77,7 @@ function FooterLinks({ links }: FooterLinksProps) {
))}
-
+ )}
)
}
diff --git a/packages/core/src/components/navigation/Navbar/Navbar.tsx b/packages/core/src/components/navigation/Navbar/Navbar.tsx
index a77aec553b..cbdc8d5444 100644
--- a/packages/core/src/components/navigation/Navbar/Navbar.tsx
+++ b/packages/core/src/components/navigation/Navbar/Navbar.tsx
@@ -12,6 +12,7 @@ import Link from 'src/components/ui/Link'
import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
import type { NavbarProps as SectionNavbarProps } from '../../sections/Navbar'
+import useScreenResize from 'src/sdk/ui/useScreenResize'
export interface NavbarProps {
/**
@@ -78,6 +79,8 @@ function Navbar({
} = useOverrideComponents<'Navbar'>()
const scrollDirection = useScrollDirection()
const { openNavbar, navbar: displayNavbar } = useUI()
+ const { isDesktop } = useScreenResize()
+
const searchMobileRef = useRef(null)
const [searchExpanded, setSearchExpanded] = useState(false)
@@ -157,7 +160,7 @@ function Navbar({
-
+ {isDesktop && }
{displayNavbar && (
-
+ {isDesktop && (
-
+ )}
{displayFilter && (
diff --git a/packages/core/src/components/sections/RegionBar/RegionBar.tsx b/packages/core/src/components/sections/RegionBar/RegionBar.tsx
index ce23231319..1adb682683 100644
--- a/packages/core/src/components/sections/RegionBar/RegionBar.tsx
+++ b/packages/core/src/components/sections/RegionBar/RegionBar.tsx
@@ -3,6 +3,7 @@ import Section from '../Section/Section'
import styles from './section.module.scss'
import { RegionBarDefaultComponents } from './DefaultComponents'
import { getOverridableSection } from '../../..//sdk/overrides/getOverriddenSection'
+import useScreenResize from 'src/sdk/ui/useScreenResize'
type RegionBarSectionProps = {
/**
@@ -27,14 +28,15 @@ type RegionBarSectionProps = {
buttonIcon?: RegionBarProps['buttonIcon']
}
-function RegionBarSection({
- className = 'display-mobile',
- ...otherProps
-}: RegionBarSectionProps) {
+function RegionBarSection({ ...otherProps }: RegionBarSectionProps) {
+ const { isMobile } = useScreenResize()
+
return (
-
+ isMobile && (
+
+ )
)
}
diff --git a/packages/core/src/components/ui/Carousel/Carousel.tsx b/packages/core/src/components/ui/Carousel/Carousel.tsx
index 02b2a14e72..c11abc70e4 100644
--- a/packages/core/src/components/ui/Carousel/Carousel.tsx
+++ b/packages/core/src/components/ui/Carousel/Carousel.tsx
@@ -2,6 +2,8 @@ import type { PropsWithChildren } from 'react'
import { Carousel as UICarousel } from '@faststore/ui'
import type { CarouselProps as UICarouselProps } from '@faststore/ui'
+import useScreenResize from 'src/sdk/ui/useScreenResize'
+
export type CarouselProps = {
id?: string
testId?: string
@@ -21,7 +23,9 @@ function Carousel({
variant = 'scroll',
infiniteMode = false,
}: PropsWithChildren) {
- const isMobile = window.innerWidth <= 768
+ const { loading, isTablet, isMobile } = useScreenResize()
+
+ if (loading) return null
return (
{children}
diff --git a/packages/core/src/sdk/ui/useScreenResize.ts b/packages/core/src/sdk/ui/useScreenResize.ts
new file mode 100644
index 0000000000..63083ea3a5
--- /dev/null
+++ b/packages/core/src/sdk/ui/useScreenResize.ts
@@ -0,0 +1,43 @@
+import { useEffect, useState } from 'react'
+
+// We are using the Moto G Power device measurement as a reference (mobile), as used by PageSpeed Insights.
+const MAX_MOBILE_WIDTH = 420
+const MAX_TABLET_WIDTH = 768
+const MIN_NOTEBOOK_WIDTH = 1280
+
+function useScreenResize() {
+ const [isMobile, setIsMobile] = useState(undefined)
+ const [isTablet, setIsTablet] = useState(undefined)
+ const [isDesktop, setIsDesktop] = useState(undefined)
+
+ useEffect(() => {
+ const handleResize = () => {
+ setIsMobile(window.innerWidth <= MAX_MOBILE_WIDTH)
+ setIsTablet(
+ window.innerWidth > MAX_MOBILE_WIDTH &&
+ window.innerWidth <= MAX_TABLET_WIDTH
+ )
+ setIsDesktop(window.innerWidth >= MIN_NOTEBOOK_WIDTH)
+ }
+
+ handleResize()
+
+ window.addEventListener('resize', handleResize)
+
+ return () => {
+ window.removeEventListener('resize', handleResize)
+ }
+ }, [])
+
+ return {
+ isMobile,
+ isTablet,
+ isDesktop,
+ loading:
+ isMobile === undefined ||
+ isTablet === undefined ||
+ isDesktop === undefined,
+ }
+}
+
+export default useScreenResize
From a99b6bc07181fbaa67077b5c12df219fa9975505 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 14 Oct 2024 13:52:37 +0000
Subject: [PATCH 097/154] [no ci] Release: 3.0.132
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 86dc05f4d1..4599de80cd 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.131",
+ "version": "3.0.132",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index ee85c40836..03d8ac2b03 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.131 linux-x64 node-v18.20.4
+@faststore/cli/3.0.132 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.131/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index bca88e8705..3442680adc 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.131",
+ "version": "3.0.132",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.131",
+ "@faststore/core": "^3.0.132",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 9bb41d1ab2..c4d6046e1b 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.131",
+ "version": "3.0.132",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 04cb411686c0ca45acd632ca9ea64644d8f55b8a Mon Sep 17 00:00:00 2001
From: Guilherme Carvalho <77246+gvc@users.noreply.github.com>
Date: Thu, 17 Oct 2024 08:57:02 -0300
Subject: [PATCH 098/154] Enable monorepo build on Vercel (#2500)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
To work around Vercel's limitations on building a FastStore store on the
monorepo.
## How it works?
First we have to copy the `.faststore/.next` output from wherever we are
building to the `cwd()`. We do this conditionally, based on an env var
that is set when creating the project on Vercel (ref:
[vtex/faststore-cloud#339](https://github.com/vtex/faststore-cloud/pull/339)).
The second part is to set an absolute path on outputFileTracing, based
on where the command is being run from. This is because, since we're
moving the output around, having it be based on a relative path `../`
could sometimes make it break.
## How to test it?
Just build and serve locally and see that everything works fine.
### Starters Deploy Preview
[PR on
starter.store](https://github.com/vtex-sites/starter.store/pull/575)
- [Deployment on
Vercel](https://starter-3fyswj0fy-faststore.vercel.app/)
- [Deployment on
Homebrew](https://sfj-2b31adf--starter.preview.vtex.app/)
[Deployment list](https://vendemo.myvtex.com/admin/webops) |
[Repo](https://github.com/gvc/guila.store)
- [Monorepo deployment on
Vercel](https://vendemo-cm224ofs200001282oubq4ikf-83zp6hi6k.b.vtex.app/)
⏳
## References
## Checklist
You may erase this after checking them all :wink:
**PR Title and Commit Messages**
- [ ] PR title and commit messages follow the [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
- Available prefixes: `feat`, `fix`, `chore`, `docs`, `style`,
`refactor` and `test`
**PR Description**
- [ ] Added a label according to the PR goal - `breaking change`, `bug`,
`contributing`, `performance`, `documentation`..
**Dependencies**
- [ ] Committed the `yarn.lock` file when there were changes to the
packages
---------
Co-authored-by: Emerson Laurentino
Co-authored-by: Larícia Mota
---
packages/cli/src/commands/build.ts | 17 ++++++++++++++---
packages/cli/src/utils/generate.ts | 18 +++++++++++++++---
packages/core/next.config.js | 7 ++++++-
3 files changed, 35 insertions(+), 7 deletions(-)
diff --git a/packages/cli/src/commands/build.ts b/packages/cli/src/commands/build.ts
index 71a7961e6e..c2bb07bf84 100644
--- a/packages/cli/src/commands/build.ts
+++ b/packages/cli/src/commands/build.ts
@@ -89,7 +89,18 @@ async function normalizeStandaloneBuildDir(basePath: string) {
async function copyResources(basePath: string) {
const { tmpDir, userDir } = withBasePath(basePath)
- await copyResource(`${tmpDir}/.next`, `${userDir}/.next`)
- await copyResource(`${tmpDir}/lighthouserc.js`, `${userDir}/lighthouserc.js`)
- await copyResource(`${tmpDir}/public`, `${userDir}/public`)
+ // eslint-disable-next-line turbo/no-undeclared-env-vars
+ if (process.env.BUILD_CONTEXT === 'vercel') {
+ const toDir = process.cwd()
+
+ await copyResource(`${tmpDir}/.next`, `${toDir}/.faststore/.next`)
+ await copyResource(`${tmpDir}/public`, `${toDir}/public`)
+ } else {
+ await copyResource(`${tmpDir}/.next`, `${userDir}/.next`)
+ await copyResource(
+ `${tmpDir}/lighthouserc.js`,
+ `${userDir}/lighthouserc.js`
+ )
+ await copyResource(`${tmpDir}/public`, `${userDir}/public`)
+ }
}
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index b402f25761..f29727ab92 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -362,7 +362,7 @@ function checkDependencies(basePath: string, packagesToCheck: string[]) {
rootPackageJson.dependencies[packageName]
if (!coreVersion || !rootVersion) {
- console.warn(
+ console.warn(
`${chalk.yellow(
'warning'
)} - Package ${packageName} not found in both core or root dependencies.`
@@ -374,11 +374,23 @@ function checkDependencies(basePath: string, packagesToCheck: string[]) {
)} - Version mismatch detected for ${packageName}.
Core: ${coreVersion}, Customization: ${rootVersion}. Please align both versions to prevent issues`
)
-
}
})
}
+function updateNextConfig(basePath: string) {
+ const { tmpDir } = withBasePath(basePath)
+
+ const nextConfigPath = path.join(tmpDir, 'next.config.js')
+
+ let nextConfigData = String(readFileSync(nextConfigPath))
+ nextConfigData = nextConfigData.replace(
+ /outputFileTracingRoot\:\s+(.*),/,
+ `outputFileTracingRoot: '${process.cwd()}',`
+ )
+
+ writeFileSync(nextConfigPath, nextConfigData)
+}
function validateAndInstallMissingDependencies(basePath: string) {
const { userDir, userStoreConfigFile } = withBasePath(basePath)
@@ -418,7 +430,6 @@ function validateAndInstallMissingDependencies(basePath: string) {
}})
}
-
export async function generate(options: GenerateOptions) {
const { basePath, setup = false } = options
@@ -443,5 +454,6 @@ export async function generate(options: GenerateOptions) {
copyUserStarterToCustomizations(basePath),
copyTheme(basePath),
createCmsWebhookUrlsJsonFile(basePath),
+ updateNextConfig(basePath),
])
}
diff --git a/packages/core/next.config.js b/packages/core/next.config.js
index 0acb0e1488..a680b48b69 100644
--- a/packages/core/next.config.js
+++ b/packages/core/next.config.js
@@ -24,7 +24,12 @@ const nextConfig = {
// TODO: We won't need to enable this experimental feature when migrating to Next.js 13
experimental: {
scrollRestoration: true,
- // Trace user's `node_modules` dir
+ /*
+ * The FastStore Discovery CLI will update this value to match the path where the
+ * command is being run, because that is where the node_modules directory is.
+ * For discovery-only paths, that is the user directory, and for monorepo, that is the base
+ * of the monorepo
+ * */
outputFileTracingRoot: path.join(__dirname, '../'),
},
webpack: (config, { isServer, dev }) => {
From 0666c1692e31629d949a71768f8e156e820f9043 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 17 Oct 2024 12:02:27 +0000
Subject: [PATCH 099/154] [no ci] Release: 3.0.133
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 4599de80cd..c60d1b2715 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.132",
+ "version": "3.0.133",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 03d8ac2b03..ef216fe73b 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.132 linux-x64 node-v18.20.4
+@faststore/cli/3.0.133 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.132/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 3442680adc..cdc2455935 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.132",
+ "version": "3.0.133",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.132",
+ "@faststore/core": "^3.0.133",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index c4d6046e1b..59b5dc51a4 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.132",
+ "version": "3.0.133",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 3b675023cbb4ba01d619e93ef6f5f45c1cffe9ff Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Thu, 17 Oct 2024 16:38:37 -0300
Subject: [PATCH 100/154] Upgrade turbo (#2512)
Upgrading the turborepo major, this fixes some issues and improve the
dx.
---
package.json | 2 +-
packages/eslint-config/package.json | 2 +-
turbo.json | 2 +-
yarn.lock | 98 ++++++++++++++---------------
4 files changed, 52 insertions(+), 52 deletions(-)
diff --git a/package.json b/package.json
index b8f67f2ec2..9179f1aa84 100644
--- a/package.json
+++ b/package.json
@@ -23,7 +23,7 @@
"conventional-changelog-conventionalcommits": "^5.0.0",
"lerna": "^8.0.0",
"prettier": "^3.1.0",
- "turbo": "^1.13.3"
+ "turbo": "^2.1.3"
},
"version": "0.0.0",
"volta": {
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index 1b8955805f..db8f5d7403 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -8,7 +8,7 @@
"eslint": "7.32.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.3.0",
- "eslint-config-turbo": "^1.13.3",
+ "eslint-config-turbo": "^2.1.3",
"eslint-plugin-react": "7.31.8",
"next": "13.5.1"
},
diff --git a/turbo.json b/turbo.json
index 8db3235edd..1d6c6deb1a 100644
--- a/turbo.json
+++ b/turbo.json
@@ -6,7 +6,7 @@
"DISABLE_3P_SCRIPTS",
"CMS_DATA"
],
- "pipeline": {
+ "tasks": {
"site#build": {
"dependsOn": ["^build"],
"env": ["BASE_SITE_URL"],
diff --git a/yarn.lock b/yarn.lock
index 3124456f61..d7aaa23093 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -8031,12 +8031,12 @@ eslint-config-prettier@^8.3.0:
resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz"
integrity sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==
-eslint-config-turbo@^1.13.3:
- version "1.13.4"
- resolved "https://registry.npmjs.org/eslint-config-turbo/-/eslint-config-turbo-1.13.4.tgz"
- integrity sha512-+we4eWdZlmlEn7LnhXHCIPX/wtujbHCS7XjQM/TN09BHNEl2fZ8id4rHfdfUKIYTSKyy8U/nNyJ0DNoZj5Q8bw==
+eslint-config-turbo@^2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/eslint-config-turbo/-/eslint-config-turbo-2.1.3.tgz#8af06863ae921094d8156f3f833d9c44a4ce9f0a"
+ integrity sha512-smdkhd01V/e/I4EjJxaZA1kxZ1vdFCHpyryolxLtRBP0bZTrHDYh1H6NAyZ3Fy1jkhsQzXw+L+6m17ygROvNFw==
dependencies:
- eslint-plugin-turbo "1.13.4"
+ eslint-plugin-turbo "2.1.3"
eslint-import-resolver-node@^0.3.6:
version "0.3.6"
@@ -8148,10 +8148,10 @@ eslint-plugin-react@^7.31.7:
semver "^6.3.0"
string.prototype.matchall "^4.0.8"
-eslint-plugin-turbo@1.13.4:
- version "1.13.4"
- resolved "https://registry.npmjs.org/eslint-plugin-turbo/-/eslint-plugin-turbo-1.13.4.tgz"
- integrity sha512-82GfMzrewI/DJB92Bbch239GWbGx4j1zvjk1lqb06lxIlMPnVwUHVwPbAnLfyLG3JuhLv9whxGkO/q1CL18JTg==
+eslint-plugin-turbo@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-turbo/-/eslint-plugin-turbo-2.1.3.tgz#29e2b4740ed009828576f5b623753d73d821c0a1"
+ integrity sha512-I9vPArzyOSYa6bm0iMCgD07MgdExc1VK2wGuVz21g4BUdj83w7mDKyCXR2rwOtCEW+wemFwgxanJ81imQZijNg==
dependencies:
dotenv "16.0.3"
@@ -17575,47 +17575,47 @@ tunnel-agent@^0.6.0:
dependencies:
safe-buffer "^5.0.1"
-turbo-darwin-64@1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo-darwin-64/-/turbo-darwin-64-1.13.3.tgz#01d750e0f9ce4fced510357f1a9f7fe6312756ba"
- integrity sha512-glup8Qx1qEFB5jerAnXbS8WrL92OKyMmg5Hnd4PleLljAeYmx+cmmnsmLT7tpaVZIN58EAAwu8wHC6kIIqhbWA==
-
-turbo-darwin-arm64@1.13.3:
- version "1.13.3"
- resolved "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.13.3.tgz"
- integrity sha512-/np2xD+f/+9qY8BVtuOQXRq5f9LehCFxamiQnwdqWm5iZmdjygC5T3uVSYuagVFsZKMvX3ycySwh8dylGTl6lg==
-
-turbo-linux-64@1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo-linux-64/-/turbo-linux-64-1.13.3.tgz#a8ea12c3d79f5bbc78b2ef37f47019edb8928219"
- integrity sha512-G+HGrau54iAnbXLfl+N/PynqpDwi/uDzb6iM9hXEDG+yJnSJxaHMShhOkXYJPk9offm9prH33Khx2scXrYVW1g==
-
-turbo-linux-arm64@1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo-linux-arm64/-/turbo-linux-arm64-1.13.3.tgz#e8691ebfab0e31e276020deee83b3866b4eb966f"
- integrity sha512-qWwEl5VR02NqRyl68/3pwp3c/olZuSp+vwlwrunuoNTm6JXGLG5pTeme4zoHNnk0qn4cCX7DFrOboArlYxv0wQ==
-
-turbo-windows-64@1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo-windows-64/-/turbo-windows-64-1.13.3.tgz#6629174c8f654e75c342a0e1b826620cb6e2795b"
- integrity sha512-Nudr4bRChfJzBPzEmpVV85VwUYRCGKecwkBFpbp2a4NtrJ3+UP1VZES653ckqCu2FRyRuS0n03v9euMbAvzH+Q==
-
-turbo-windows-arm64@1.13.3:
- version "1.13.3"
- resolved "https://registry.yarnpkg.com/turbo-windows-arm64/-/turbo-windows-arm64-1.13.3.tgz#327b8c87d8a01533deb3b7c3a108855aa7b6611d"
- integrity sha512-ouJCgsVLd3icjRLmRvHQDDZnmGzT64GBupM1Y+TjtYn2LVaEBoV6hicFy8x5DUpnqdLy+YpCzRMkWlwhmkX7sQ==
-
-turbo@^1.13.3:
- version "1.13.3"
- resolved "https://registry.npmjs.org/turbo/-/turbo-1.13.3.tgz"
- integrity sha512-n17HJv4F4CpsYTvKzUJhLbyewbXjq1oLCi90i5tW1TiWDz16ML1eDG7wi5dHaKxzh5efIM56SITnuVbMq5dk4g==
+turbo-darwin-64@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo-darwin-64/-/turbo-darwin-64-2.1.3.tgz#217d4270b475ab902dc96c72491789697130a248"
+ integrity sha512-ouJOm0g0YyoBuhmikEujVCBGo3Zr0lbSOWFIsQtWUTItC88F2w2byhjtsYGPXQwMlTbXwmoBU2lOCfWNkeEwHQ==
+
+turbo-darwin-arm64@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo-darwin-arm64/-/turbo-darwin-arm64-2.1.3.tgz#a1b22f510c141e62d388c9c7c870aa306b9cc350"
+ integrity sha512-j2FOJsK4LAOtHQlb3Oom0yWB/Vi0nF1ljInr311mVzHoFAJRZtfW2fRvdZRb/lBUwjSp8be58qWHzANIcrA0OA==
+
+turbo-linux-64@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo-linux-64/-/turbo-linux-64-2.1.3.tgz#0c7033602d66f0ea8f87cdc9cd73fd74b4bbe880"
+ integrity sha512-ubRHkI1gSel7H7wsmxKK8C9UlLWqg/2dkCC88LFupaK6TKgvBKqDqA0Z1M9C/escK0Jsle2k0H8bybV9OYIl4Q==
+
+turbo-linux-arm64@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo-linux-arm64/-/turbo-linux-arm64-2.1.3.tgz#88e46f1594c7424b19a9319bad2142b9c0740e95"
+ integrity sha512-LffUL+e5wv7BtD6DgnM2kKOlDkMo2eRjhbAjVnrCD3wi2ug0tl6NDzajnHHjtaMyOnIf4AvzSKdLWsBxafGBQA==
+
+turbo-windows-64@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo-windows-64/-/turbo-windows-64-2.1.3.tgz#50acf6edcfc3613c5d93ec5368cf1d11b86aa241"
+ integrity sha512-S9SvcZZoaq5jKr6kA6eF7/xgQhVn8Vh7PVy5lono9zybvhyL4eY++y2PaLToIgL8G9IcbLmgOC73ExNjFBg9XQ==
+
+turbo-windows-arm64@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo-windows-arm64/-/turbo-windows-arm64-2.1.3.tgz#6ef8b984974b3bcb58a95028320edc0fce89df9d"
+ integrity sha512-twlEo8lRrGbrR6T/ZklUIquW3IlFCEtywklgVA81aIrSBm56+GEVpSrHhIlsx1hiYeSNrs+GpDwZGe+V7fvEVQ==
+
+turbo@^2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/turbo/-/turbo-2.1.3.tgz#48b2b603ff66f3b632c476b4890277b4c23feeb5"
+ integrity sha512-lY0yj2GH2a2a3NExZ3rGe+rHUVeFE2aXuRAue57n+08E7Z7N7YCmynju0kPC1grAQzERmoLpKrmzmWd+PNiADw==
optionalDependencies:
- turbo-darwin-64 "1.13.3"
- turbo-darwin-arm64 "1.13.3"
- turbo-linux-64 "1.13.3"
- turbo-linux-arm64 "1.13.3"
- turbo-windows-64 "1.13.3"
- turbo-windows-arm64 "1.13.3"
+ turbo-darwin-64 "2.1.3"
+ turbo-darwin-arm64 "2.1.3"
+ turbo-linux-64 "2.1.3"
+ turbo-linux-arm64 "2.1.3"
+ turbo-windows-64 "2.1.3"
+ turbo-windows-arm64 "2.1.3"
tweetnacl@^0.14.3, tweetnacl@~0.14.0:
version "0.14.5"
From 0c869771785fd9f4326abe55ed4ed22483641f91 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 17 Oct 2024 19:44:30 +0000
Subject: [PATCH 101/154] [no ci] Release: 3.0.134
---
apps/site/package.json | 8 ++++----
lerna.json | 2 +-
packages/api/package.json | 4 ++--
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 6 +++---
packages/components/package.json | 4 ++--
packages/core/package.json | 14 +++++++-------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 4 ++--
packages/lighthouse/package.json | 4 ++--
packages/ui/package.json | 6 +++---
11 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 0724e60fc5..f447b003ec 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.131",
+ "version": "3.0.134",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.131",
+ "@faststore/api": "^3.0.134",
"@faststore/sdk": "^3.0.131",
- "@faststore/ui": "^3.0.131",
+ "@faststore/ui": "^3.0.134",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index c60d1b2715..248aaf2ced 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.133",
+ "version": "3.0.134",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 5f5afd3aa6..ebba71e39c 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.131",
+ "version": "3.0.134",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,7 +51,7 @@
},
"devDependencies": {
"@envelop/core": "^5.0.2",
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@faststore/shared": "^3.0.131",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index ef216fe73b..91b440fd22 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.133 linux-x64 node-v18.20.4
+@faststore/cli/3.0.134 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.133/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index cdc2455935..14464bd1ce 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.133",
+ "version": "3.0.134",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.133",
+ "@faststore/core": "^3.0.134",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -32,7 +32,7 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@faststore/shared": "^3.0.131",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
diff --git a/packages/components/package.json b/packages/components/package.json
index e2eb42593d..9d0d8ff823 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.131",
+ "version": "3.0.134",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,7 +35,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@faststore/shared": "^3.0.131",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
diff --git a/packages/core/package.json b/packages/core/package.json
index 59b5dc51a4..93f6038ac4 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.133",
+ "version": "3.0.134",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.131",
- "@faststore/components": "^3.0.131",
- "@faststore/graphql-utils": "^3.0.131",
- "@faststore/lighthouse": "^3.0.131",
+ "@faststore/api": "^3.0.134",
+ "@faststore/components": "^3.0.134",
+ "@faststore/graphql-utils": "^3.0.134",
+ "@faststore/lighthouse": "^3.0.134",
"@faststore/sdk": "^3.0.131",
- "@faststore/ui": "^3.0.131",
+ "@faststore/ui": "^3.0.134",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.6",
"@graphql-codegen/typescript": "4.0.7",
@@ -87,7 +87,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index db8f5d7403..f33f6fafcf 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.131",
+ "version": "3.0.134",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index aaede3adf1..5d3d17d1ff 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.131",
+ "version": "3.0.134",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,7 +21,7 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@faststore/shared": "^3.0.131",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 5bbf2537b5..f4238a43e9 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.131",
+ "version": "3.0.134",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,7 +24,7 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@faststore/shared": "^3.0.131",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 50ad5fb92e..18c113d5c0 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.131",
+ "version": "3.0.134",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.131",
+ "@faststore/components": "^3.0.134",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,7 +59,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.134",
"@faststore/shared": "^3.0.131",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
From ce2b49ed1607193e8ce31a36f00992e0d233fc3b Mon Sep 17 00:00:00 2001
From: Emerson Laurentino
Date: Fri, 18 Oct 2024 10:29:48 -0300
Subject: [PATCH 102/154] chore: remove changelog (#2513)
we're not using anymore changelogs, the last changelog created was 3
years ago
---
CHANGELOG.md | 3325 ---------------------------
apps/site/CHANGELOG.md | 586 -----
lerna.json | 42 -
package.json | 1 -
packages/api/CHANGELOG.md | 1679 --------------
packages/cli/CHANGELOG.md | 197 --
packages/components/CHANGELOG.md | 578 -----
packages/core/CHANGELOG.md | 1327 -----------
packages/core/README.md | 1 -
packages/eslint-config/CHANGELOG.md | 94 -
packages/graphql-utils/CHANGELOG.md | 1360 -----------
packages/lighthouse/CHANGELOG.md | 1911 ---------------
packages/sdk/CHANGELOG.md | 1928 ----------------
packages/shared/CHANGELOG.md | 167 --
packages/ui/CHANGELOG.md | 2410 -------------------
yarn.lock | 16 +-
16 files changed, 1 insertion(+), 15621 deletions(-)
delete mode 100644 CHANGELOG.md
delete mode 100644 apps/site/CHANGELOG.md
delete mode 100644 packages/api/CHANGELOG.md
delete mode 100644 packages/cli/CHANGELOG.md
delete mode 100644 packages/components/CHANGELOG.md
delete mode 100644 packages/core/CHANGELOG.md
delete mode 100644 packages/eslint-config/CHANGELOG.md
delete mode 100644 packages/graphql-utils/CHANGELOG.md
delete mode 100644 packages/lighthouse/CHANGELOG.md
delete mode 100644 packages/sdk/CHANGELOG.md
delete mode 100644 packages/shared/CHANGELOG.md
delete mode 100644 packages/ui/CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 46c77b9b87..0000000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,3325 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.178-alpha.0](https://github.com/vtex/faststore/compare/v2.0.177-alpha.0...v2.0.178-alpha.0) (2023-06-02)
-
-### Bug Fixes
-
-- A11y tests ([#1817](https://github.com/vtex/faststore/issues/1817)) ([904e830](https://github.com/vtex/faststore/commit/904e830ff3ae47f3d7308fa8b1b9a28949561ed9))
-
-## [2.0.177-alpha.0](https://github.com/vtex/faststore/compare/v2.0.176-alpha.0...v2.0.177-alpha.0) (2023-06-02)
-
-### Documentation
-
-- Configuring external DNS for a custom domain ([#1803](https://github.com/vtex/faststore/issues/1803)) ([d0b8726](https://github.com/vtex/faststore/commit/d0b8726aa0d27791eecfa2aaa9dd4aa0abc0a7c1))
-
-## [2.0.176-alpha.0](https://github.com/vtex/faststore/compare/v2.0.175-alpha.0...v2.0.176-alpha.0) (2023-06-02)
-
-### Bug Fixes
-
-- Product description mock data ([#1815](https://github.com/vtex/faststore/issues/1815)) ([98bfde8](https://github.com/vtex/faststore/commit/98bfde887b3721de9a75ebc6325aa7b0842707c5))
-
-## [2.0.175-alpha.0](https://github.com/vtex/faststore/compare/v2.0.174-alpha.0...v2.0.175-alpha.0) (2023-06-02)
-
-### Features
-
-- Allows some section's component to be overridable ([#1768](https://github.com/vtex/faststore/issues/1768)) ([e19cba2](https://github.com/vtex/faststore/commit/e19cba222351510ffc91ba130ed61e857e9e6bb5))
-
-## [2.0.174-alpha.0](https://github.com/vtex/faststore/compare/v2.0.173-alpha.0...v2.0.174-alpha.0) (2023-06-02)
-
-**Note:** Version bump only for package faststore
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-### Chores
-
-- temp skip flaky tests ([#1808](https://github.com/vtex/faststore/issues/1808)) ([734b000](https://github.com/vtex/faststore/commit/734b000ec7c8bff756e514cd9acbc77ecf0e9b62))
-
-## [2.0.172-alpha.0](https://github.com/vtex/faststore/compare/v2.0.171-alpha.0...v2.0.172-alpha.0) (2023-05-31)
-
-### Features
-
-- Override `WebFonts` ([#1799](https://github.com/vtex/faststore/issues/1799)) ([5fa4b9a](https://github.com/vtex/faststore/commit/5fa4b9ada4affcf508f05a95acabd542536ceacf))
-
-## [2.0.171-alpha.0](https://github.com/vtex/faststore/compare/v2.0.170-alpha.0...v2.0.171-alpha.0) (2023-05-30)
-
-### Documentation
-
-- Setting up VTEX account for FastStore ([#1797](https://github.com/vtex/faststore/issues/1797)) ([e61e0d4](https://github.com/vtex/faststore/commit/e61e0d46fa02157d390ea5717c105d830e8cb02f)), closes [#1765](https://github.com/vtex/faststore/issues/1765)
-
-## [2.0.170-alpha.0](https://github.com/vtex/faststore/compare/v2.0.169-alpha.0...v2.0.170-alpha.0) (2023-05-30)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.169-alpha.0](https://github.com/vtex/faststore/compare/v2.0.168-alpha.0...v2.0.169-alpha.0) (2023-05-29)
-
-### Chores
-
-- Removes imports utilities styles from core package + enable system fonts ([#1792](https://github.com/vtex/faststore/issues/1792)) ([19de095](https://github.com/vtex/faststore/commit/19de095e0e47548386afb06ef057798ca54f6294))
-
-## [2.0.168-alpha.0](https://github.com/vtex/faststore/compare/v2.0.167-alpha.0...v2.0.168-alpha.0) (2023-05-29)
-
-### Features
-
-- Adds `RegionBar` and `RegionModal` Sections ([#1798](https://github.com/vtex/faststore/issues/1798)) ([627fa25](https://github.com/vtex/faststore/commit/627fa25832a7a41a1feebe07bef43b67e5edf13a))
-
-## [2.0.167-alpha.0](https://github.com/vtex/faststore/compare/v2.0.166-alpha.0...v2.0.167-alpha.0) (2023-05-29)
-
-### Chores
-
-- relax bf-cache rule to use warn instead of error ([#1801](https://github.com/vtex/faststore/issues/1801)) ([30c0ce9](https://github.com/vtex/faststore/commit/30c0ce9dc022db5c17a7ddd081d2d291c082bb75))
-
-## [2.0.166-alpha.0](https://github.com/vtex/faststore/compare/v2.0.165-alpha.0...v2.0.166-alpha.0) (2023-05-29)
-
-### Features
-
-- Adds `CartSidebar` Section ([#1795](https://github.com/vtex/faststore/issues/1795)) ([c544c45](https://github.com/vtex/faststore/commit/c544c4571b1419ad421b4df57a51de7a0f9e0e2b))
-
-## [2.0.165-alpha.0](https://github.com/vtex/faststore/compare/v2.0.164-alpha.0...v2.0.165-alpha.0) (2023-05-26)
-
-### Features
-
-- add api telemetry ([#1789](https://github.com/vtex/faststore/issues/1789)) ([30c66d7](https://github.com/vtex/faststore/commit/30c66d74abffbd168acfbb44f5bd6f7d56df8b58))
-
-## [2.0.164-alpha.0](https://github.com/vtex/faststore/compare/v2.0.163-alpha.0...v2.0.164-alpha.0) (2023-05-26)
-
-### Features
-
-- Apply adjusts in preview and content-types ([#1787](https://github.com/vtex/faststore/issues/1787)) ([bcf3772](https://github.com/vtex/faststore/commit/bcf377282bf21351961f028654d62cc8f046f593))
-
-## [2.0.163-alpha.0](https://github.com/vtex/faststore/compare/v2.0.162-alpha.0...v2.0.163-alpha.0) (2023-05-26)
-
-### Features
-
-- add search redirect at api package 2.x ([#1749](https://github.com/vtex/faststore/issues/1749)) ([fe198e1](https://github.com/vtex/faststore/commit/fe198e1de73eda89c220f8a61bd2e83efbd4af9c))
-
-## [2.0.162-alpha.0](https://github.com/vtex/faststore/compare/v2.0.161-alpha.0...v2.0.162-alpha.0) (2023-05-26)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.161-alpha.0](https://github.com/vtex/faststore/compare/v2.0.160-alpha.0...v2.0.161-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.160-alpha.0](https://github.com/vtex/faststore/compare/v2.0.159-alpha.0...v2.0.160-alpha.0) (2023-05-24)
-
-### Bug Fixes
-
-- Integration tests ([#1772](https://github.com/vtex/faststore/issues/1772)) ([b750bcc](https://github.com/vtex/faststore/commit/b750bcc8298e7fd467e6e92da8a9de926d7fcffe))
-
-## [2.0.159-alpha.0](https://github.com/vtex/faststore/compare/v2.0.158-alpha.0...v2.0.159-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.158-alpha.0](https://github.com/vtex/faststore/compare/v2.0.157-alpha.0...v2.0.158-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.157-alpha.0](https://github.com/vtex/faststore/compare/v2.0.156-alpha.0...v2.0.157-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.156-alpha.0](https://github.com/vtex/faststore/compare/v2.0.155-alpha.0...v2.0.156-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.155-alpha.0](https://github.com/vtex/faststore/compare/v2.0.154-alpha.0...v2.0.155-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.154-alpha.0](https://github.com/vtex/faststore/compare/v2.0.153-alpha.0...v2.0.154-alpha.0) (2023-05-23)
-
-### Features
-
-- Adjust `ProductShelf` for CMS ([#1766](https://github.com/vtex/faststore/issues/1766)) ([1798536](https://github.com/vtex/faststore/commit/1798536f60a508997616350f0b4ac6c11878dc04))
-
-## [2.0.153-alpha.0](https://github.com/vtex/faststore/compare/v2.0.152-alpha.0...v2.0.153-alpha.0) (2023-05-23)
-
-### Features
-
-- Adds `ProductGallery` Sections + `Filter` component from CMS ([#1770](https://github.com/vtex/faststore/issues/1770)) ([3b80811](https://github.com/vtex/faststore/commit/3b808119904d68e6c848eaa4c30be050650ad2bb))
-
-## [2.0.152-alpha.0](https://github.com/vtex/faststore/compare/v2.0.151-alpha.0...v2.0.152-alpha.0) (2023-05-23)
-
-### Features
-
-- Fix Styles ([#1775](https://github.com/vtex/faststore/issues/1775)) ([2257f6e](https://github.com/vtex/faststore/commit/2257f6e59bac2dc574cf35d71967de5282374969))
-
-## [2.0.151-alpha.0](https://github.com/vtex/faststore/compare/v2.0.150-alpha.0...v2.0.151-alpha.0) (2023-05-22)
-
-### Features
-
-- Adjust `ProductDetails` for CMS ([#1740](https://github.com/vtex/faststore/issues/1740)) ([5cbd315](https://github.com/vtex/faststore/commit/5cbd31544bf57336f6d53780142338f80b61226b))
-
-## [2.0.150-alpha.0](https://github.com/vtex/faststore/compare/v2.0.149-alpha.0...v2.0.150-alpha.0) (2023-05-22)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.149-alpha.0](https://github.com/vtex/faststore/compare/v2.0.148-alpha.0...v2.0.149-alpha.0) (2023-05-19)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.148-alpha.0](https://github.com/vtex/faststore/compare/v2.0.147-alpha.0...v2.0.148-alpha.0) (2023-05-19)
-
-### Documentation
-
-- Fixes payment flags doc page ([#1776](https://github.com/vtex/faststore/issues/1776)) ([483c612](https://github.com/vtex/faststore/commit/483c612f41908ec5452074b02b3232d7383adc80))
-
-## [2.0.147-alpha.0](https://github.com/vtex/faststore/compare/v2.0.146-alpha.0...v2.0.147-alpha.0) (2023-05-19)
-
-### Chores
-
-- removes required button props ([#1781](https://github.com/vtex/faststore/issues/1781)) ([b2758ee](https://github.com/vtex/faststore/commit/b2758ee37ae4737b3b59a7b6634baec138fe02f6))
-
-## [2.0.146-alpha.0](https://github.com/vtex/faststore/compare/v2.0.145-alpha.0...v2.0.146-alpha.0) (2023-05-19)
-
-### Features
-
-- Hero from CMS in PLP ([#1767](https://github.com/vtex/faststore/issues/1767)) ([7cff1a5](https://github.com/vtex/faststore/commit/7cff1a55e7ce0c3a7fb1bdcb6c3f88c56fc387e2))
-
-## [2.0.145-alpha.0](https://github.com/vtex/faststore/compare/v2.0.144-alpha.0...v2.0.145-alpha.0) (2023-05-18)
-
-### Documentation
-
-- Checkbox Field component props ([#1774](https://github.com/vtex/faststore/issues/1774)) ([90abbd4](https://github.com/vtex/faststore/commit/90abbd4a4da9c30f54a4569e828b990cde0ca59e))
-
-## [2.0.144-alpha.0](https://github.com/vtex/faststore/compare/v2.0.143-alpha.0...v2.0.144-alpha.0) (2023-05-18)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.143-alpha.0](https://github.com/vtex/faststore/compare/v2.0.142-alpha.0...v2.0.143-alpha.0) (2023-05-17)
-
-### Documentation
-
-- Adds Hero's props ([#1771](https://github.com/vtex/faststore/issues/1771)) ([f1ce082](https://github.com/vtex/faststore/commit/f1ce082801ddf7ff24a32ca7163aae26243c5989))
-
-## [2.0.142-alpha.0](https://github.com/vtex/faststore/compare/v2.0.141-alpha.0...v2.0.142-alpha.0) (2023-05-16)
-
-### Features
-
-- Adjust `Navbar` for CMS ([#1756](https://github.com/vtex/faststore/issues/1756)) ([105a8b2](https://github.com/vtex/faststore/commit/105a8b2f69ffd8438532d7c9eb959ed26a567675))
-
-## [2.0.141-alpha.0](https://github.com/vtex/faststore/compare/v2.0.140-alpha.0...v2.0.141-alpha.0) (2023-05-16)
-
-### Features
-
-- Pages with `RenderSection` + `Breadcrumb` section CMS ([#1747](https://github.com/vtex/faststore/issues/1747)) ([63f1b6a](https://github.com/vtex/faststore/commit/63f1b6a3b6da30b0c24ba78a8bffbc62470eac0a))
-
-## [2.0.140-alpha.0](https://github.com/vtex/faststore/compare/v2.0.139-alpha.0...v2.0.140-alpha.0) (2023-05-16)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.139-alpha.0](https://github.com/vtex/faststore/compare/v2.0.138-alpha.0...v2.0.139-alpha.0) (2023-05-15)
-
-### Chores
-
-- Update Badge tokens ([#1761](https://github.com/vtex/faststore/issues/1761)) ([7c1764b](https://github.com/vtex/faststore/commit/7c1764b00b434f2380335ca68c4ba90a951a3c6d))
-
-## [2.0.138-alpha.0](https://github.com/vtex/faststore/compare/v2.0.137-alpha.0...v2.0.138-alpha.0) (2023-05-12)
-
-### Bug Fixes
-
-- removes global alert content type and page + fix core build. ([#1759](https://github.com/vtex/faststore/issues/1759)) ([a1c6a60](https://github.com/vtex/faststore/commit/a1c6a60b0f8178bd5521281b82697530b0bb13bd))
-
-## [2.0.137-alpha.0](https://github.com/vtex/faststore/compare/v2.0.136-alpha.0...v2.0.137-alpha.0) (2023-05-11)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.136-alpha.0](https://github.com/vtex/faststore/compare/v2.0.135-alpha.0...v2.0.136-alpha.0) (2023-05-11)
-
-### Documentation
-
-- Updates override components doc page ([#1758](https://github.com/vtex/faststore/issues/1758)) ([959e3ab](https://github.com/vtex/faststore/commit/959e3abbf05c34e2b1338b599a7bf4410e3f91bc))
-
-## [2.0.135-alpha.0](https://github.com/vtex/faststore/compare/v2.0.134-alpha.0...v2.0.135-alpha.0) (2023-05-10)
-
-### Bug Fixes
-
-- Lighthouse Performance 🟢 ([#1751](https://github.com/vtex/faststore/issues/1751)) ([bf8de0e](https://github.com/vtex/faststore/commit/bf8de0e5a8427fbe750b561a80fd186851ffd535))
-
-## [2.0.134-alpha.0](https://github.com/vtex/faststore/compare/v2.0.133-alpha.0...v2.0.134-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Renames `IncentivesHeader` section to `Incentives` ([#1752](https://github.com/vtex/faststore/issues/1752)) ([c46b6b2](https://github.com/vtex/faststore/commit/c46b6b289d971ec2e7925e69e83f649b08b933bd))
-
-## [2.0.133-alpha.0](https://github.com/vtex/faststore/compare/v2.0.132-alpha.0...v2.0.133-alpha.0) (2023-05-09)
-
-### Features
-
-- Adjust `Footer` for CMS ([#1743](https://github.com/vtex/faststore/issues/1743)) ([86dd67a](https://github.com/vtex/faststore/commit/86dd67a293dcd3a67a5b96ac45dc27d097f95381))
-
-## [2.0.132-alpha.0](https://github.com/vtex/faststore/compare/v2.0.131-alpha.0...v2.0.132-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Lighthouse Checks 🟢 ([#1737](https://github.com/vtex/faststore/issues/1737)) ([b862703](https://github.com/vtex/faststore/commit/b862703ce991065f92765f4cecc88c9946b3d702)), closes [/github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js#L25](https://github.com/vtex//github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js/issues/L25)
-
-## [2.0.131-alpha.0](https://github.com/vtex/faststore/compare/v2.0.130-alpha.0...v2.0.131-alpha.0) (2023-05-08)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.130-alpha.0](https://github.com/vtex/faststore/compare/v2.0.129-alpha.0...v2.0.130-alpha.0) (2023-05-04)
-
-### Features
-
-- Add PLP Content-type e refacts sections to use CamelCase ([#1745](https://github.com/vtex/faststore/issues/1745)) ([00e17d5](https://github.com/vtex/faststore/commit/00e17d500c070137e7704a35adf4949dcc06f7c6))
-
-## [2.0.129-alpha.0](https://github.com/vtex/faststore/compare/v2.0.128-alpha.0...v2.0.129-alpha.0) (2023-05-04)
-
-### Features
-
-- Update content-type to globalSections ([#1744](https://github.com/vtex/faststore/issues/1744)) ([f6c5d1d](https://github.com/vtex/faststore/commit/f6c5d1df2ea093b7c1d371b91e3e828bdc7243f6))
-
-## [2.0.128-alpha.0](https://github.com/vtex/faststore/compare/v2.0.127-alpha.0...v2.0.128-alpha.0) (2023-05-04)
-
-### Features
-
-- Adds `Carousel` Component 782 ([#1735](https://github.com/vtex/faststore/issues/1735)) ([a4d5156](https://github.com/vtex/faststore/commit/a4d5156404f47ce22fe2f9b5141b446f987bccbc))
-
-## [2.0.127-alpha.0](https://github.com/vtex/faststore/compare/v2.0.126-alpha.0...v2.0.127-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.126-alpha.0](https://github.com/vtex/faststore/compare/v2.0.125-alpha.0...v2.0.126-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.125-alpha.0](https://github.com/vtex/faststore/compare/v2.0.124-alpha.0...v2.0.125-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.124-alpha.0](https://github.com/vtex/faststore/compare/v2.0.123-alpha.0...v2.0.124-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.123-alpha.0](https://github.com/vtex/faststore/compare/v2.0.122-alpha.0...v2.0.123-alpha.0) (2023-05-02)
-
-### Documentation
-
-- Updates Icons docs + general updates ([#1739](https://github.com/vtex/faststore/issues/1739)) ([44f3521](https://github.com/vtex/faststore/commit/44f35219ba09e157aba0ea47d462f7a2ccc42b50))
-
-## [2.0.122-alpha.0](https://github.com/vtex/faststore/compare/v2.0.121-alpha.0...v2.0.122-alpha.0) (2023-04-27)
-
-### Bug Fixes
-
-- LH Unused CSS + Organizes CMS Sections and components styles. ([#1712](https://github.com/vtex/faststore/issues/1712)) ([0ab1fa8](https://github.com/vtex/faststore/commit/0ab1fa805e41a53f21cbe26dc5143f853b64dc00))
-
-## [2.0.121-alpha.0](https://github.com/vtex/faststore/compare/v2.0.120-alpha.0...v2.0.121-alpha.0) (2023-04-27)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.120-alpha.0](https://github.com/vtex/faststore/compare/v2.0.119-alpha.0...v2.0.120-alpha.0) (2023-04-27)
-
-### Features
-
-- Integrates Global Sections, with Alert component ([#1722](https://github.com/vtex/faststore/issues/1722)) ([da38b2a](https://github.com/vtex/faststore/commit/da38b2af3db5bd6abd57707d11d67d7463d5fa12))
-
-## [2.0.119-alpha.0](https://github.com/vtex/faststore/compare/v2.0.118-alpha.0...v2.0.119-alpha.0) (2023-04-27)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.118-alpha.0](https://github.com/vtex/faststore/compare/v2.0.117-alpha.0...v2.0.118-alpha.0) (2023-04-26)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.117-alpha.0](https://github.com/vtex/faststore/compare/v2.0.116-alpha.0...v2.0.117-alpha.0) (2023-04-26)
-
-### Features
-
-- Adds `Navbar`, `NavbarSlider` and `NavbarLinks` components ([#1728](https://github.com/vtex/faststore/issues/1728)) ([30e3f59](https://github.com/vtex/faststore/commit/30e3f59fa75abe6d4155541615c30ccf9618be42))
-
-## [2.0.116-alpha.0](https://github.com/vtex/faststore/compare/v2.0.115-alpha.0...v2.0.116-alpha.0) (2023-04-26)
-
-### Bug Fixes
-
-- Send missing `colorVariant` attribute to `BannerText` ([#1733](https://github.com/vtex/faststore/issues/1733)) ([ddaaaf1](https://github.com/vtex/faststore/commit/ddaaaf1c3e8daa51ea07f4e419f5d2549bf73c12))
-
-## [2.0.115-alpha.0](https://github.com/vtex/faststore/compare/v2.0.114-alpha.0...v2.0.115-alpha.0) (2023-04-25)
-
-### Chores
-
-- adds shouldSplitItem as true by default ([#1725](https://github.com/vtex/faststore/issues/1725)) ([c796d72](https://github.com/vtex/faststore/commit/c796d72ab49c5eb79d305b5e4b1946b6645be0de))
-
-## [2.0.114-alpha.0](https://github.com/vtex/faststore/compare/v2.0.113-alpha.0...v2.0.114-alpha.0) (2023-04-24)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.113-alpha.0](https://github.com/vtex/faststore/compare/v2.0.112-alpha.0...v2.0.113-alpha.0) (2023-04-24)
-
-### Features
-
-- Adds `Navbar` component ([#1720](https://github.com/vtex/faststore/issues/1720)) ([58aac03](https://github.com/vtex/faststore/commit/58aac0366f3a5df042cd46ce9525e5f1af7b9a38))
-
-## [2.0.112-alpha.0](https://github.com/vtex/faststore/compare/v2.0.111-alpha.0...v2.0.112-alpha.0) (2023-04-20)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.111-alpha.0](https://github.com/vtex/faststore/compare/v2.0.110-alpha.0...v2.0.111-alpha.0) (2023-04-18)
-
-### Features
-
-- Adds `ProductGrid` component ([#1719](https://github.com/vtex/faststore/issues/1719)) ([9cbe71f](https://github.com/vtex/faststore/commit/9cbe71f81395297c14b258efdd336b00f6b71071))
-
-## [2.0.110-alpha.0](https://github.com/vtex/faststore/compare/v2.0.109-alpha.0...v2.0.110-alpha.0) (2023-04-18)
-
-### Features
-
-- Add `ProductShelf` component ([#1713](https://github.com/vtex/faststore/issues/1713)) ([6a387a6](https://github.com/vtex/faststore/commit/6a387a665aa8a1eb65122abcce67d82b9ead4234))
-
-## [2.0.109-alpha.0](https://github.com/vtex/faststore/compare/v2.0.108-alpha.0...v2.0.109-alpha.0) (2023-04-18)
-
-### Features
-
-- Apply adjusts in `HeroSection` and `BannerText` section ([#1715](https://github.com/vtex/faststore/issues/1715)) ([968f95a](https://github.com/vtex/faststore/commit/968f95afb808c104a795e078f45c37ca619d4697))
-
-## [2.0.108-alpha.0](https://github.com/vtex/faststore/compare/v2.0.107-alpha.0...v2.0.108-alpha.0) (2023-04-17)
-
-### Features
-
-- Adds `EmptyState` component ([#1716](https://github.com/vtex/faststore/issues/1716)) ([82eaf9a](https://github.com/vtex/faststore/commit/82eaf9a628f417ee58d7cacb2678f8cdd81bfaec))
-
-## [2.0.107-alpha.0](https://github.com/vtex/faststore/compare/v2.0.106-alpha.0...v2.0.107-alpha.0) (2023-04-17)
-
-### Chores
-
-- Removes `Form` component ([#1717](https://github.com/vtex/faststore/issues/1717)) ([ffe1c2e](https://github.com/vtex/faststore/commit/ffe1c2ec93f261e24bf3c5a295cf359cf53bcc63))
-
-## [2.0.106-alpha.0](https://github.com/vtex/faststore/compare/v2.0.105-alpha.0...v2.0.106-alpha.0) (2023-04-12)
-
-### Features
-
-- Adds `RegionModal` component ([#1710](https://github.com/vtex/faststore/issues/1710)) ([d3b6c36](https://github.com/vtex/faststore/commit/d3b6c36af3fe3d9c826884654c8708d4a1d14d2d))
-
-## [2.0.105-alpha.0](https://github.com/vtex/faststore/compare/v2.0.104-alpha.0...v2.0.105-alpha.0) (2023-04-12)
-
-### Features
-
-- add an `user-agent` header to `fetchAPI` method ([#1708](https://github.com/vtex/faststore/issues/1708)) ([e1714c3](https://github.com/vtex/faststore/commit/e1714c350ef2a5c1a30b1a46c4e79d4a8d24993b)), closes [#1709](https://github.com/vtex/faststore/issues/1709)
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.103-alpha.0](https://github.com/vtex/faststore/compare/v2.0.102-alpha.0...v2.0.103-alpha.0) (2023-04-06)
-
-### Features
-
-- Add `ImageGallery` components ([#1681](https://github.com/vtex/faststore/issues/1681)) ([b44101c](https://github.com/vtex/faststore/commit/b44101c932b0758f9c1b09ee001d3221c338cf93)), closes [starter.store#37](https://github.com/vtex/starter.store/issues/37)
-
-## [2.0.102-alpha.0](https://github.com/vtex/faststore/compare/v2.0.101-alpha.0...v2.0.102-alpha.0) (2023-04-06)
-
-### Features
-
-- Adds `CartSidebar` and `OrderSummary` ([#1704](https://github.com/vtex/faststore/issues/1704)) ([a16e168](https://github.com/vtex/faststore/commit/a16e1683816ef84866de4cd7f8d8a64f951b98c6))
-
-## [2.0.101-alpha.0](https://github.com/vtex/faststore/compare/v2.0.100-alpha.0...v2.0.101-alpha.0) (2023-04-05)
-
-### Bug Fixes
-
-- fix tests ([#1705](https://github.com/vtex/faststore/issues/1705)) ([8990310](https://github.com/vtex/faststore/commit/899031022bf6514797f24895ffb7c97e46726217))
-
-## [2.0.100-alpha.0](https://github.com/vtex/faststore/compare/v2.0.99-alpha.0...v2.0.100-alpha.0) (2023-04-05)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.99-alpha.0](https://github.com/vtex/faststore/compare/v2.0.98-alpha.0...v2.0.99-alpha.0) (2023-04-04)
-
-### Features
-
-- `Icon` with svg sprites ([#1682](https://github.com/vtex/faststore/issues/1682)) ([e199db7](https://github.com/vtex/faststore/commit/e199db7819ce015cc1c986c73a4a937153ddc062))
-
-## [2.0.98-alpha.0](https://github.com/vtex/faststore/compare/v2.0.97-alpha.0...v2.0.98-alpha.0) (2023-04-03)
-
-### Chores
-
-- updates api version in core package ([#1702](https://github.com/vtex/faststore/issues/1702)) ([d2bbfae](https://github.com/vtex/faststore/commit/d2bbfae551417cd6ac525fa2fe8768956254b6ec))
-
-## [2.0.97-alpha.0](https://github.com/vtex/faststore/compare/v2.0.96-alpha.0...v2.0.97-alpha.0) (2023-04-03)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.96-alpha.0](https://github.com/vtex/faststore/compare/v2.0.95-alpha.0...v2.0.96-alpha.0) (2023-04-03)
-
-### Bug Fixes
-
-- Fix useDefineVariants ([#1700](https://github.com/vtex/faststore/issues/1700)) ([463b65b](https://github.com/vtex/faststore/commit/463b65b1e9fb81ca041f7f7f24280a57e3210b9b))
-
-## [2.0.95-alpha.0](https://github.com/vtex/faststore/compare/v2.0.94-alpha.0...v2.0.95-alpha.0) (2023-04-01)
-
-### Features
-
-- Adds `RegionBar` component ([#1693](https://github.com/vtex/faststore/issues/1693)) ([8390d82](https://github.com/vtex/faststore/commit/8390d829d4c1cab0f56a38b59bb2e1f1ab670fb1))
-
-## [2.0.94-alpha.0](https://github.com/vtex/faststore/compare/v2.0.93-alpha.0...v2.0.94-alpha.0) (2023-03-31)
-
-### Chores
-
-- General improvements, PriceDefinition type and docs review ([#1691](https://github.com/vtex/faststore/issues/1691)) ([7fde306](https://github.com/vtex/faststore/commit/7fde3061e8a37c12634c764ef64b652f770426eb))
-
-## [2.0.93-alpha.0](https://github.com/vtex/faststore/compare/v2.0.92-alpha.0...v2.0.93-alpha.0) (2023-03-31)
-
-### Features
-
-- Adds `ShippingSimulation` Components. ([#1689](https://github.com/vtex/faststore/issues/1689)) ([0683882](https://github.com/vtex/faststore/commit/06838820af9da08541fbc8337504b92406c958d8))
-
-## [2.0.92-alpha.0](https://github.com/vtex/faststore/compare/v2.0.91-alpha.0...v2.0.92-alpha.0) (2023-03-30)
-
-### Documentation
-
-- How to override or customize native section components ([#1684](https://github.com/vtex/faststore/issues/1684)) ([783532a](https://github.com/vtex/faststore/commit/783532a5ec1c5e4e10daa9a9975fe5f7546ce5bb))
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-### Documentation
-
-- Updates midnight theme stylesheet ([#1698](https://github.com/vtex/faststore/issues/1698)) ([9b01beb](https://github.com/vtex/faststore/commit/9b01beb0b8c48b5814bb4ff66d069cd5c2a2fc5f))
-
-## [2.0.90-alpha.0](https://github.com/vtex/faststore/compare/v2.0.89-alpha.0...v2.0.90-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `Filter` and `FilterSlider` Components. ([#1687](https://github.com/vtex/faststore/issues/1687)) ([a18e1af](https://github.com/vtex/faststore/commit/a18e1af9fe6037f19a558f2c49e52ba01e50e95a))
-
-## [2.0.89-alpha.0](https://github.com/vtex/faststore/compare/v2.0.88-alpha.0...v2.0.89-alpha.0) (2023-03-29)
-
-### Features
-
-- Add `OutOfStock` components ([#1685](https://github.com/vtex/faststore/issues/1685)) ([25f4442](https://github.com/vtex/faststore/commit/25f444214e234f5f0f9287ef8bc403231b2eac2b))
-
-## [2.0.88-alpha.0](https://github.com/vtex/faststore/compare/v2.0.87-alpha.0...v2.0.88-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `SearchInput`, `SearchInputField` and `SearchDropdown` components ([#1676](https://github.com/vtex/faststore/issues/1676)) ([edba839](https://github.com/vtex/faststore/commit/edba8399a27f183f2092086b3c9d69cf5c1e8f52))
-
-## [2.0.87-alpha.0](https://github.com/vtex/faststore/compare/v2.0.86-alpha.0...v2.0.87-alpha.0) (2023-03-24)
-
-### Features
-
-- Adds `SkuSelector` component ([#1677](https://github.com/vtex/faststore/issues/1677)) ([696a14e](https://github.com/vtex/faststore/commit/696a14e6d9633ececcd2818e4a32b32ce8ad2e2b))
-
-## [2.0.86-alpha.0](https://github.com/vtex/faststore/compare/v2.0.85-alpha.0...v2.0.86-alpha.0) (2023-03-22)
-
-### Features
-
-- List toast's component props fs-632 ([#1683](https://github.com/vtex/faststore/issues/1683)) ([c1dfa6a](https://github.com/vtex/faststore/commit/c1dfa6a42f4b1620a2dade9a0bf9b5b6b55b907a))
-
-## [2.0.85-alpha.0](https://github.com/vtex/faststore/compare/v2.0.84-alpha.0...v2.0.85-alpha.0) (2023-03-22)
-
-### Features
-
-- Adds `Toast` Component ([#1672](https://github.com/vtex/faststore/issues/1672)) ([5338c46](https://github.com/vtex/faststore/commit/5338c466d9fb326c3c85acee3c1049f954afd42a))
-
-## [2.0.84-alpha.0](https://github.com/vtex/faststore/compare/v2.0.83-alpha.0...v2.0.84-alpha.0) (2023-03-21)
-
-### Bug Fixes
-
-- Automatic props PropSection path ([#1679](https://github.com/vtex/faststore/issues/1679)) ([52478bd](https://github.com/vtex/faststore/commit/52478bd46f0875a796e6d13c5fe86aaa2d3c6dd2))
-
-## [2.0.83-alpha.0](https://github.com/vtex/faststore/compare/v2.0.82-alpha.0...v2.0.83-alpha.0) (2023-03-21)
-
-### Features
-
-- Updates `PropsSection` ([#1673](https://github.com/vtex/faststore/issues/1673)) ([10000f2](https://github.com/vtex/faststore/commit/10000f2977f3337d6ac81fb9d52d59316f050105))
-
-## [2.0.82-alpha.0](https://github.com/vtex/faststore/compare/v2.0.81-alpha.0...v2.0.82-alpha.0) (2023-03-17)
-
-### Features
-
-- change dominantVariant to optional ([#1674](https://github.com/vtex/faststore/issues/1674)) ([29fd637](https://github.com/vtex/faststore/commit/29fd637e40a035073f72a61c7be17514776557fc))
-
-## [2.0.81-alpha.0](https://github.com/vtex/faststore/compare/v2.0.80-alpha.0...v2.0.81-alpha.0) (2023-03-16)
-
-### Features
-
-- Image using next/future/image + new Thumbor URL ([#1661](https://github.com/vtex/faststore/issues/1661)) ([8b9a33b](https://github.com/vtex/faststore/commit/8b9a33bf2ce1d671498785a9a35db881c40fcf8e))
-
-## [2.0.80-alpha.0](https://github.com/vtex/faststore/compare/v2.0.79-alpha.0...v2.0.80-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- forwardRef errors ([#1671](https://github.com/vtex/faststore/issues/1671)) ([945c5da](https://github.com/vtex/faststore/commit/945c5dabf21b7ee87c1e9197a1115b9b1eafb9c0))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-- Puts cart-sidebar test id in the right place ([#1670](https://github.com/vtex/faststore/issues/1670)) ([0001070](https://github.com/vtex/faststore/commit/0001070617546c8f423550c0f4bf26e9a640b804))
-
-## [2.0.78-alpha.0](https://github.com/vtex/faststore/compare/v2.0.77-alpha.0...v2.0.78-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- yarn test script ([#1668](https://github.com/vtex/faststore/issues/1668)) ([128c706](https://github.com/vtex/faststore/commit/128c7068e065b341268c9967351c4dd2e908bd49))
-
-## [2.0.77-alpha.0](https://github.com/vtex/faststore/compare/v2.0.76-alpha.0...v2.0.77-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- **api:** add context variables cart mutation ([#1659](https://github.com/vtex/faststore/issues/1659)) ([c292915](https://github.com/vtex/faststore/commit/c29291546a89f3f278e62996689c90f17b028658))
-
-## [2.0.76-alpha.0](https://github.com/vtex/faststore/compare/v2.0.75-alpha.0...v2.0.76-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- Adds missing test id ([#1666](https://github.com/vtex/faststore/issues/1666)) ([470584d](https://github.com/vtex/faststore/commit/470584d7a7213742bc7d9fbcf9e52e28c6595676)), closes [/github.com/vtex/faststore/pull/1649/files#diff-bc55adb273e27dfb220da8699e7463fac6bc3e1292439e1fa7530e09e9a6d009](https://github.com/vtex//github.com/vtex/faststore/pull/1649/files/issues/diff-bc55adb273e27dfb220da8699e7463fac6bc3e1292439e1fa7530e09e9a6d009)
-
-## [2.0.75-alpha.0](https://github.com/vtex/faststore/compare/v2.0.74-alpha.0...v2.0.75-alpha.0) (2023-03-15)
-
-### Features
-
-- Add `SearchSuggestions` components ([#1654](https://github.com/vtex/faststore/issues/1654)) ([5dc8077](https://github.com/vtex/faststore/commit/5dc8077421267af882d22e85ddbbb8eacf807690))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.72-alpha.0](https://github.com/vtex/faststore/compare/v2.0.71-alpha.0...v2.0.72-alpha.0) (2023-02-17)
-
-### Chores
-
-- **deps:** bump ua-parser-js from 0.7.32 to 0.7.33 ([#1621](https://github.com/vtex/faststore/issues/1621)) ([a5cf09a](https://github.com/vtex/faststore/commit/a5cf09ac2ef361b92a7c705d7c2c3ce220a44ba1)), closes [#605](https://github.com/vtex/faststore/issues/605) [#606](https://github.com/vtex/faststore/issues/606) [#604](https://github.com/vtex/faststore/issues/604)
-
-## [2.0.71-alpha.0](https://github.com/vtex/faststore/compare/v2.0.70-alpha.0...v2.0.71-alpha.0) (2023-02-17)
-
-### Chores
-
-- **deps:** bump undici from 5.0.0 to 5.19.1 ([#1644](https://github.com/vtex/faststore/issues/1644)) ([4eea9f3](https://github.com/vtex/faststore/commit/4eea9f374f6baec2957494381ad082a75ace3788)), closes [nodejs/undici#1910](https://github.com/nodejs/undici/issues/1910) [nodejs/undici#1911](https://github.com/nodejs/undici/issues/1911) [nodejs/undici#1916](https://github.com/nodejs/undici/issues/1916) [nodejs/undici#1915](https://github.com/nodejs/undici/issues/1915) [nodejs/undici#1917](https://github.com/nodejs/undici/issues/1917) [nodejs/undici#1913](https://github.com/nodejs/undici/issues/1913) [nodejs/undici#1918](https://github.com/nodejs/undici/issues/1918) [nodejs/undici#1927](https://github.com/nodejs/undici/issues/1927) [nodejs/undici#1911](https://github.com/nodejs/undici/issues/1911) [nodejs/undici#1913](https://github.com/nodejs/undici/issues/1913) [nodejs/undici#1904](https://github.com/nodejs/undici/issues/1904) [nodejs/undici#1908](https://github.com/nodejs/undici/issues/1908) [nodejs/undici#1899](https://github.com/nodejs/undici/issues/1899) [nodejs/undici#1880](https://github.com/nodejs/undici/issues/1880) [nodejs/undici#1881](https://github.com/nodejs/undici/issues/1881) [nodejs/undici#1884](https://github.com/nodejs/undici/issues/1884) [nodejs/undici#1879](https://github.com/nodejs/undici/issues/1879) [nodejs/undici#1896](https://github.com/nodejs/undici/issues/1896) [nodejs/undici#1894](https://github.com/nodejs/undici/issues/1894) [nodejs/undici#1895](https://github.com/nodejs/undici/issues/1895) [nodejs/undici#1889](https://github.com/nodejs/undici/issues/1889) [#1918](https://github.com/vtex/faststore/issues/1918) [#1913](https://github.com/vtex/faststore/issues/1913) [#1917](https://github.com/vtex/faststore/issues/1917) [#1915](https://github.com/vtex/faststore/issues/1915)
-
-## [2.0.70-alpha.0](https://github.com/vtex/faststore/compare/v2.0.69-alpha.0...v2.0.70-alpha.0) (2023-02-16)
-
-### Features
-
-- Adds `SearchProductCard` component ([#1640](https://github.com/vtex/faststore/issues/1640)) ([e175c8c](https://github.com/vtex/faststore/commit/e175c8c49e9c4caf9bc1730df14fa19f0f062356))
-
-## [2.0.69-alpha.0](https://github.com/vtex/faststore/compare/v2.0.68-alpha.0...v2.0.69-alpha.0) (2023-02-15)
-
-### Features
-
-- Add `Breadcrumb` component ([#1635](https://github.com/vtex/faststore/issues/1635)) ([20a2f1b](https://github.com/vtex/faststore/commit/20a2f1bb3cf8551e0477b5c4641ae9af4b20a525))
-
-## [2.0.68-alpha.0](https://github.com/vtex/faststore/compare/v2.0.67-alpha.0...v2.0.68-alpha.0) (2023-02-15)
-
-### Features
-
-- theming docs ([#1636](https://github.com/vtex/faststore/issues/1636)) ([62a5f26](https://github.com/vtex/faststore/commit/62a5f26885ea966595dff11bdc1387a5886a962a))
-
-## [2.0.67-alpha.0](https://github.com/vtex/faststore/compare/v2.0.66-alpha.0...v2.0.67-alpha.0) (2023-02-14)
-
-### Features
-
-- CLI makes WebOps Evergreen + Vercel ([#1618](https://github.com/vtex/faststore/issues/1618)) ([c8c9083](https://github.com/vtex/faststore/commit/c8c908321f56e7ca570cd15e3ed7a145197a6d38)), closes [/github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts#L23](https://github.com/vtex//github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts/issues/L23) [/github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts#L29](https://github.com/vtex//github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts/issues/L29)
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-- update generetad api schema ([#1637](https://github.com/vtex/faststore/issues/1637)) ([6bf7760](https://github.com/vtex/faststore/commit/6bf7760d96c52ab0038720ed02f361fb433a296b))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-### Chores
-
-- updates yarn lock ([#1634](https://github.com/vtex/faststore/issues/1634)) ([6ee6f8c](https://github.com/vtex/faststore/commit/6ee6f8c079e364ca1fc2ba86ed4119777bf6c97d))
-
-## [2.0.64-alpha.0](https://github.com/vtex/faststore/compare/v2.0.63-alpha.0...v2.0.64-alpha.0) (2023-02-13)
-
-### Features
-
-- Adds Global tokens doc pages ([#1630](https://github.com/vtex/faststore/issues/1630)) ([4d20381](https://github.com/vtex/faststore/commit/4d203818103300f2f4dda96f5ba3c59aa92307e0))
-
-## [2.0.63-alpha.0](https://github.com/vtex/faststore/compare/v2.0.62-alpha.0...v2.0.63-alpha.0) (2023-02-10)
-
-### Features
-
-- Adds `ProductCard` component ([#1623](https://github.com/vtex/faststore/issues/1623)) ([80588df](https://github.com/vtex/faststore/commit/80588df4a6c088035f60d563bfe6cd35f85b4a9c))
-
-## [2.0.62-alpha.0](https://github.com/vtex/faststore/compare/v2.0.61-alpha.0...v2.0.62-alpha.0) (2023-02-07)
-
-### Features
-
-- Adds `PaymentMethods` component ([#1626](https://github.com/vtex/faststore/issues/1626)) ([b3b8925](https://github.com/vtex/faststore/commit/b3b8925ea1a51a5036b4e839df0aea577ba1d232))
-
-## [2.0.61-alpha.0](https://github.com/vtex/faststore/compare/v2.0.60-alpha.0...v2.0.61-alpha.0) (2023-02-03)
-
-### Features
-
-- Adds `CartItem` component ([#1614](https://github.com/vtex/faststore/issues/1614)) ([48e04ea](https://github.com/vtex/faststore/commit/48e04eafd752ac4e97093bd40cb92e1d6e28e032))
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Bug Fixes
-
-- checks best sku existence ([#1624](https://github.com/vtex/faststore/issues/1624)) ([5479bd5](https://github.com/vtex/faststore/commit/5479bd5bbee9b784a96787a55006f6b8449a948c)), closes [/github.com/vtex/faststore/blob/main/packages/api/src/platforms/vtex/utils/sku.ts#L22](https://github.com/vtex//github.com/vtex/faststore/blob/main/packages/api/src/platforms/vtex/utils/sku.ts/issues/L22)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## [2.0.59-alpha.0](https://github.com/vtex/faststore/compare/v2.0.58-alpha.0...v2.0.59-alpha.0) (2023-02-02)
-
-### Features
-
-- Adds `ProductTitle` component ([#1620](https://github.com/vtex/faststore/issues/1620)) ([8aba709](https://github.com/vtex/faststore/commit/8aba70970b46996b37f1e8dcb28b1d14c042a04e))
-
-## [2.0.58-alpha.0](https://github.com/vtex/faststore/compare/v2.0.57-alpha.0...v2.0.58-alpha.0) (2023-02-01)
-
-### Bug Fixes
-
-- local api server error ([#1622](https://github.com/vtex/faststore/issues/1622)) ([8f43e5d](https://github.com/vtex/faststore/commit/8f43e5d7b85c03c77649ec6088862bffc061e704))
-
-## [2.0.57-alpha.0](https://github.com/vtex/faststore/compare/v2.0.56-alpha.0...v2.0.57-alpha.0) (2023-01-30)
-
-### Features
-
-- Adds `Skeleton` Component ([#1616](https://github.com/vtex/faststore/issues/1616)) ([ed2f82d](https://github.com/vtex/faststore/commit/ed2f82dd2a49dcb64611fb48c9b2519633a87251)), closes [#361](https://github.com/vtex/faststore/issues/361)
-
-## [2.0.56-alpha.0](https://github.com/vtex/faststore/compare/v2.0.55-alpha.0...v2.0.56-alpha.0) (2023-01-24)
-
-### Features
-
-- Adds `Modal` component ([#1615](https://github.com/vtex/faststore/issues/1615)) ([a976d53](https://github.com/vtex/faststore/commit/a976d530ce05e2ecefa8090be1237b293a8b97cc))
-
-## [2.0.55-alpha.0](https://github.com/vtex/faststore/compare/v2.0.54-alpha.0...v2.0.55-alpha.0) (2023-01-23)
-
-### Chores
-
-- Extracts priceFormatter hook ([#1617](https://github.com/vtex/faststore/issues/1617)) ([95a9617](https://github.com/vtex/faststore/commit/95a96174968d465ffd092ba81a447dcbf1f7e6ac))
-
-## [2.0.54-alpha.0](https://github.com/vtex/faststore/compare/v2.0.53-alpha.0...v2.0.54-alpha.0) (2023-01-20)
-
-### Features
-
-- Adds `Slider` & `PriceRange` component ([#1605](https://github.com/vtex/faststore/issues/1605)) ([97bf10d](https://github.com/vtex/faststore/commit/97bf10d0d34c524a316e95127e4ed8096c9fca4e))
-
-## [2.0.53-alpha.0](https://github.com/vtex/faststore/compare/v2.0.52-alpha.0...v2.0.53-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `LoadingButton` and `Loader` component ([#1611](https://github.com/vtex/faststore/issues/1611)) ([34021b2](https://github.com/vtex/faststore/commit/34021b22a489cd0b70a1ae62d1076285cb95af59))
-
-## [2.0.52-alpha.0](https://github.com/vtex/faststore/compare/v2.0.51-alpha.0...v2.0.52-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `Gift` component ([#1610](https://github.com/vtex/faststore/issues/1610)) ([baa80af](https://github.com/vtex/faststore/commit/baa80afa5dc6160086cf8ac101cc4a4290435aa8))
-
-## [2.0.51-alpha.0](https://github.com/vtex/faststore/compare/v2.0.50-alpha.0...v2.0.51-alpha.0) (2023-01-17)
-
-### Bug Fixes
-
-- button documentation ([#1612](https://github.com/vtex/faststore/issues/1612)) ([6f1dcba](https://github.com/vtex/faststore/commit/6f1dcba09bee897f67b0088f8d3ca25b9791afff))
-
-## [2.0.50-alpha.0](https://github.com/vtex/faststore/compare/v2.0.49-alpha.0...v2.0.50-alpha.0) (2023-01-16)
-
-### Features
-
-- Adds `RadioGroup` component ([#1604](https://github.com/vtex/faststore/issues/1604)) ([10abc3a](https://github.com/vtex/faststore/commit/10abc3a8b6d8871177e1a5b7728e8724e9a99f89))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-### Chores
-
-- updates cms folder for faststore builder ([#1603](https://github.com/vtex/faststore/issues/1603)) ([5e4d060](https://github.com/vtex/faststore/commit/5e4d060d507ebbbe4842a0596405e036e94799d6))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-### Bug Fixes
-
-- ui size limit ([#1608](https://github.com/vtex/faststore/issues/1608)) ([c19360f](https://github.com/vtex/faststore/commit/c19360f4eb0e1d1f53e578e8429daa1a716d881d))
-
-## [2.0.47-alpha.0](https://github.com/vtex/faststore/compare/v2.0.46-alpha.0...v2.0.47-alpha.0) (2023-01-13)
-
-### Features
-
-- Adds `QuantitySelector` component ([#1597](https://github.com/vtex/faststore/issues/1597)) ([a587155](https://github.com/vtex/faststore/commit/a5871559a4a28754dd9868b7f85c92a5bde52917))
-
-## [2.0.46-alpha.0](https://github.com/vtex/faststore/compare/v2.0.45-alpha.0...v2.0.46-alpha.0) (2023-01-12)
-
-### Features
-
-- Add support to `shouldSplitItem` param in `validateCart` mutation ([#1596](https://github.com/vtex/faststore/issues/1596)) ([246a17f](https://github.com/vtex/faststore/commit/246a17f07665208dd000ea2f326004aae63a5795))
-
-## [2.0.45-alpha.0](https://github.com/vtex/faststore/compare/v2.0.44-alpha.0...v2.0.45-alpha.0) (2023-01-12)
-
-### Bug Fixes
-
-- dom element at home ([#1606](https://github.com/vtex/faststore/issues/1606)) ([c95acb5](https://github.com/vtex/faststore/commit/c95acb529e1dd5f3f42bd9265e0515c5553ba819))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-### Features
-
-- Add seller dimension to channel ([#1484](https://github.com/vtex/faststore/issues/1484)) ([8119629](https://github.com/vtex/faststore/commit/8119629d64cef92d707f134071bb4f26f2e5800e))
-
-## [2.0.43-alpha.0](https://github.com/vtex/faststore/compare/v2.0.42-alpha.0...v2.0.43-alpha.0) (2023-01-11)
-
-### Bug Fixes
-
-- revert table props and adds new props (types mismatch) ([#1601](https://github.com/vtex/faststore/issues/1601)) ([e791a3f](https://github.com/vtex/faststore/commit/e791a3f6cdd6f3382997bce1d9f105531c05ddbd))
-
-## [2.0.42-alpha.0](https://github.com/vtex/faststore/compare/v2.0.41-alpha.0...v2.0.42-alpha.0) (2023-01-10)
-
-### Chores
-
-- `Table` component's improvements ([#1592](https://github.com/vtex/faststore/issues/1592)) ([176a710](https://github.com/vtex/faststore/commit/176a710cf8d2917527cb4f99a8ddc956d841ae76))
-
-## [2.0.41-alpha.0](https://github.com/vtex/faststore/compare/v2.0.40-alpha.0...v2.0.41-alpha.0) (2023-01-10)
-
-### Features
-
-- Adds `Dropdown` component ([#1572](https://github.com/vtex/faststore/issues/1572)) ([edfe557](https://github.com/vtex/faststore/commit/edfe55797d51049b137c1d8c0d648f36d3ebf980))
-
-## [2.0.40-alpha.0](https://github.com/vtex/faststore/compare/v2.0.39-alpha.0...v2.0.40-alpha.0) (2023-01-10)
-
-### Documentation
-
-- Adds `Hero` component doc + Updates docs overview section ([#1598](https://github.com/vtex/faststore/issues/1598)) ([47b3199](https://github.com/vtex/faststore/commit/47b319904d0ff06fc5d3bacddbf5bfc319d451eb))
-
-## [2.0.39-alpha.0](https://github.com/vtex/faststore/compare/v2.0.38-alpha.0...v2.0.39-alpha.0) (2023-01-09)
-
-### Bug Fixes
-
-- Edit TableProps ([#1594](https://github.com/vtex/faststore/issues/1594)) ([dcf7970](https://github.com/vtex/faststore/commit/dcf797001c09d1abc685fcbd7ec8aa4bdc7a7bcc))
-
-## [2.0.38-alpha.0](https://github.com/vtex/faststore/compare/v2.0.37-alpha.0...v2.0.38-alpha.0) (2023-01-09)
-
-### Features
-
-- Adds `Accordion` component ([#1567](https://github.com/vtex/faststore/issues/1567)) ([0173e20](https://github.com/vtex/faststore/commit/0173e20b162d53d8faae0791e08110f335c6d6f6))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-- Update lock file ([#1591](https://github.com/vtex/faststore/issues/1591)) ([47c1d6f](https://github.com/vtex/faststore/commit/47c1d6f163ba0e8cf0db92fa06c3aea2f2b6b5a8))
-
-## [2.0.36-alpha.0](https://github.com/vtex/faststore/compare/v2.0.35-alpha.0...v2.0.36-alpha.0) (2023-01-05)
-
-### Chores
-
-- Updates `Table` Colored Variant ([#1587](https://github.com/vtex/faststore/issues/1587)) ([04050eb](https://github.com/vtex/faststore/commit/04050eb920fe08ca3b4fe30a3e17fbf9dbedff44))
-
-## [2.0.35-alpha.0](https://github.com/vtex/faststore/compare/v2.0.34-alpha.0...v2.0.35-alpha.0) (2023-01-05)
-
-### Documentation
-
-- Updates Components `mdx` files and General Adjusts ([#1575](https://github.com/vtex/faststore/issues/1575)) ([2787bd0](https://github.com/vtex/faststore/commit/2787bd0db083b66f642ac6af2f141e98de87f6fd))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([d3b7846](https://github.com/vtex/faststore/commit/d3b78468699765f4313c68f6ae8572fe5420cbe1))
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-### Chores
-
-- remove docs ([#1584](https://github.com/vtex/faststore/issues/1584)) ([8d3cf8d](https://github.com/vtex/faststore/commit/8d3cf8d7ae0968136d1dd484299b17cc218f6e23))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Bug Fixes
-
-- ui version ([f235876](https://github.com/vtex/faststore/commit/f2358761e283b0877406b49d4c827871f4bd7456))
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## [2.0.29-alpha.0](https://github.com/vtex/faststore/compare/v2.0.28-alpha.0...v2.0.29-alpha.0) (2022-12-23)
-
-### Bug Fixes
-
-- Adds Badge props to `DiscountBadge` + Fixes SelectField testId ([#1570](https://github.com/vtex/faststore/issues/1570)) ([b1513a5](https://github.com/vtex/faststore/commit/b1513a569235cb60bd3a1c6f16e24fd61d810017))
-
-## [2.0.28-alpha.0](https://github.com/vtex/faststore/compare/v2.0.27-alpha.0...v2.0.28-alpha.0) (2022-12-23)
-
-### Chores
-
-- Removes icons id ([#1571](https://github.com/vtex/faststore/issues/1571)) ([2e790fa](https://github.com/vtex/faststore/commit/2e790faa2ca37fc4f6f9f7c7796f79ceaf6a3f02))
-
-## [2.0.27-alpha.0](https://github.com/vtex/faststore/compare/v2.0.26-alpha.0...v2.0.27-alpha.0) (2022-12-23)
-
-### Features
-
-- Adds `Table` component ([#1554](https://github.com/vtex/faststore/issues/1554)) ([0ed5f45](https://github.com/vtex/faststore/commit/0ed5f455fa42cf3a02ae3dd0370759782caf6cdd))
-
-## [2.0.26-alpha.0](https://github.com/vtex/faststore/compare/v2.0.25-alpha.0...v2.0.26-alpha.0) (2022-12-22)
-
-**Note:** Version bump only for package faststore
-
-## [2.0.25-alpha.0](https://github.com/vtex/faststore/compare/v2.0.24-alpha.0...v2.0.25-alpha.0) (2022-12-22)
-
-### Bug Fixes
-
-- cli plugin cms documentation ([#1566](https://github.com/vtex/faststore/issues/1566)) ([41cfbb5](https://github.com/vtex/faststore/commit/41cfbb5e634c80fb1961ab0e57459dd18931c458))
-
-## [2.0.24-alpha.0](https://github.com/vtex/faststore/compare/v2.0.23-alpha.0...v2.0.24-alpha.0) (2022-12-20)
-
-### Chores
-
-- Review components docs ([#1557](https://github.com/vtex/faststore/issues/1557)) ([2da23a0](https://github.com/vtex/faststore/commit/2da23a0ffe2f201f7e6163ea3db8dea4de07afa8))
-
-## [2.0.23-alpha.0](https://github.com/vtex/faststore/compare/v2.0.22-alpha.0...v2.0.23-alpha.0) (2022-12-20)
-
-### Bug Fixes
-
-- `Hero` component ([#1563](https://github.com/vtex/faststore/issues/1563)) ([471ec14](https://github.com/vtex/faststore/commit/471ec140506c4db79d63a31acc2555a0b8ae51ed))
-
-## [2.0.22-alpha.0](https://github.com/vtex/faststore/compare/v2.0.21-alpha.0...v2.0.22-alpha.0) (2022-12-19)
-
-### Bug Fixes
-
-- cli cms merge ([#1565](https://github.com/vtex/faststore/issues/1565)) ([2e5bd93](https://github.com/vtex/faststore/commit/2e5bd93c0ee5f1b6ab3afa39a2eae79c5ebea210))
-
-## [2.0.21-alpha.0](https://github.com/vtex/faststore/compare/v2.0.20-alpha.0...v2.0.21-alpha.0) (2022-12-19)
-
-### Chores
-
-- rename config file ([#1564](https://github.com/vtex/faststore/issues/1564)) ([6919db1](https://github.com/vtex/faststore/commit/6919db12949276dd5ebacaf7e07bbf93562a64c0))
-
-## [2.0.20-alpha.0](https://github.com/vtex/faststore/compare/v2.0.19-alpha.0...v2.0.20-alpha.0) (2022-12-19)
-
-### Bug Fixes
-
-- cli copy theme ([#1560](https://github.com/vtex/faststore/issues/1560)) ([9f16796](https://github.com/vtex/faststore/commit/9f167967a9a48adb7912a74a131fda22dd9715e8))
-
-## [2.0.19-alpha.0](https://github.com/vtex/faststore/compare/v2.0.18-alpha.0...v2.0.19-alpha.0) (2022-12-16)
-
-### Features
-
-- Adds `Hero` component ([#1556](https://github.com/vtex/faststore/issues/1556)) ([871f35c](https://github.com/vtex/faststore/commit/871f35cdcfc85d5ec0038dcc55a9aeedcc5ff546))
-
-## [2.0.18-alpha.0](https://github.com/vtex/faststore/compare/v2.0.17-alpha.0...v2.0.18-alpha.0) (2022-12-15)
-
-### Bug Fixes
-
-- Starter's Integration tests ([#1559](https://github.com/vtex/faststore/issues/1559)) ([d597d98](https://github.com/vtex/faststore/commit/d597d981079448ca46588a8e32964c4e5dcc84f8)), closes [#323](https://github.com/vtex/faststore/issues/323)
-
-## [2.0.17-alpha.0](https://github.com/vtex/faststore/compare/v2.0.16-alpha.0...v2.0.17-alpha.0) (2022-12-15)
-
-### Features
-
-- Create `LinkButton` component ([#1558](https://github.com/vtex/faststore/issues/1558)) ([bbbebdb](https://github.com/vtex/faststore/commit/bbbebdb081f9c40315d8b661461e3b09a34b84b6))
-
-## [2.0.16-alpha.0](https://github.com/vtex/faststore/compare/v2.0.15-alpha.0...v2.0.16-alpha.0) (2022-12-15)
-
-### Features
-
-- Adds `Toggle` & `ToggleField` & `SROnly` components ([#1555](https://github.com/vtex/faststore/issues/1555)) ([b055c0a](https://github.com/vtex/faststore/commit/b055c0aa67291ad88e865b60e96b8a898a97db14))
-
-## [2.0.15-alpha.0](https://github.com/vtex/faststore/compare/v2.0.14-alpha.0...v2.0.15-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `List` component ([#1549](https://github.com/vtex/faststore/issues/1549)) ([55858fe](https://github.com/vtex/faststore/commit/55858fe39c254786e7c7a1e1dd3da96ed3be0d16))
-
-## [2.0.14-alpha.0](https://github.com/vtex/faststore/compare/v2.0.13-alpha.0...v2.0.14-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `Link` component ([#1543](https://github.com/vtex/faststore/issues/1543)) ([9c219eb](https://github.com/vtex/faststore/commit/9c219eba996fc6fec90edd1383a4abf8dbe0a7ef))
-
-## [2.0.13-alpha.0](https://github.com/vtex/faststore/compare/v2.0.12-alpha.0...v2.0.13-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `Select` and `SelectField` components ([#1547](https://github.com/vtex/faststore/issues/1547)) ([7c4beb0](https://github.com/vtex/faststore/commit/7c4beb085c893ad540e1a4440cc7b902fa36a75c))
-
-## [2.0.12-alpha.0](https://github.com/vtex/faststore/compare/v2.0.11-alpha.0...v2.0.12-alpha.0) (2022-12-13)
-
-### Features
-
-- Beautify CLI messages with chalk ([#1550](https://github.com/vtex/faststore/issues/1550)) ([6c4c32c](https://github.com/vtex/faststore/commit/6c4c32c3ac0a97b55364b7251f2d90dc70f08952))
-
-## [2.0.11-alpha.0](https://github.com/vtex/faststore/compare/v2.0.10-alpha.0...v2.0.11-alpha.0) (2022-12-13)
-
-### Bug Fixes
-
-- Fix config docusaurus ([#1553](https://github.com/vtex/faststore/issues/1553)) ([f26e21b](https://github.com/vtex/faststore/commit/f26e21b8b9744651c5524ef61917a6ed9247085b))
-
-## [2.0.10-alpha.0](https://github.com/vtex/faststore/compare/v2.0.9-alpha.0...v2.0.10-alpha.0) (2022-12-12)
-
-### Features
-
-- Adds `ButtonBuy` component ([#1551](https://github.com/vtex/faststore/issues/1551)) ([cf48bc8](https://github.com/vtex/faststore/commit/cf48bc803f0537e1a32eb87ff18e8328646939a5))
-
-## [2.0.9-alpha.0](https://github.com/vtex/faststore/compare/v2.0.8-alpha.0...v2.0.9-alpha.0) (2022-12-12)
-
-### Features
-
-- Create `Price` component ([#1548](https://github.com/vtex/faststore/issues/1548)) ([2d7418a](https://github.com/vtex/faststore/commit/2d7418ad45f42cdb0174d45d7c4de5b6d6e27f60))
-
-## [2.0.8-alpha.0](https://github.com/vtex/faststore/compare/v2.0.7-alpha.0...v2.0.8-alpha.0) (2022-12-12)
-
-### Documentation
-
-- Updates `ui-component` template file ([#1552](https://github.com/vtex/faststore/issues/1552)) ([2ac33a3](https://github.com/vtex/faststore/commit/2ac33a30fd9fc2425610967c86baf52ff20dc9c1))
-
-## [2.0.7-alpha.0](https://github.com/vtex/faststore/compare/v2.0.6-alpha.0...v2.0.7-alpha.0) (2022-12-09)
-
-### Features
-
-- Adds `DiscountBadge` component ([#1546](https://github.com/vtex/faststore/issues/1546)) ([9b2e279](https://github.com/vtex/faststore/commit/9b2e27940ffa9b52c9a62541a07e1f593a0bcfb7)), closes [#313](https://github.com/vtex/faststore/issues/313)
-
-## [2.0.6-alpha.0](https://github.com/vtex/faststore/compare/v2.0.5-alpha.0...v2.0.6-alpha.0) (2022-12-08)
-
-### Features
-
-- Adds `Input` & `InputField` components ([#1545](https://github.com/vtex/faststore/issues/1545)) ([f89ec49](https://github.com/vtex/faststore/commit/f89ec4930dbcc7179f0fac484e16b0981540b6df))
-
-## [2.0.5-alpha.0](https://github.com/vtex/faststore/compare/v2.0.4-alpha.0...v2.0.5-alpha.0) (2022-12-07)
-
-### Features
-
-- `Overlay` Component. ([#1544](https://github.com/vtex/faststore/issues/1544)) ([dad6872](https://github.com/vtex/faststore/commit/dad6872654faaa4411d1f5949e5beab609e2ca36))
-
-## [2.0.4-alpha.0](https://github.com/vtex/faststore/compare/v2.0.3-alpha.0...v2.0.4-alpha.0) (2022-12-07)
-
-### Chores
-
-- config faststore ui ([#1495](https://github.com/vtex/faststore/issues/1495)) ([ed5aa8f](https://github.com/vtex/faststore/commit/ed5aa8f83ab3d929dd47f30b1e171240e1c3c459))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Bug Fixes
-
-- CD's Publish step ([#1524](https://github.com/vtex/faststore/issues/1524)) ([9785e8e](https://github.com/vtex/faststore/commit/9785e8e4846fdc3d24297c820328ad3cc4d516da))
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## [1.12.31](https://github.com/vtex/faststore/compare/v1.12.30...v1.12.31) (2022-11-16)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.30](https://github.com/vtex/faststore/compare/v1.12.29...v1.12.30) (2022-11-16)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.29](https://github.com/vtex/faststore/compare/v1.12.28...v1.12.29) (2022-11-14)
-
-### Features
-
-- Shipping Simulation Integration ([#1440](https://github.com/vtex/faststore/issues/1440)) ([8eacba4](https://github.com/vtex/faststore/commit/8eacba46a40f53be7fdca72dc04ff838dbf449c7))
-
-## [1.12.28](https://github.com/vtex/faststore/compare/v1.12.27...v1.12.28) (2022-11-09)
-
-### Features
-
-- adds start command to serve stores ([#1511](https://github.com/vtex/faststore/issues/1511)) ([9ef30b5](https://github.com/vtex/faststore/commit/9ef30b5e83c3518240d65235c4f84394ab0fc4cd))
-
-## [1.12.27](https://github.com/vtex/faststore/compare/v1.12.26...v1.12.27) (2022-11-09)
-
-### Features
-
-- add build command ([#1506](https://github.com/vtex/faststore/issues/1506)) ([f9dfa41](https://github.com/vtex/faststore/commit/f9dfa41998935e839b172cba5ec2eee760b06fb0))
-
-## [1.12.26](https://github.com/vtex/faststore/compare/v1.12.25...v1.12.26) (2022-11-09)
-
-### Features
-
-- adds develop command when running faststore dev ([#1500](https://github.com/vtex/faststore/issues/1500)) ([ff6bad5](https://github.com/vtex/faststore/commit/ff6bad5abfd674eec62aee5ad1f467dbcbaa51b0))
-
-## [1.12.25](https://github.com/vtex/faststore/compare/v1.12.24...v1.12.25) (2022-11-09)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.24](https://github.com/vtex/faststore/compare/v1.12.23...v1.12.24) (2022-11-08)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.23](https://github.com/vtex/faststore/compare/v1.12.22...v1.12.23) (2022-11-04)
-
-### Features
-
-- Revisit `Carousel` component ([#1476](https://github.com/vtex/faststore/issues/1476)) ([5bf8662](https://github.com/vtex/faststore/commit/5bf86628e04fd5cf47c10071e66058de035d8023))
-
-## [1.12.22](https://github.com/vtex/faststore/compare/v1.12.21...v1.12.22) (2022-11-04)
-
-### Documentation
-
-- Debugging Releases and CMS publishing ([#1505](https://github.com/vtex/faststore/issues/1505)) ([e1f6ea7](https://github.com/vtex/faststore/commit/e1f6ea7236e1ba69930fd4ccad5396a007e49236))
-
-## [1.12.21](https://github.com/vtex/faststore/compare/v1.12.20...v1.12.21) (2022-10-31)
-
-### Bug Fixes
-
-- Takes sales channel in consideration when getting region ([#1499](https://github.com/vtex/faststore/issues/1499)) ([6827c39](https://github.com/vtex/faststore/commit/6827c396a43e025e5bafb726471fdd212baba330))
-
-## 1.12.20 (2022-10-26)
-
-### Features
-
-- Add watch capability to cli dev command ([#1483](https://github.com/vtex/faststore/issues/1483)) ([ac34aad](https://github.com/vtex/faststore/commit/ac34aad74411118b73a53329978810083856fcaa))
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.18](https://github.com/vtex/faststore/compare/v1.12.17...v1.12.18) (2022-10-25)
-
-### Features
-
-- create the components packages ([#1489](https://github.com/vtex/faststore/issues/1489)) ([549805d](https://github.com/vtex/faststore/commit/549805df0d489aa768ed0a09413d0fcc569bdbd3))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-### Features
-
-- cli ([#1481](https://github.com/vtex/faststore/issues/1481)) ([89ddc99](https://github.com/vtex/faststore/commit/89ddc990937e0ba381f364b1f0d30078916dfe76))
-
-## [1.12.16](https://github.com/vtex/faststore/compare/v1.12.15...v1.12.16) (2022-10-19)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.15](https://github.com/vtex/faststore/compare/v1.12.14...v1.12.15) (2022-10-15)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.14](https://github.com/vtex/faststore/compare/v1.12.13...v1.12.14) (2022-10-13)
-
-### Bug Fixes
-
-- checks for session existance before trying to update shipping data ([#1487](https://github.com/vtex/faststore/issues/1487)) ([8edced3](https://github.com/vtex/faststore/commit/8edced304ccdc804c7c9eb215955cec6f7c621ca))
-
-## [1.12.13](https://github.com/vtex/faststore/compare/v1.12.12...v1.12.13) (2022-10-11)
-
-### Bug Fixes
-
-- Rename `SearchInput`'s form data-attribute ([#1485](https://github.com/vtex/faststore/issues/1485)) ([c065646](https://github.com/vtex/faststore/commit/c065646948e32d3474f13b79a50090b6ed0bda28))
-
-## [1.12.12](https://github.com/vtex/faststore/compare/v1.12.11...v1.12.12) (2022-10-10)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.11](https://github.com/vtex/faststore/compare/v1.12.10...v1.12.11) (2022-10-06)
-
-### Bug Fixes
-
-- using data-fs instead data-store ([#1482](https://github.com/vtex/faststore/issues/1482)) ([883d4f1](https://github.com/vtex/faststore/commit/883d4f139edc10aeeea1277b17b2674c94b0f777))
-
-## [1.12.10](https://github.com/vtex/faststore/compare/v1.12.9...v1.12.10) (2022-10-05)
-
-### Documentation
-
-- RN CMS preview ([#1479](https://github.com/vtex/faststore/issues/1479)) ([f072c1b](https://github.com/vtex/faststore/commit/f072c1b6febdd147f906d353080d9738277b5fe2))
-
-## [1.12.9](https://github.com/vtex/faststore/compare/v1.12.8...v1.12.9) (2022-10-04)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.8](https://github.com/vtex/faststore/compare/v1.12.7...v1.12.8) (2022-09-29)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.7](https://github.com/vtex/faststore/compare/v1.12.6...v1.12.7) (2022-09-28)
-
-**Note:** Version bump only for package faststore
-
-## [1.12.6](https://github.com/vtex/faststore/compare/v1.12.5...v1.12.6) (2022-09-26)
-
-### Features
-
-- Add CacheControl GraphQL directive ([#1473](https://github.com/vtex/faststore/issues/1473)) ([b9fd889](https://github.com/vtex/faststore/commit/b9fd889fda56ea409266c56478adcd49fa34d46a))
-
-## [1.12.5](https://github.com/vtex/faststore/compare/v1.12.4...v1.12.5) (2022-09-22)
-
-### Bug Fixes
-
-- fixes tsconfig.json to exclude storybook types inside .d.ts file ([#1472](https://github.com/vtex/faststore/issues/1472)) ([97274b5](https://github.com/vtex/faststore/commit/97274b58b79849cb670e87052130b2ed00bb53f4))
-
-## [1.12.4](https://github.com/vtex/faststore/compare/v1.12.3...v1.12.4) (2022-09-21)
-
-### Features
-
-- **ui:** improve extensibility of table and accordion molecules ([#1470](https://github.com/vtex/faststore/issues/1470)) ([2abf78c](https://github.com/vtex/faststore/commit/2abf78c36ce446f6e5b213738a359fb1b37e98a5))
-
-## [1.12.3](https://github.com/vtex/faststore/compare/v1.12.2...v1.12.3) (2022-09-19)
-
-### Documentation
-
-- fix extending graphql example ([#1468](https://github.com/vtex/faststore/issues/1468)) ([2c75c8f](https://github.com/vtex/faststore/commit/2c75c8f36c352b270820fc4ba7f3f11ac3e27c2a))
-
-## [1.12.2](https://github.com/vtex/faststore/compare/v1.12.1...v1.12.2) (2022-09-13)
-
-### Documentation
-
-- handling-the-impact-of-third-party-scripts ([#1467](https://github.com/vtex/faststore/issues/1467)) ([8cb707e](https://github.com/vtex/faststore/commit/8cb707ec1e980365f3502d7b21aba3857550d272))
-
-## [1.12.1](https://github.com/vtex/faststore/compare/v1.12.0...v1.12.1) (2022-09-13)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.21](https://github.com/vtex/faststore/compare/v1.11.20...v1.11.21) (2022-09-13)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.20](https://github.com/vtex/faststore/compare/v1.11.19...v1.11.20) (2022-09-12)
-
-### Refactoring
-
-- Extract `CartItem` component from the starter ([#1461](https://github.com/vtex/faststore/issues/1461)) ([ff70925](https://github.com/vtex/faststore/commit/ff70925abc123a9b6c66de248cdaf3541da66d41))
-
-## [1.11.19](https://github.com/vtex/faststore/compare/v1.11.18...v1.11.19) (2022-09-12)
-
-### Refactoring
-
-- Extract `SkuSelector` component from the starter ([#1462](https://github.com/vtex/faststore/issues/1462)) ([98a68ea](https://github.com/vtex/faststore/commit/98a68ea40cd64e2880b3b4a3f75dbd355463369f))
-
-## [1.11.18](https://github.com/vtex/faststore/compare/v1.11.17...v1.11.18) (2022-09-12)
-
-### Features
-
-- Adds OrderSummary component to FastStore UI ([#1456](https://github.com/vtex/faststore/issues/1456)) ([f1d983c](https://github.com/vtex/faststore/commit/f1d983cf5684053ad810455d2b6f6ac77bfc7b76))
-
-## [1.11.17](https://github.com/vtex/faststore/compare/v1.11.16...v1.11.17) (2022-09-12)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.16](https://github.com/vtex/faststore/compare/v1.11.15...v1.11.16) (2022-09-12)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.15](https://github.com/vtex/faststore/compare/v1.11.14...v1.11.15) (2022-09-09)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.14](https://github.com/vtex/faststore/compare/v1.11.13...v1.11.14) (2022-09-09)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.13](https://github.com/vtex/faststore/compare/v1.11.12...v1.11.13) (2022-09-09)
-
-### Documentation
-
-- getting started with lighthouse ([#1458](https://github.com/vtex/faststore/issues/1458)) ([c52d97e](https://github.com/vtex/faststore/commit/c52d97e811000587af34888fe5df1d74f030b1b6))
-
-## [1.11.12](https://github.com/vtex/faststore/compare/v1.11.11...v1.11.12) (2022-09-08)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.11](https://github.com/vtex/faststore/compare/v1.11.10...v1.11.11) (2022-09-02)
-
-### Documentation
-
-- add analyzing a projects bundle size ([#1453](https://github.com/vtex/faststore/issues/1453)) ([e7e74fd](https://github.com/vtex/faststore/commit/e7e74fd4c0ed7fbb6fa53d2c5ddc178c685f487c))
-
-## [1.11.10](https://github.com/vtex/faststore/compare/v1.11.9...v1.11.10) (2022-09-01)
-
-### Documentation
-
-- review analytics on faststore ([#1449](https://github.com/vtex/faststore/issues/1449)) ([c3a9aab](https://github.com/vtex/faststore/commit/c3a9aabeae181e24c68bab2ea887053eacbdabe3))
-
-## [1.11.9](https://github.com/vtex/faststore/compare/v1.11.8...v1.11.9) (2022-09-01)
-
-### Documentation
-
-- Add glossary ([#1452](https://github.com/vtex/faststore/issues/1452)) ([49a25d1](https://github.com/vtex/faststore/commit/49a25d18b324079db3e6aad046ee6ceef347fb49))
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## [1.11.7](https://github.com/vtex/faststore/compare/v1.11.6...v1.11.7) (2022-08-29)
-
-### Features
-
-- Cart with session info ([#1444](https://github.com/vtex/faststore/issues/1444)) ([e36ad6f](https://github.com/vtex/faststore/commit/e36ad6f6e1af1a03c0dd47c4263e96bc9d0b7b8d))
-
-## [1.11.6](https://github.com/vtex/faststore/compare/v1.11.5...v1.11.6) (2022-08-29)
-
-### Documentation
-
-- Fix NextJS and Gatsby sections on using a GraphQL IDE ([#1445](https://github.com/vtex/faststore/issues/1445)) ([5cc642c](https://github.com/vtex/faststore/commit/5cc642ca042eb93c0789c7f5ea1c1b610f0c0478))
-
-## [1.11.5](https://github.com/vtex/faststore/compare/v1.11.4...v1.11.5) (2022-08-19)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.4](https://github.com/vtex/faststore/compare/v1.11.3...v1.11.4) (2022-08-15)
-
-### Features
-
-- Product releaseDate ([#1438](https://github.com/vtex/faststore/issues/1438)) ([255b236](https://github.com/vtex/faststore/commit/255b236b8573f88768a0ba0ec0ead001e36daa7d))
-
-## [1.11.3](https://github.com/vtex/faststore/compare/v1.11.2...v1.11.3) (2022-08-10)
-
-### Bug Fixes
-
-- Join cart items ([#1434](https://github.com/vtex/faststore/issues/1434)) ([990b6a9](https://github.com/vtex/faststore/commit/990b6a920703f9004f7e0d6be6c2a316610db5c6))
-
-## [1.11.2](https://github.com/vtex/faststore/compare/v1.11.1...v1.11.2) (2022-08-10)
-
-**Note:** Version bump only for package faststore
-
-## [1.11.1](https://github.com/vtex/faststore/compare/v1.11.0...v1.11.1) (2022-08-05)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.36](https://github.com/vtex/faststore/compare/v1.10.35...v1.10.36) (2022-08-04)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.35](https://github.com/vtex/faststore/compare/v1.10.34...v1.10.35) (2022-08-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-### Chores
-
-- Update generated types from `@faststore/api` ([#1431](https://github.com/vtex/faststore/issues/1431)) ([516068a](https://github.com/vtex/faststore/commit/516068a4cb67a9029693c967db34b133aac81403))
-
-## [1.10.33](https://github.com/vtex/faststore/compare/v1.10.32...v1.10.33) (2022-08-03)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.32](https://github.com/vtex/faststore/compare/v1.10.31...v1.10.32) (2022-08-02)
-
-### Features
-
-- useEffect is not for effects ([#1392](https://github.com/vtex/faststore/issues/1392)) ([caa85f6](https://github.com/vtex/faststore/commit/caa85f643832001b59f2095b2ecc50b7dadfabab))
-
-## [1.10.31](https://github.com/vtex/faststore/compare/v1.10.30...v1.10.31) (2022-08-02)
-
-### Features
-
-- Add fowardRef to `ProductTitle` ([#1427](https://github.com/vtex/faststore/issues/1427)) ([5f622f3](https://github.com/vtex/faststore/commit/5f622f3a28a32228aa457c0b1bd141969f541262))
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Attempt to fix the publishing ([#1426](https://github.com/vtex/faststore/issues/1426)) ([3b8e124](https://github.com/vtex/faststore/commit/3b8e124e5bd371b23d427503ae130a52602a8e8c))
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## [1.10.29](https://github.com/vtex/faststore/compare/v1.10.28...v1.10.29) (2022-07-29)
-
-### Features
-
-- Add ProductTitle Molecule ([#1418](https://github.com/vtex/faststore/issues/1418)) ([184d0b9](https://github.com/vtex/faststore/commit/184d0b9399648e3cab25cd2348c17269ac549f49))
-
-## [1.10.28](https://github.com/vtex/faststore/compare/v1.10.27...v1.10.28) (2022-07-28)
-
-### Bug Fixes
-
-- `Slider` thumb elements position ([#1423](https://github.com/vtex/faststore/issues/1423)) ([1207769](https://github.com/vtex/faststore/commit/12077694cde6d55ae30f76f277d5eaed20938f15))
-
-## [1.10.27](https://github.com/vtex/faststore/compare/v1.10.26...v1.10.27) (2022-07-26)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.26](https://github.com/vtex/faststore/compare/v1.10.25...v1.10.26) (2022-07-25)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.25](https://github.com/vtex/faststore/compare/v1.10.24...v1.10.25) (2022-07-25)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.24](https://github.com/vtex/faststore/compare/v1.10.23...v1.10.24) (2022-07-25)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.23](https://github.com/vtex/faststore/compare/v1.10.22...v1.10.23) (2022-07-25)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.22](https://github.com/vtex/faststore/compare/v1.10.21...v1.10.22) (2022-07-25)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.21](https://github.com/vtex/faststore/compare/v1.10.20...v1.10.21) (2022-07-22)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.20](https://github.com/vtex/faststore/compare/v1.10.19...v1.10.20) (2022-07-22)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.19](https://github.com/vtex/faststore/compare/v1.10.18...v1.10.19) (2022-07-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.16](https://github.com/vtex/faststore/compare/v1.10.15...v1.10.16) (2022-07-19)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.15](https://github.com/vtex/faststore/compare/v1.10.14...v1.10.15) (2022-07-19)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.14](https://github.com/vtex/faststore/compare/v1.10.13...v1.10.14) (2022-07-18)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.13](https://github.com/vtex/faststore/compare/v1.10.12...v1.10.13) (2022-07-13)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.12](https://github.com/vtex/faststore/compare/v1.10.11...v1.10.12) (2022-07-12)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.11](https://github.com/vtex/faststore/compare/v1.10.10...v1.10.11) (2022-07-11)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.10](https://github.com/vtex/faststore/compare/v1.10.9...v1.10.10) (2022-07-08)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.9](https://github.com/vtex/faststore/compare/v1.10.8...v1.10.9) (2022-07-08)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.8](https://github.com/vtex/faststore/compare/v1.10.7...v1.10.8) (2022-07-07)
-
-### Features
-
-- Add priceCurrency to Offer ([#1399](https://github.com/vtex/faststore/issues/1399)) ([7ca846a](https://github.com/vtex/faststore/commit/7ca846af9b157707c71422b0d7e3e481edfbe5e6))
-
-## [1.10.7](https://github.com/vtex/faststore/compare/v1.10.6...v1.10.7) (2022-07-06)
-
-### Features
-
-- Supports update of `Slider` and `PriceRange` values ([#1380](https://github.com/vtex/faststore/issues/1380)) ([41dca35](https://github.com/vtex/faststore/commit/41dca35f0c320cf1659e8a74032cc2ee755a9f6f))
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.10.5](https://github.com/vtex/faststore/compare/v1.10.4...v1.10.5) (2022-07-04)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.4](https://github.com/vtex/faststore/compare/v1.10.3...v1.10.4) (2022-07-04)
-
-### Bug Fixes
-
-- @faststore/graphql-utils ([#1394](https://github.com/vtex/faststore/issues/1394)) ([ea4b483](https://github.com/vtex/faststore/commit/ea4b4832b25fe257d8c5c0c67bc09fb04dc693cf))
-
-## [1.10.3](https://github.com/vtex/faststore/compare/v1.10.2...v1.10.3) (2022-07-04)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.2](https://github.com/vtex/faststore/compare/v1.10.1...v1.10.2) (2022-07-01)
-
-**Note:** Version bump only for package faststore
-
-## [1.10.1](https://github.com/vtex/faststore/compare/v1.10.0...v1.10.1) (2022-07-01)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.19](https://github.com/vtex/faststore/compare/v1.9.18...v1.9.19) (2022-06-29)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.18](https://github.com/vtex/faststore/compare/v1.9.17...v1.9.18) (2022-06-29)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.17](https://github.com/vtex/faststore/compare/v1.9.16...v1.9.17) (2022-06-28)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.16](https://github.com/vtex/faststore/compare/v1.9.15...v1.9.16) (2022-06-28)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.15](https://github.com/vtex/faststore/compare/v1.9.14...v1.9.15) (2022-06-27)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.13](https://github.com/vtex/faststore/compare/v1.9.12...v1.9.13) (2022-06-22)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.12](https://github.com/vtex/faststore/compare/v1.9.11...v1.9.12) (2022-06-22)
-
-**Note:** Version bump only for package faststore
-
-## [1.9.11](https://github.com/vtex/faststore/compare/v1.9.10...v1.9.11) (2022-06-19)
-
-### Features
-
-- Price range filter on PLP ([#1364](https://github.com/vtex/faststore/issues/1364)) ([a4c3fa7](https://github.com/vtex/faststore/commit/a4c3fa79c32d1db7bc737f5221479e6db1488866))
-
-## [1.9.10](https://github.com/vtex/faststore/compare/v1.9.9...v1.9.10) (2022-06-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.9.9 (2022-06-17)
-
-### Bug Fixes
-
-- add outdir to all tsconfig ([#1372](https://github.com/vtex/faststore/issues/1372)) ([8f847d9](https://github.com/vtex/faststore/commit/8f847d938b0ac66433a248bc77e77a21475b65db))
-- prettier format files ([#1369](https://github.com/vtex/faststore/issues/1369)) ([7f42ea9](https://github.com/vtex/faststore/commit/7f42ea913ee60333fe32434491f9be83c29a165d))
-
-## 1.9.8 (2022-06-17)
-
-### Features
-
-- lint ([#1368](https://github.com/vtex/faststore/issues/1368)) ([66ce99f](https://github.com/vtex/faststore/commit/66ce99f310ec593245e3937daea5ed813e1630e6))
-
-## [1.9.7](https://github.com/vtex/faststore/compare/v1.9.6...v1.9.7) (2022-06-13)
-
-### Features
-
-- Canonical PDP slugs ([#1338](https://github.com/vtex/faststore/issues/1338)) ([ec807bb](https://github.com/vtex/faststore/commit/ec807bb94dafaa72cdec82d53933ca0809bf01df))
-
-## [1.9.6](https://github.com/vtex/faststore/compare/v1.9.5...v1.9.6) (2022-06-13)
-
-### Features
-
-- Export API Errors ([#1361](https://github.com/vtex/faststore/issues/1361)) ([853035a](https://github.com/vtex/faststore/commit/853035aec1ad94cefaf9eae340b625fb6c920ec2))
-
-## [1.9.5](https://github.com/vtex/faststore/compare/v1.9.4...v1.9.5) (2022-06-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.9.4 (2022-06-10)
-
-### Bug Fixes
-
-- codesandbox ci ([#1357](https://github.com/vtex/faststore/issues/1357)) ([db07e1f](https://github.com/vtex/faststore/commit/db07e1fb02f28b0f082c361cb2c28250a687b760))
-
-## [1.9.3](https://github.com/vtex/faststore/compare/v1.9.2...v1.9.3) (2022-06-09)
-
-### Bug Fixes
-
-- Spot pricing sort for lowPrice/highPrice ([#1350](https://github.com/vtex/faststore/issues/1350)) ([6836c6f](https://github.com/vtex/faststore/commit/6836c6f36a14e22eed3564e48a3eae63997b85b8))
-
-## [1.9.2](https://github.com/vtex/faststore/compare/v1.9.1...v1.9.2) (2022-06-09)
-
-### Bug Fixes
-
-- some ts errors ([#1352](https://github.com/vtex/faststore/issues/1352)) ([5268188](https://github.com/vtex/faststore/commit/5268188fa984df4ce775c996934a0462a76244ce))
-
-## 1.9.1 (2022-06-09)
-
-### Reverts
-
-- Revert "fix: tailwind config on docs (#1345)" (#1351) ([8ffab61](https://github.com/vtex/faststore/commit/8ffab6177d9713dfbd18bf205d16bb0c45db647a)), closes [#1345](https://github.com/vtex/faststore/issues/1345) [#1351](https://github.com/vtex/faststore/issues/1351)
-
-## [1.8.52](https://github.com/vtex/faststore/compare/v1.8.51...v1.8.52) (2022-06-03)
-
-### Features
-
-- **ui:** Fix OutOfStock nested components ([#1341](https://github.com/vtex/faststore/issues/1341)) ([0bd85a6](https://github.com/vtex/faststore/commit/0bd85a6bd334c014559eced5a617a1476bfd8171))
-
-## 1.8.51 (2022-06-03)
-
-### Features
-
-- **UI:** Add Hero component ([#1336](https://github.com/vtex/faststore/issues/1336)) ([767c0cd](https://github.com/vtex/faststore/commit/767c0cdc5eaf6bd56020d64fd7718b1379c09390))
-
-## [1.8.50](https://github.com/vtex/faststore/compare/v1.8.49...v1.8.50) (2022-06-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.49 (2022-05-31)
-
-### Bug Fixes
-
-- remove docs from build on codesandbox ([#1334](https://github.com/vtex/faststore/issues/1334)) ([c9eabde](https://github.com/vtex/faststore/commit/c9eabdea8d951d42a9b3898572719e1f45294b33))
-
-## [1.8.48](https://github.com/vtex/faststore/compare/v1.8.47...v1.8.48) (2022-05-30)
-
-**Note:** Version bump only for package faststore
-
-## [1.8.47](https://github.com/vtex/faststore/compare/v1.8.46...v1.8.47) (2022-05-30)
-
-### Bug Fixes
-
-- Circular dependency ([#1333](https://github.com/vtex/faststore/issues/1333)) ([d38941a](https://github.com/vtex/faststore/commit/d38941a2896f8922dafb7b5d2ea4eb85fae4b84d))
-
-## 1.8.46 (2022-05-30)
-
-### Features
-
-- using cache ([#1330](https://github.com/vtex/faststore/issues/1330)) ([6f8a7a4](https://github.com/vtex/faststore/commit/6f8a7a4a593f7e82586d7e3d48f5254e011b8df6))
-
-## 1.8.45 (2022-05-30)
-
-**Note:** Version bump only for package faststore
-
-## [1.8.44](https://github.com/vtex/faststore/compare/v1.8.43...v1.8.44) (2022-05-30)
-
-**Note:** Version bump only for package faststore
-
-## [1.8.43](https://github.com/vtex/faststore/compare/v1.8.42...v1.8.43) (2022-05-30)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.42 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.41 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.40 (2022-05-30)
-
-### Bug Fixes
-
-- Cart item with additionalProperty ([#1325](https://github.com/vtex/faststore/issues/1325)) ([8fa6aa1](https://github.com/vtex/faststore/commit/8fa6aa1a88d3e3702a017e581cbcff4281c47f4f))
-
-## 1.8.39 (2022-05-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.38 (2022-05-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.37 (2022-05-27)
-
-### Bug Fixes
-
-- Increase NodeJS version ([#1323](https://github.com/vtex/faststore/issues/1323)) ([3a6fbe7](https://github.com/vtex/faststore/commit/3a6fbe7c230b7056582c783464bfb45cc5717bed))
-
-## 1.8.36 (2022-05-26)
-
-### Bug Fixes
-
-- Top searches ([#1321](https://github.com/vtex/faststore/issues/1321)) ([e2ab99d](https://github.com/vtex/faststore/commit/e2ab99d4f443e013f3fd024fc83bb612fcb27f41))
-
-## 1.8.35 (2022-05-26)
-
-### Features
-
-- Add OutOfStock component ([#1314](https://github.com/vtex/faststore/issues/1314)) ([37eac86](https://github.com/vtex/faststore/commit/37eac86ede448ef68aef426f65f2d224694b2cfc))
-
-## 1.8.34 (2022-05-25)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.33 (2022-05-24)
-
-### Features
-
-- useStorage update onFocus ([#1316](https://github.com/vtex/faststore/issues/1316)) ([c9874d4](https://github.com/vtex/faststore/commit/c9874d46a16a09159e6e1bd4da4e61ec25bd62d2))
-
-## 1.8.32 (2022-05-23)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.31 (2022-05-20)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.30 (2022-05-20)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.29 (2022-05-19)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.28 (2022-05-19)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.27 (2022-05-19)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.26 (2022-05-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.25 (2022-05-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.24 (2022-05-18)
-
-### Bug Fixes
-
-- Breadcrumb broken links ([#1306](https://github.com/vtex/faststore/issues/1306)) ([e1d74d4](https://github.com/vtex/faststore/commit/e1d74d49dc3f7cf90caa80e480a01346934c0d43))
-
-## 1.8.23 (2022-05-17)
-
-### Features
-
-- Sync Cart with Checkout ([#1299](https://github.com/vtex/faststore/issues/1299)) ([62e8f56](https://github.com/vtex/faststore/commit/62e8f56b31c6bb6cf7260749a90ebef8aba9982b))
-
-## 1.8.22 (2022-05-17)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.21 (2022-05-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.20 (2022-05-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.19 (2022-05-14)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.18 (2022-05-14)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.17 (2022-05-13)
-
-### Features
-
-- **UI:** Add `ProductCard` component ([#1272](https://github.com/vtex/faststore/issues/1272)) ([ea62210](https://github.com/vtex/faststore/commit/ea6221080da8b3538551f7a77df61a14d8de297d))
-
-## 1.8.16 (2022-05-13)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.15 (2022-05-13)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.14 (2022-05-13)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.13 (2022-05-13)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.12 (2022-05-12)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.11 (2022-05-12)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.10 (2022-05-12)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.9 (2022-05-12)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.8 (2022-05-11)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.7 (2022-05-11)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.6 (2022-05-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.5 (2022-05-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.4 (2022-05-10)
-
-**Note:** Version bump only for package faststore
-
-## [1.8.3](https://github.com/vtex/faststore/compare/v1.8.2...v1.8.3) (2022-05-10)
-
-### Bug Fixes
-
-- Offer availability ([#1282](https://github.com/vtex/faststore/issues/1282)) ([e91aa26](https://github.com/vtex/faststore/commit/e91aa26241c52c926d505b733f2127a809dd3f24))
-
-## 1.8.2 (2022-05-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.8.1 (2022-05-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.55 (2022-05-06)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.54 (2022-05-06)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.53 (2022-05-06)
-
-### Bug Fixes
-
-- suggestions api url ([#1273](https://github.com/vtex/faststore/issues/1273)) ([6f8a961](https://github.com/vtex/faststore/commit/6f8a9613e4627f91815e669a007ec4ff4c54ffe5))
-
-## 1.7.52 (2022-05-06)
-
-### Bug Fixes
-
-- Release workflow ([#1271](https://github.com/vtex/faststore/issues/1271)) ([3b995a8](https://github.com/vtex/faststore/commit/3b995a82c956c13c4d6f9453ac4f44195c5ef543))
-
-## 1.7.51 (2022-05-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.50 (2022-05-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.49 (2022-05-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.48 (2022-04-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.47 (2022-04-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.46 (2022-04-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.45 (2022-04-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.44 (2022-04-28)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.43 (2022-04-28)
-
-### Bug Fixes
-
-- api schema ([#1254](https://github.com/vtex/faststore/issues/1254)) ([c901b3d](https://github.com/vtex/faststore/commit/c901b3db8e002558e14101339c817ca87db8f949))
-
-## 1.7.42 (2022-04-28)
-
-### Features
-
-- search suggestions ([#1198](https://github.com/vtex/faststore/issues/1198)) ([2b19413](https://github.com/vtex/faststore/commit/2b19413dd11249e4d967ac1c4c1aabdc3a8ec1bf))
-
-## 1.7.41 (2022-04-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.40 (2022-04-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.39 (2022-04-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.38 (2022-04-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.37 (2022-04-27)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.36 (2022-04-27)
-
-### Bug Fixes
-
-- **api:** Remove circular dependencies ([#1243](https://github.com/vtex/faststore/issues/1243)) ([e988621](https://github.com/vtex/faststore/commit/e988621c77b946e397ecc33b82be65b04fa119ec))
-
-## 1.7.35 (2022-04-26)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.34 (2022-04-25)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.33 (2022-04-25)
-
-### Bug Fixes
-
-- **api:** SearchResult send events ([#1242](https://github.com/vtex/faststore/issues/1242)) ([9cc7cc4](https://github.com/vtex/faststore/commit/9cc7cc4d55802ef0dc75e22d58c46da899674555))
-
-## 1.7.32 (2022-04-23)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.31 (2022-04-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.30 (2022-04-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.29 (2022-04-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.28 (2022-04-20)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.27 (2022-04-20)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.26 (2022-04-19)
-
-### Reverts
-
-- Revert "feat: Add url to events (#1174)" (#1228) ([67ec438](https://github.com/vtex/faststore/commit/67ec4386b876a4de08bfd96df5147efa958d5496)), closes [#1174](https://github.com/vtex/faststore/issues/1174) [#1228](https://github.com/vtex/faststore/issues/1228)
-
-## 1.7.25 (2022-04-19)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.24 (2022-04-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.23 (2022-04-18)
-
-### Features
-
-- Add url to events ([#1174](https://github.com/vtex/faststore/issues/1174)) ([0e2befe](https://github.com/vtex/faststore/commit/0e2befe3cb5dc99521a470c4096e31237b93a9c0))
-
-## 1.7.22 (2022-04-13)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.21 (2022-04-12)
-
-### Features
-
-- AggregateRating (Stars) molecule ([#1037](https://github.com/vtex/faststore/issues/1037)) ([23f2fad](https://github.com/vtex/faststore/commit/23f2fad6fd4d58ea369a54a0b6600207016be17e))
-
-## 1.7.20 (2022-04-11)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.19 (2022-04-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.18 (2022-04-08)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.17 (2022-04-08)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.16 (2022-04-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.15 (2022-04-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.14 (2022-04-07)
-
-### Bug Fixes
-
-- Uses catalog slugify ([#1214](https://github.com/vtex/faststore/issues/1214)) ([0b38efc](https://github.com/vtex/faststore/commit/0b38efc96ecab8920cf15f01c29e7f9d5becba3d))
-
-## 1.7.13 (2022-04-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.12 (2022-04-06)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.11 (2022-04-06)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.10 (2022-04-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.9 (2022-04-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.8 (2022-04-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.7 (2022-04-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.6 (2022-04-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.5 (2022-04-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.4 (2022-04-01)
-
-### Bug Fixes
-
-- release notes images ([#1207](https://github.com/vtex/faststore/issues/1207)) ([279e019](https://github.com/vtex/faststore/commit/279e019bad25581712f73c8fe7a433200d711780))
-
-## 1.7.3 (2022-04-01)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.2 (2022-04-01)
-
-**Note:** Version bump only for package faststore
-
-## 1.7.1 (2022-04-01)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.29 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown render in SSR ([#1202](https://github.com/vtex/faststore/issues/1202)) ([60f65b0](https://github.com/vtex/faststore/commit/60f65b0864c2fb59dff61e914c69a326b5229984))
-
-## 1.6.28 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown menu position with scroll ([#1199](https://github.com/vtex/faststore/issues/1199)) ([98a228e](https://github.com/vtex/faststore/commit/98a228e364ed26e480936406c1988026f9ebaffc))
-
-## 1.6.27 (2022-03-31)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.26 (2022-03-31)
-
-### Features
-
-- **api:** Handle channel as facet for search and product queries ([#1197](https://github.com/vtex/faststore/issues/1197)) ([00556b1](https://github.com/vtex/faststore/commit/00556b199a48617ff89b1a6b951a0c958f5aa018))
-
-## 1.6.25 (2022-03-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.24 (2022-03-29)
-
-### Bug Fixes
-
-- fix dropdown click bug ([#1196](https://github.com/vtex/faststore/issues/1196)) ([55202ea](https://github.com/vtex/faststore/commit/55202ead64933b71688ac7399211cc2f086596f2))
-
-## 1.6.23 (2022-03-28)
-
-### Bug Fixes
-
-- fix breadcrumb component bug ([#1193](https://github.com/vtex/faststore/issues/1193)) ([f36ba81](https://github.com/vtex/faststore/commit/f36ba814ed679523d8c1f030c31a086a9e5bb190))
-
-## 1.6.22 (2022-03-25)
-
-### Features
-
-- **sdk:** Improve useStorage and Optimistic revalidate effect ([#1186](https://github.com/vtex/faststore/issues/1186)) ([08c616b](https://github.com/vtex/faststore/commit/08c616be4c6bc5a215da7ab0c37ff2731aa09f9a))
-
-## 1.6.21 (2022-03-25)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.20 (2022-03-24)
-
-### Bug Fixes
-
-- fix dropdown component bug ([#1192](https://github.com/vtex/faststore/issues/1192)) ([f188ac0](https://github.com/vtex/faststore/commit/f188ac0c59db5a0ef7a95eb2412d0bbcd024ae36))
-
-## 1.6.19 (2022-03-24)
-
-### Features
-
-- Add exports to dropdown ([#1188](https://github.com/vtex/faststore/issues/1188)) ([f24359a](https://github.com/vtex/faststore/commit/f24359a34439e0ec8d3069483c31a6f62fa6535d))
-
-## 1.6.18 (2022-03-24)
-
-### Features
-
-- **api:** Add session mutation ([#1176](https://github.com/vtex/faststore/issues/1176)) ([0306167](https://github.com/vtex/faststore/commit/030616739cc62d9b5aa55cdf532ee6dea0bd793c))
-
-## 1.6.17 (2022-03-23)
-
-### Features
-
-- **UI:** Add dropdown component ([#1178](https://github.com/vtex/faststore/issues/1178)) ([e5153a6](https://github.com/vtex/faststore/commit/e5153a674c37bd2a8b4c65ae6f56eb5cabaf3fc8))
-
-## 1.6.16 (2022-03-23)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.15 (2022-03-22)
-
-### Bug Fixes
-
-- Fix some typos ([#1183](https://github.com/vtex/faststore/issues/1183)) ([97fffb0](https://github.com/vtex/faststore/commit/97fffb02d9cc72f07926bc1a9bc684a99d623765))
-
-## 1.6.14 (2022-03-21)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.13 (2022-03-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.12 (2022-03-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.11 (2022-03-17)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.10 (2022-03-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.9 (2022-03-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.8 (2022-03-15)
-
-### Features
-
-- Add Person Query ([#1139](https://github.com/vtex/faststore/issues/1139)) ([9ec28c2](https://github.com/vtex/faststore/commit/9ec28c21cc6412c5366d1a1c71ef043603cd50c7))
-
-## 1.6.7 (2022-03-14)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.6 (2022-03-14)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.5 (2022-03-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.4 (2022-03-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.3 (2022-03-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.2 (2022-03-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.6.1 (2022-03-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.20 (2022-02-25)
-
-### Bug Fixes
-
-- Cart item availability ([#1160](https://github.com/vtex/faststore/issues/1160)) ([fd1be18](https://github.com/vtex/faststore/commit/fd1be18b09e8e5141a2a899e786e7caf08b3ff62))
-
-## 1.5.19 (2022-02-24)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.18 (2022-02-23)
-
-### Bug Fixes
-
-- **ui:** Use valid HTML for the Breadcrumb's divider ([#1143](https://github.com/vtex/faststore/issues/1143)) ([b40c3b1](https://github.com/vtex/faststore/commit/b40c3b1405e6aa9a0f2006de9f37a903e40a2103))
-
-## 1.5.17 (2022-02-22)
-
-### Features
-
-- Moves some Filter logic to api ([#1154](https://github.com/vtex/faststore/issues/1154)) ([5a591f7](https://github.com/vtex/faststore/commit/5a591f7b42e947577597cc82d8df6a15d2994780))
-
-## 1.5.16 (2022-02-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.15 (2022-02-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.14 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580))
-
-## 1.5.13 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124))
-
-## 1.5.12 (2022-02-21)
-
-### Bug Fixes
-
-- allCollections query pagination and pagetype timeout errors ([#1140](https://github.com/vtex/faststore/issues/1140)) ([0150222](https://github.com/vtex/faststore/commit/01502220fb903c62f0b33b9a703fb45daafae141))
-
-## 1.5.11 (2022-02-18)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** remove trailing slash from incoming requests ([#1145](https://github.com/vtex/faststore/issues/1145)) ([db6f1e1](https://github.com/vtex/faststore/commit/db6f1e173ec43747bf9cfa244b81d86db8a25ce3))
-
-## 1.5.10 (2022-02-17)
-
-### Features
-
-- **api:** Add additional property ([#1107](https://github.com/vtex/faststore/issues/1107)) ([bbcfc4a](https://github.com/vtex/faststore/commit/bbcfc4af68148adb54d66a3f1d28a9817ad2956c))
-
-## 1.5.9 (2022-02-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.8 (2022-02-15)
-
-### Bug Fixes
-
-- **api:** PDP and PLP breadcrumb list item's URL paths ([#1148](https://github.com/vtex/faststore/issues/1148)) ([ea1790a](https://github.com/vtex/faststore/commit/ea1790a0069b5e19f656d7df0051f391c3c3c611))
-
-## 1.5.7 (2022-02-15)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.6 (2022-02-15)
-
-### Features
-
-- Add budgets lighthouse config ([#1150](https://github.com/vtex/faststore/issues/1150)) ([60de848](https://github.com/vtex/faststore/commit/60de84897cb25fe775a3197adf8035610882ced8))
-
-## 1.5.5 (2022-02-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.4 (2022-02-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.3 (2022-02-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.2 (2022-02-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.5.1 (2022-02-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.27 (2022-02-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.26 (2022-02-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.25 (2022-02-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.24 (2022-02-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.23 (2022-02-01)
-
-### Bug Fixes
-
-- unfiltered allCollections query ([#1131](https://github.com/vtex/faststore/issues/1131)) ([4a1744a](https://github.com/vtex/faststore/commit/4a1744ad267517bfb6d3b7d7747725da0533d13f))
-
-## 1.4.22 (2022-01-26)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.21 (2022-01-26)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.20 (2022-01-26)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.19 (2022-01-24)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.18 (2022-01-17)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.17 (2022-01-13)
-
-### Bug Fixes
-
-- replaceAll crashing build with env vars ([#1109](https://github.com/vtex/faststore/issues/1109)) ([801b62e](https://github.com/vtex/faststore/commit/801b62e118238b6828d8cdaa2aff96d6c40278a8))
-
-## 1.4.16 (2022-01-11)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.15 (2022-01-11)
-
-### Bug Fixes
-
-- **api:** Breadcrumb data on collection pages ([#1104](https://github.com/vtex/faststore/issues/1104)) ([25d3c2b](https://github.com/vtex/faststore/commit/25d3c2bd07158ffca75bfe377a5b932c8fb36ae5))
-
-## 1.4.14 (2022-01-07)
-
-### Features
-
-- add item generics to analytics types for easy customization ([#1101](https://github.com/vtex/faststore/issues/1101)) ([51e9d96](https://github.com/vtex/faststore/commit/51e9d96b82062113a96a95159963ff85a22086fc))
-
-## 1.4.13 (2022-01-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.12 (2022-01-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.11 (2022-01-06)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.10 (2022-01-06)
-
-### Bug Fixes
-
-- **api:** Sku loader ([#1100](https://github.com/vtex/faststore/issues/1100)) ([82d029f](https://github.com/vtex/faststore/commit/82d029fbb4fd7613c80d099587b00812c410e448))
-
-## 1.4.9 (2022-01-06)
-
-### Features
-
-- add headers to nginx via env vars ([#1049](https://github.com/vtex/faststore/issues/1049)) ([3553372](https://github.com/vtex/faststore/commit/355337273ce03660db9fd14482818cc24c99f4e2))
-
-## 1.4.8 (2022-01-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.7 (2022-01-05)
-
-### Bug Fixes
-
-- fix accessibility on storybook ([#1096](https://github.com/vtex/faststore/issues/1096)) ([55805b1](https://github.com/vtex/faststore/commit/55805b1b2cffd111ef64857321c20e0a001a93b2))
-
-## 1.4.6 (2022-01-05)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.5 (2022-01-04)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.4 (2022-01-04)
-
-### Bug Fixes
-
-- adjust data attributes pattern on multiple components ([#1093](https://github.com/vtex/faststore/issues/1093)) ([ca9172f](https://github.com/vtex/faststore/commit/ca9172fb353cfce7011f9144c1e94ed7e6b73f5f))
-
-## 1.4.3 (2022-01-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.4.2 (2022-01-03)
-
-### Bug Fixes
-
-- **ui:** removing aria-labelledby from payment methods component ([#1092](https://github.com/vtex/faststore/issues/1092)) ([bf4c7a9](https://github.com/vtex/faststore/commit/bf4c7a981c379ffb1777a2fd8cae787f735f7d2d))
-
-## 1.4.1 (2022-01-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.46 (2021-12-23)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.45 (2021-12-21)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.44 (2021-12-21)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.43 (2021-12-20)
-
-### Features
-
-- QuantitySelector component ([#1083](https://github.com/vtex/faststore/issues/1083)) ([6ade6c0](https://github.com/vtex/faststore/commit/6ade6c02b06fdb74ba2cd2978d8ac4bda35672d2))
-
-## 1.3.42 (2021-12-20)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.41 (2021-12-20)
-
-### Features
-
-- **ui:** Incentive atom ([#1064](https://github.com/vtex/faststore/issues/1064)) ([1b136c7](https://github.com/vtex/faststore/commit/1b136c7d7fc8f2b99259ef1908286713697e03da))
-
-## 1.3.40 (2021-12-18)
-
-### Features
-
-- **ui:** Link atom ([#1067](https://github.com/vtex/faststore/issues/1067)) ([c49b2dd](https://github.com/vtex/faststore/commit/c49b2ddc31ba4184bed19a8934fbf4d5f0b47a5f))
-
-## 1.3.39 (2021-12-17)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.38 (2021-12-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.37 (2021-12-15)
-
-### Features
-
-- **ui:** Card component ([#1079](https://github.com/vtex/faststore/issues/1079)) ([7f10a5d](https://github.com/vtex/faststore/commit/7f10a5dcec21f7c9d59ba645755fe298e96269df))
-
-## 1.3.36 (2021-12-15)
-
-### Bug Fixes
-
-- expose JS files only ([#1081](https://github.com/vtex/faststore/issues/1081)) ([e363c12](https://github.com/vtex/faststore/commit/e363c120f22b10da81ceb3e2d8fcc58c1b4665af))
-
-## 1.3.35 (2021-12-14)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.34 (2021-12-11)
-
-### Bug Fixes
-
-- **docs:** Fix algolia search ([#1078](https://github.com/vtex/faststore/issues/1078)) ([986074f](https://github.com/vtex/faststore/commit/986074f061365d812650a82748ca5a9fc1dac6d5))
-
-## 1.3.33 (2021-12-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.32 (2021-12-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.31 (2021-12-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.30 (2021-12-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.29 (2021-12-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.28 (2021-12-10)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.27 (2021-12-10)
-
-### Bug Fixes
-
-- Add Banner Components exportation ([#1072](https://github.com/vtex/faststore/issues/1072)) ([4024104](https://github.com/vtex/faststore/commit/4024104f9804c8762037f03d986a4334af819b3c))
-
-## 1.3.26 (2021-12-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.25 (2021-12-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.24 (2021-12-09)
-
-### Bug Fixes
-
-- fix UI storybook imports ([#1069](https://github.com/vtex/faststore/issues/1069)) ([e4a2402](https://github.com/vtex/faststore/commit/e4a2402235c60488fde7021bf3200d967af3cb83))
-
-## 1.3.23 (2021-12-09)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.22 (2021-12-07)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.21 (2021-12-07)
-
-### Features
-
-- add docs ([#1058](https://github.com/vtex/faststore/issues/1058)) ([35f3e62](https://github.com/vtex/faststore/commit/35f3e62ae09c350632479742c9ce2c22e8862b23))
-
-## 1.3.20 (2021-12-07)
-
-### Features
-
-- **store-ui:** Banner component ([#1048](https://github.com/vtex/faststore/issues/1048)) ([b65d8e5](https://github.com/vtex/faststore/commit/b65d8e574598f8bf8494aac478e4bec4d774ec86))
-
-## 1.3.19 (2021-12-07)
-
-### Features
-
-- **ui:** PaymentMethods Component ([#1024](https://github.com/vtex/faststore/issues/1024)) ([f093025](https://github.com/vtex/faststore/commit/f093025c5b010b01f16349e2460611792cfff67f))
-
-## 1.3.18 (2021-12-06)
-
-### Features
-
-- **store-ui:** Alert molecule ([#1020](https://github.com/vtex/faststore/issues/1020)) ([7764e0d](https://github.com/vtex/faststore/commit/7764e0d08270a3bb836038c4a9cd27e5cbef9667))
-
-## 1.3.17 (2021-12-06)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.16 (2021-12-06)
-
-### Bug Fixes
-
-- add fallback to prevent null facets attribute StoreSearchResult query ([#1056](https://github.com/vtex/faststore/issues/1056)) ([ae1483f](https://github.com/vtex/faststore/commit/ae1483fdb901328a7a7348746fd241b9ce7ea1da))
-
-## 1.3.15 (2021-12-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.14 (2021-12-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.13 (2021-12-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.12 (2021-12-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.11 (2021-12-02)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.10 (2021-12-01)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.9 (2021-12-01)
-
-### Bug Fixes
-
-- **api:** Throws NotFoundError when collection is not found ([#1047](https://github.com/vtex/faststore/issues/1047)) ([9535ec3](https://github.com/vtex/faststore/commit/9535ec3d67a64f98b4d4e914e7bae81e06935e2a))
-
-## 1.3.8 (2021-12-01)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.7 (2021-12-01)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.6 (2021-11-26)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.5 (2021-11-25)
-
-### Features
-
-- **ui:** RadioGroup Component ([#1033](https://github.com/vtex/faststore/issues/1033)) ([60f306d](https://github.com/vtex/faststore/commit/60f306d97257a8cc65ec67bf1f1cc16376ad1654))
-
-## 1.3.4 (2021-11-23)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.3 (2021-11-23)
-
-### Features
-
-- **gatsby-plugin-nginx:** support to augment the generateRewrites ([#1017](https://github.com/vtex/faststore/issues/1017)) ([46587b0](https://github.com/vtex/faststore/commit/46587b0280d7f8dd733a0dca29909f041c944897))
-
-## 1.3.2 (2021-11-22)
-
-**Note:** Version bump only for package faststore
-
-## 1.3.1 (2021-11-18)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.37 (2021-11-17)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.36 (2021-11-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.35 (2021-11-16)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.34 (2021-11-16)
-
-### Bug Fixes
-
-- Filter collection slugs in api ([#1022](https://github.com/vtex/faststore/issues/1022)) ([cdcfcff](https://github.com/vtex/faststore/commit/cdcfcff642561dd73b1f85557e101271d10ca930))
-
-## 1.2.33 (2021-11-12)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.32 (2021-11-11)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.31 (2021-11-04)
-
-### Features
-
-- **store-ui:** Breadcrumb improvements ([#1010](https://github.com/vtex/faststore/issues/1010)) ([8b4bf37](https://github.com/vtex/faststore/commit/8b4bf37316d6057683680de36493b63709bb1012))
-
-## 1.2.30 (2021-11-03)
-
-### Bug Fixes
-
-- Channel simulation ([#1014](https://github.com/vtex/faststore/issues/1014)) ([b45406b](https://github.com/vtex/faststore/commit/b45406b2b7ee8deb2b6e256629ba6df89d1b5940))
-
-## 1.2.29 (2021-11-03)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.28 (2021-10-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.27 (2021-10-29)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.26 (2021-10-29)
-
-### Bug Fixes
-
-- **store-ui:** Remove circular dependency ([#1011](https://github.com/vtex/faststore/issues/1011)) ([b9f08c9](https://github.com/vtex/faststore/commit/b9f08c95ae33bdbb09ffc044d6ad831fd6608144))
-
-## 1.2.25 (2021-10-28)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.24 (2021-10-28)
-
-**Note:** Version bump only for package faststore
-
-## 1.2.23 (2021-10-27)
-
-### Features
-
-- **store-ui:** Add carousel tablist keyboard behavior ([#996](https://github.com/vtex/faststore/issues/996)) ([9081584](https://github.com/vtex/faststore/commit/908158460028009aaaa4ebbcd22eefab59e9bff8))
-
-## 1.2.22 (2021-10-26)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.21 (2021-10-26)
-
-### Features
-
-- **store-ui:** Form molecule ([#1004](https://github.com/vtex/faststore/issues/1004)) ([c584ef6](https://github.com/vtex/faststore/commit/c584ef693d111ede70d27730ecb3cce613b9aba3))
-
-## 1.2.20 (2021-10-26)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.19 (2021-10-25)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.18 (2021-10-25)
-
-### Features
-
-- **store-ui:** Breadcrumb molecule ([#986](https://github.com/vtex/faststore/issues/986)) ([325c738](https://github.com/vtex/faststore/commit/325c7387089d2f2c7152191b54fc3cb4918f1c68))
-
-## 1.2.17 (2021-10-21)
-
-### Features
-
-- **store-ui:** Loading Button molecule ([#962](https://github.com/vtex/faststore/issues/962)) ([6083ea0](https://github.com/vtex/faststore/commit/6083ea0273646a09e66ceedfab4b17c3960ac9fc)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.2.16 (2021-10-21)
-
-### Features
-
-- **store-ui:** Label atom ([#1001](https://github.com/vtex/faststore/issues/1001)) ([3306ea6](https://github.com/vtex/faststore/commit/3306ea6b9b48996574eac4b8c1b737dff94a438e))
-
-## 1.2.15 (2021-10-21)
-
-### Bug Fixes
-
-- **store-ui:** Fix search-input a11y ([#1000](https://github.com/vtex/faststore/issues/1000)) ([f052f46](https://github.com/vtex/faststore/commit/f052f465e21aa4e2ca047327eeb0610b9b979f10))
-
-## 1.2.14 (2021-10-20)
-
-### Features
-
-- graphql-utils ([#998](https://github.com/vtex/faststore/issues/998)) ([bddf043](https://github.com/vtex/faststore/commit/bddf04308826369f86322851b554cc58ab5b2161))
-
-## 1.2.13 (2021-10-20)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.12 (2021-10-18)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.11 (2021-10-18)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.10 (2021-10-18)
-
-### Bug Fixes
-
-- **store-ui:** Component Architecture doc's code snippets ([#997](https://github.com/vtex/faststore/issues/997)) ([7f0d5f3](https://github.com/vtex/faststore/commit/7f0d5f307014f794063dd8d94d873478803888c0))
-
-## 1.2.9 (2021-10-18)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.8 (2021-10-15)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.7 (2021-10-15)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.6 (2021-10-15)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.5 (2021-10-15)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.4 (2021-10-14)
-
-### Features
-
-- **store-ui:** Accordion molecule ([#985](https://github.com/vtex/faststore/issues/985)) ([a35fb51](https://github.com/vtex/faststore/commit/a35fb51b675e41af6070da8b521a3a4da25a0d65))
-
-## 1.2.3 (2021-10-14)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.2 (2021-10-13)
-
-**Note:** Version bump only for package openstore
-
-## 1.2.1 (2021-10-08)
-
-**Note:** Version bump only for package openstore
-
-## 1.1.18 (2021-10-05)
-
-**Note:** Version bump only for package openstore
-
-## 1.1.17 (2021-10-05)
-
-### Features
-
-- **store-api:** Add channel support for products ([#968](https://github.com/vtex/faststore/issues/968)) ([923d343](https://github.com/vtex/faststore/commit/923d343bcde8fbebfff9d32ba52ac26cd0504484))
-
-## 1.1.16 (2021-10-04)
-
-### Features
-
-- **store-api:** Add cart to store-api ([#963](https://github.com/vtex/faststore/issues/963)) ([0607d82](https://github.com/vtex/faststore/commit/0607d82f9f17de0b4045a7efbe99004d43e87056))
-
-## 1.1.15 (2021-10-01)
-
-### Features
-
-- Configure storybook theme ([#979](https://github.com/vtex/faststore/issues/979)) ([736811f](https://github.com/vtex/faststore/commit/736811f6381b4fd5f3f6d976198262216fe3ebcb))
-
-## 1.1.14 (2021-09-28)
-
-### Features
-
-- **store-ui:** Add Modal molecule ([#957](https://github.com/vtex/faststore/issues/957)) ([530b308](https://github.com/vtex/faststore/commit/530b3085a5707be459b37757844ce2e52b2f2981))
-
-## 1.1.13 (2021-09-23)
-
-**Note:** Version bump only for package openstore
-
-## 1.1.12 (2021-09-22)
-
-### Bug Fixes
-
-- users were unable to develop a store in an account without CMS pages ([#969](https://github.com/vtex/faststore/issues/969)) ([7b28a4e](https://github.com/vtex/faststore/commit/7b28a4e0da1edec7e843a614339909c6565b220a))
-
-## 1.1.11 (2021-09-17)
-
-### Features
-
-- **store-ui:** Spinner atom ([#961](https://github.com/vtex/faststore/issues/961)) ([59034b7](https://github.com/vtex/faststore/commit/59034b726ac83c79f591cd24739a8c15316c92b3)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.1.10 (2021-09-16)
-
-### Features
-
-- **store-api:** Add codegen ([#960](https://github.com/vtex/faststore/issues/960)) ([5231e6c](https://github.com/vtex/faststore/commit/5231e6c455be73b9d870627188c07a420651ed44))
-
-## 1.1.9 (2021-09-15)
-
-**Note:** Version bump only for package openstore
-
-## 1.1.8 (2021-09-14)
-
-### Features
-
-- **store-api:** Store API TypeDefs ([#942](https://github.com/vtex/faststore/issues/942)) ([b440dc9](https://github.com/vtex/faststore/commit/b440dc9f023da82b5c443c465375e74f909d1b8d))
-
-## 1.1.7 (2021-09-13)
-
-### Features
-
-- **store-ui:** Add Skeleton Atom ([#911](https://github.com/vtex/faststore/issues/911)) ([ef25cde](https://github.com/vtex/faststore/commit/ef25cdea6f6e344b4005ecd2ec0c80d959df35b0))
-
-## 1.1.6 (2021-09-09)
-
-**Note:** Version bump only for package openstore
-
-## 1.1.5 (2021-09-09)
-
-### Features
-
-- **store-sdk:** custom events, tests and docs ([#937](https://github.com/vtex/faststore/issues/937)) ([c268542](https://github.com/vtex/faststore/commit/c2685425b8a2b6c40ce2f79a5a0afc2b2022760d))
-
-## 1.1.4 (2021-09-09)
-
-### Features
-
-- support lambdas ([#933](https://github.com/vtex/faststore/issues/933)) ([0f14557](https://github.com/vtex/faststore/commit/0f14557f7b98635bc82ede499b12cc28f2f51b6e))
-
-## 1.1.3 (2021-09-08)
-
-**Note:** Version bump only for package openstore
-
-## 1.1.2 (2021-09-06)
-
-### Features
-
-- **store-ui:** adding list atom ([#918](https://github.com/vtex/faststore/issues/918)) ([72c3b2e](https://github.com/vtex/faststore/commit/72c3b2eeac85c784bbee310898b24823c2c18c3a))
-
-## 1.1.1 (2021-09-01)
-
-**Note:** Version bump only for package openstore
-
-## [1.0.3](https://github.com/vtex/faststore/compare/v1.1.0...v1.0.3) (2021-09-01)
-
-**Note:** Version bump only for package openstore
-
-## 1.0.2 (2021-09-01)
-
-**Note:** Version bump only for package openstore
-
-## 1.0.1 (2021-08-31)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.36 (2021-08-31)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.35 (2021-08-30)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.34 (2021-08-30)
-
-### Features
-
-- **store-ui:** price range ([#924](https://github.com/vtex/faststore/issues/924)) ([e5c5d9a](https://github.com/vtex/faststore/commit/e5c5d9aade59d91aead75af6a09d7db3cc67348e))
-
-## 0.373.33 (2021-08-30)
-
-### Features
-
-- **store-ui:** slider ([#917](https://github.com/vtex/faststore/issues/917)) ([15a5f82](https://github.com/vtex/faststore/commit/15a5f826f3ad0054934c5092a2def4cd8d2a7c3c))
-
-## 0.373.32 (2021-08-27)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.31 (2021-08-27)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.30 (2021-08-27)
-
-### Bug Fixes
-
-- move pixel back to gatsby-theme-store ([#922](https://github.com/vtex/faststore/issues/922)) ([58de70d](https://github.com/vtex/faststore/commit/58de70d943aec36883384a0d6545ad7ab7d8f6bb))
-
-## 0.373.29 (2021-08-26)
-
-### Bug Fixes
-
-- **gatsby-plugin-cms:** null cms nodes were preventing stores from building ([0270037](https://github.com/vtex/faststore/commit/027003711c00854fc6679b6d469a2be13a3d0437))
-
-## 0.373.28 (2021-08-26)
-
-### Features
-
-- **store-ui:** Add IconButton Molecule ([#900](https://github.com/vtex/faststore/issues/900)) ([0114409](https://github.com/vtex/faststore/commit/0114409d7efb8e5146d2b17b5fc5500ceb16b7bf))
-
-## 0.373.27 (2021-08-24)
-
-### Features
-
-- **store-ui:** Create Badge component ([#894](https://github.com/vtex/faststore/issues/894)) ([1438be3](https://github.com/vtex/faststore/commit/1438be37e9670028b263b2331bb7671cebcf4392))
-
-## 0.373.26 (2021-08-24)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.25 (2021-08-24)
-
-### Bug Fixes
-
-- **gatsby-plugin-graphql:** Export schema types ([#916](https://github.com/vtex/faststore/issues/916)) ([65d43d3](https://github.com/vtex/faststore/commit/65d43d3191422ef14988dabe0aa8383daf74b471))
-
-## 0.373.24 (2021-08-23)
-
-### Features
-
-- **store-ui:** radio component ([#906](https://github.com/vtex/faststore/issues/906)) ([06ef1dd](https://github.com/vtex/faststore/commit/06ef1dd3aa0cda304f4341697859c9b0fc16cfc2))
-
-## 0.373.23 (2021-08-23)
-
-### Features
-
-- **store-ui:** Adding select atom ([#876](https://github.com/vtex/faststore/issues/876)) ([3276269](https://github.com/vtex/faststore/commit/3276269813b6208b88d7178293b9550b2b05cc77))
-
-## 0.373.22 (2021-08-23)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.21 (2021-08-20)
-
-### Bug Fixes
-
-- **store-ui:** Remove unnecessary ID and improve a11y ([#915](https://github.com/vtex/faststore/issues/915)) ([7ee629d](https://github.com/vtex/faststore/commit/7ee629d6b738ed67332000e47ebdb9fcb5dc2883))
-
-## 0.373.20 (2021-08-18)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.19 (2021-08-18)
-
-### Features
-
-- **store-sdk:** Add Session to store-sdk ([#896](https://github.com/vtex/faststore/issues/896)) ([6a7f1b5](https://github.com/vtex/faststore/commit/6a7f1b5458bdb44aff2760bcd32ddf8888c05740))
-
-## 0.373.18 (2021-08-18)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.17 (2021-08-18)
-
-### Features
-
-- **store-ui:** Overlay Atom Component ([#890](https://github.com/vtex/faststore/issues/890)) ([a0757bc](https://github.com/vtex/faststore/commit/a0757bcf1155084f5b66f4625f47c8efa18285b3))
-
-## 0.373.16 (2021-08-17)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.15 (2021-08-16)
-
-### Features
-
-- **store-ui:** Create Carousel component and useSlider hook ([#815](https://github.com/vtex/faststore/issues/815)) ([f46108c](https://github.com/vtex/faststore/commit/f46108c038402f003c7157833efb052554d339d4))
-
-## 0.373.14 (2021-08-16)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Spread routes support ([#895](https://github.com/vtex/faststore/issues/895)) ([6bb2331](https://github.com/vtex/faststore/commit/6bb2331b8961245e8abf5f44fb2814f9562d1f3d))
-
-## 0.373.13 (2021-08-13)
-
-### Features
-
-- **store-ui:** Basic CSS theme and theme-addon for Storybook ([#828](https://github.com/vtex/faststore/issues/828)) ([e7338ad](https://github.com/vtex/faststore/commit/e7338adda76a090b0cd55c72a2e0867c92e15fb0))
-
-## 0.373.12 (2021-08-12)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.11 (2021-08-12)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.10 (2021-08-12)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.9 (2021-08-12)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.8 (2021-08-11)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.7 (2021-08-11)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.6 (2021-08-11)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.5 (2021-08-10)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.4 (2021-08-10)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.3 (2021-08-10)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.2 (2021-08-05)
-
-**Note:** Version bump only for package openstore
-
-## 0.373.1 (2021-08-05)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.22 (2021-07-30)
-
-### Features
-
-- **collections:** Source collections from category tree ([#871](https://github.com/vtex/faststore/issues/871)) ([e4ca79a](https://github.com/vtex/faststore/commit/e4ca79a810ca89f609082b994a9ad069e9d64579))
-
-## 0.372.21 (2021-07-29)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.20 (2021-07-29)
-
-### Features
-
-- **gatsby-theme-store:** fix product click event ([#866](https://github.com/vtex/faststore/issues/866)) ([eeb4df2](https://github.com/vtex/faststore/commit/eeb4df2308a8113256c8c716574ef213d1da9468))
-
-## 0.372.19 (2021-07-29)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** useBuyButton only redirects users to the checkout when product is added successfully ([#823](https://github.com/vtex/faststore/issues/823)) ([304178e](https://github.com/vtex/faststore/commit/304178e05e2c396407f47afc76ba2e9b959f6147))
-
-## 0.372.18 (2021-07-27)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.17 (2021-07-22)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Fix proxy pass when toPath has port numbers on it ([#830](https://github.com/vtex/faststore/issues/830)) ([574f9bd](https://github.com/vtex/faststore/commit/574f9bd575fff7878106ef0f05145fd7f759a827))
-
-## 0.372.16 (2021-07-19)
-
-### Bug Fixes
-
-- **store-ui:** Fix bullets iterator ([#824](https://github.com/vtex/faststore/issues/824)) ([74034a6](https://github.com/vtex/faststore/commit/74034a667a6b4f40602ec179575bcedaf18c4af4))
-
-## 0.372.15 (2021-07-15)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.14 (2021-07-15)
-
-### Features
-
-- **store-ui:** update accordion version ([#820](https://github.com/vtex/faststore/issues/820)) ([624060a](https://github.com/vtex/faststore/commit/624060a1a88740794f82bb4d5782f896dc80695f))
-
-## 0.372.13 (2021-07-14)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.12 (2021-07-14)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.11 (2021-07-14)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.10 (2021-07-13)
-
-### Features
-
-- **seo:** Add next/prev links in search page's infinite scroll. ([#811](https://github.com/vtex/faststore/issues/811)) ([89fa673](https://github.com/vtex/faststore/commit/89fa6738034e290c6806a55db21209925cf50783))
-
-## 0.372.9 (2021-07-12)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.8 (2021-07-12)
-
-### Bug Fixes
-
-- **contributing:** updating documentation ([#816](https://github.com/vtex/faststore/issues/816)) ([7923668](https://github.com/vtex/faststore/commit/7923668033da7ea7243e72f54225f6e029626e64))
-
-## 0.372.7 (2021-07-09)
-
-### Features
-
-- **store-ui:** Adding data-testid to our components ([#530](https://github.com/vtex/faststore/issues/530)) ([eed2760](https://github.com/vtex/faststore/commit/eed2760438b3f83fd997ebb76e2794cfd56449aa))
-
-## 0.372.6 (2021-07-09)
-
-### Features
-
-- **store-ui:** Checkbox atom component ([#813](https://github.com/vtex/faststore/issues/813)) ([36834fa](https://github.com/vtex/faststore/commit/36834fa572305ca26c1fea8e60e011ff768bc13e))
-
-## 0.372.5 (2021-07-09)
-
-### Bug Fixes
-
-- **seo:** Fix undefined host in canonical tags of product pages ([#814](https://github.com/vtex/faststore/issues/814)) ([3ba980d](https://github.com/vtex/faststore/commit/3ba980d4a9bec1cb9cc8b6b51140e9418247ac6a))
-
-## 0.372.4 (2021-07-08)
-
-**Note:** Version bump only for package openstore
-
-## 0.372.3 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** Move auth pages to stores ([#809](https://github.com/vtex/faststore/issues/809)) ([8abbe7f](https://github.com/vtex/faststore/commit/8abbe7fcb455fc1449960ef26a02df36a0d4c8dd))
-
-## 0.372.2 (2021-07-06)
-
-### Bug Fixes
-
-- **gatsby-plugin-thumbor:** Remove cookie on redirect ([#810](https://github.com/vtex/faststore/issues/810)) ([9a2f7fc](https://github.com/vtex/faststore/commit/9a2f7fcd3410ef606843c03552857f7e09f1528b))
-
-## 0.372.1 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** product view ([#803](https://github.com/vtex/faststore/issues/803)) ([082d3f9](https://github.com/vtex/faststore/commit/082d3f9b1ffac15f444b9a7aacc62f21dc331237))
-
-## 0.371.38 (2021-07-06)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.37 (2021-07-05)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** set isDisposable to true on setRegionMutation, fixing zip code persistence ([#802](https://github.com/vtex/faststore/issues/802)) ([#802](https://github.com/vtex/faststore/issues/802)) ([46f65f8](https://github.com/vtex/faststore/commit/46f65f89270cd8004283c14d8988a9490b513228))
-
-## 0.371.36 (2021-07-05)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.35 (2021-07-05)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.34 (2021-07-05)
-
-### Features
-
-- move status pages ([#807](https://github.com/vtex/faststore/issues/807)) ([4c5cf62](https://github.com/vtex/faststore/commit/4c5cf6282f18f797a52b06ba8d6770cf7b6c2533))
-
-## 0.371.33 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** complex plp navigation ([#749](https://github.com/vtex/faststore/issues/749)) ([849f079](https://github.com/vtex/faststore/commit/849f079a29550e9106d4aa00254cd81060022634))
-
-## 0.371.32 (2021-07-01)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.31 (2021-07-01)
-
-### Features
-
-- **store-ui:** components migration to .tsx + .mdx and update storybook version to v6.3 ([#782](https://github.com/vtex/faststore/issues/782)) ([9c8da3c](https://github.com/vtex/faststore/commit/9c8da3cc050e30916303b495b00532bde6c6328d))
-
-## 0.371.30 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-source-vtex:** page size ([#799](https://github.com/vtex/faststore/issues/799)) ([03b4b61](https://github.com/vtex/faststore/commit/03b4b61d8de5e5554b729e2ef41f0dfd7eca558d))
-
-## 0.371.29 (2021-06-30)
-
-### Features
-
-- Use Gatsby's file system routing API for product pages ([#795](https://github.com/vtex/faststore/issues/795)) ([c9b8eed](https://github.com/vtex/faststore/commit/c9b8eed75834738e9b869780790c772947ec65c3))
-
-## 0.371.28 (2021-06-30)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.27 (2021-06-30)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.26 (2021-06-29)
-
-**Note:** Version bump only for package openstore
-
-## 0.371.25 (2021-06-29)
-
-### Features
-
-- product page incremental builds ([#793](https://github.com/vtex/faststore/issues/793)) ([8ab8bf0](https://github.com/vtex/faststore/commit/8ab8bf0b4a5b24d5e3a24ddc0bf1e449beb0aa88))
-
-## 0.371.24 (2021-06-25)
-
-### Features
-
-- add changelog with conventional commits ([#790](https://github.com/vtex/faststore/issues/790)) ([d8dfb0f](https://github.com/vtex/faststore/commit/d8dfb0fc075c9111bd30b8c0200166e715be44d7))
-
-# [0.373.0-alpha.5](https://github.com/vtex/faststore/compare/v0.373.0-alpha.3...v0.373.0-alpha.5) (2021-06-25)
-
-### Bug Fixes
-
-- jsx typings ([99e572a](https://github.com/vtex/faststore/commit/99e572aa91c66c8285f89e969ef612e01a0f0baf))
-- lerna changelog ([236957a](https://github.com/vtex/faststore/commit/236957acca38e56a1fa2c10c83fc528de3f42896))
-
-# [0.373.0-alpha.3](https://github.com/vtex/faststore/compare/v0.373.0-alpha.2...v0.373.0-alpha.3) (2021-06-25)
-
-**Note:** Version bump only for package openstore
-
-# [0.373.0-alpha.2](https://github.com/vtex/faststore/compare/v0.373.0-alpha.1...v0.373.0-alpha.2) (2021-06-25)
-
-**Note:** Version bump only for package openstore
diff --git a/apps/site/CHANGELOG.md b/apps/site/CHANGELOG.md
deleted file mode 100644
index a435c0d631..0000000000
--- a/apps/site/CHANGELOG.md
+++ /dev/null
@@ -1,586 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.177-alpha.0](https://github.com/vtex/faststore/compare/v2.0.176-alpha.0...v2.0.177-alpha.0) (2023-06-02)
-
-### Documentation
-
-- Configuring external DNS for a custom domain ([#1803](https://github.com/vtex/faststore/issues/1803)) ([d0b8726](https://github.com/vtex/faststore/commit/d0b8726aa0d27791eecfa2aaa9dd4aa0abc0a7c1))
-
-## [2.0.175-alpha.0](https://github.com/vtex/faststore/compare/v2.0.174-alpha.0...v2.0.175-alpha.0) (2023-06-02)
-
-### Features
-
-- Allows some section's component to be overridable ([#1768](https://github.com/vtex/faststore/issues/1768)) ([e19cba2](https://github.com/vtex/faststore/commit/e19cba222351510ffc91ba130ed61e857e9e6bb5))
-
-## [2.0.174-alpha.0](https://github.com/vtex/faststore/compare/v2.0.173-alpha.0...v2.0.174-alpha.0) (2023-06-02)
-
-**Note:** Version bump only for package site
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package site
-
-## [2.0.172-alpha.0](https://github.com/vtex/faststore/compare/v2.0.171-alpha.0...v2.0.172-alpha.0) (2023-05-31)
-
-### Features
-
-- Override `WebFonts` ([#1799](https://github.com/vtex/faststore/issues/1799)) ([5fa4b9a](https://github.com/vtex/faststore/commit/5fa4b9ada4affcf508f05a95acabd542536ceacf))
-
-## [2.0.171-alpha.0](https://github.com/vtex/faststore/compare/v2.0.170-alpha.0...v2.0.171-alpha.0) (2023-05-30)
-
-### Documentation
-
-- Setting up VTEX account for FastStore ([#1797](https://github.com/vtex/faststore/issues/1797)) ([e61e0d4](https://github.com/vtex/faststore/commit/e61e0d46fa02157d390ea5717c105d830e8cb02f)), closes [#1765](https://github.com/vtex/faststore/issues/1765)
-
-## [2.0.170-alpha.0](https://github.com/vtex/faststore/compare/v2.0.169-alpha.0...v2.0.170-alpha.0) (2023-05-30)
-
-**Note:** Version bump only for package site
-
-## [2.0.169-alpha.0](https://github.com/vtex/faststore/compare/v2.0.168-alpha.0...v2.0.169-alpha.0) (2023-05-29)
-
-### Chores
-
-- Removes imports utilities styles from core package + enable system fonts ([#1792](https://github.com/vtex/faststore/issues/1792)) ([19de095](https://github.com/vtex/faststore/commit/19de095e0e47548386afb06ef057798ca54f6294))
-
-## [2.0.162-alpha.0](https://github.com/vtex/faststore/compare/v2.0.161-alpha.0...v2.0.162-alpha.0) (2023-05-26)
-
-**Note:** Version bump only for package site
-
-## [2.0.161-alpha.0](https://github.com/vtex/faststore/compare/v2.0.160-alpha.0...v2.0.161-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package site
-
-## [2.0.160-alpha.0](https://github.com/vtex/faststore/compare/v2.0.159-alpha.0...v2.0.160-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package site
-
-## [2.0.159-alpha.0](https://github.com/vtex/faststore/compare/v2.0.158-alpha.0...v2.0.159-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package site
-
-## [2.0.158-alpha.0](https://github.com/vtex/faststore/compare/v2.0.157-alpha.0...v2.0.158-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package site
-
-## [2.0.156-alpha.0](https://github.com/vtex/faststore/compare/v2.0.155-alpha.0...v2.0.156-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package site
-
-## [2.0.154-alpha.0](https://github.com/vtex/faststore/compare/v2.0.153-alpha.0...v2.0.154-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package site
-
-## [2.0.152-alpha.0](https://github.com/vtex/faststore/compare/v2.0.151-alpha.0...v2.0.152-alpha.0) (2023-05-23)
-
-### Features
-
-- Fix Styles ([#1775](https://github.com/vtex/faststore/issues/1775)) ([2257f6e](https://github.com/vtex/faststore/commit/2257f6e59bac2dc574cf35d71967de5282374969))
-
-## [2.0.151-alpha.0](https://github.com/vtex/faststore/compare/v2.0.150-alpha.0...v2.0.151-alpha.0) (2023-05-22)
-
-**Note:** Version bump only for package site
-
-## [2.0.150-alpha.0](https://github.com/vtex/faststore/compare/v2.0.149-alpha.0...v2.0.150-alpha.0) (2023-05-22)
-
-**Note:** Version bump only for package site
-
-## [2.0.149-alpha.0](https://github.com/vtex/faststore/compare/v2.0.148-alpha.0...v2.0.149-alpha.0) (2023-05-19)
-
-**Note:** Version bump only for package site
-
-## [2.0.148-alpha.0](https://github.com/vtex/faststore/compare/v2.0.147-alpha.0...v2.0.148-alpha.0) (2023-05-19)
-
-### Documentation
-
-- Fixes payment flags doc page ([#1776](https://github.com/vtex/faststore/issues/1776)) ([483c612](https://github.com/vtex/faststore/commit/483c612f41908ec5452074b02b3232d7383adc80))
-
-## [2.0.145-alpha.0](https://github.com/vtex/faststore/compare/v2.0.144-alpha.0...v2.0.145-alpha.0) (2023-05-18)
-
-### Documentation
-
-- Checkbox Field component props ([#1774](https://github.com/vtex/faststore/issues/1774)) ([90abbd4](https://github.com/vtex/faststore/commit/90abbd4a4da9c30f54a4569e828b990cde0ca59e))
-
-## [2.0.144-alpha.0](https://github.com/vtex/faststore/compare/v2.0.143-alpha.0...v2.0.144-alpha.0) (2023-05-18)
-
-**Note:** Version bump only for package site
-
-## [2.0.143-alpha.0](https://github.com/vtex/faststore/compare/v2.0.142-alpha.0...v2.0.143-alpha.0) (2023-05-17)
-
-### Documentation
-
-- Adds Hero's props ([#1771](https://github.com/vtex/faststore/issues/1771)) ([f1ce082](https://github.com/vtex/faststore/commit/f1ce082801ddf7ff24a32ca7163aae26243c5989))
-
-## [2.0.142-alpha.0](https://github.com/vtex/faststore/compare/v2.0.141-alpha.0...v2.0.142-alpha.0) (2023-05-16)
-
-### Features
-
-- Adjust `Navbar` for CMS ([#1756](https://github.com/vtex/faststore/issues/1756)) ([105a8b2](https://github.com/vtex/faststore/commit/105a8b2f69ffd8438532d7c9eb959ed26a567675))
-
-## [2.0.139-alpha.0](https://github.com/vtex/faststore/compare/v2.0.138-alpha.0...v2.0.139-alpha.0) (2023-05-15)
-
-### Chores
-
-- Update Badge tokens ([#1761](https://github.com/vtex/faststore/issues/1761)) ([7c1764b](https://github.com/vtex/faststore/commit/7c1764b00b434f2380335ca68c4ba90a951a3c6d))
-
-## [2.0.137-alpha.0](https://github.com/vtex/faststore/compare/v2.0.136-alpha.0...v2.0.137-alpha.0) (2023-05-11)
-
-**Note:** Version bump only for package site
-
-## [2.0.136-alpha.0](https://github.com/vtex/faststore/compare/v2.0.135-alpha.0...v2.0.136-alpha.0) (2023-05-11)
-
-### Documentation
-
-- Updates override components doc page ([#1758](https://github.com/vtex/faststore/issues/1758)) ([959e3ab](https://github.com/vtex/faststore/commit/959e3abbf05c34e2b1338b599a7bf4410e3f91bc))
-
-## [2.0.135-alpha.0](https://github.com/vtex/faststore/compare/v2.0.134-alpha.0...v2.0.135-alpha.0) (2023-05-10)
-
-**Note:** Version bump only for package site
-
-## [2.0.133-alpha.0](https://github.com/vtex/faststore/compare/v2.0.132-alpha.0...v2.0.133-alpha.0) (2023-05-09)
-
-**Note:** Version bump only for package site
-
-## [2.0.132-alpha.0](https://github.com/vtex/faststore/compare/v2.0.131-alpha.0...v2.0.132-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Lighthouse Checks 🟢 ([#1737](https://github.com/vtex/faststore/issues/1737)) ([b862703](https://github.com/vtex/faststore/commit/b862703ce991065f92765f4cecc88c9946b3d702)), closes [/github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js#L25](https://github.com/vtex//github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js/issues/L25)
-
-## [2.0.131-alpha.0](https://github.com/vtex/faststore/compare/v2.0.130-alpha.0...v2.0.131-alpha.0) (2023-05-08)
-
-**Note:** Version bump only for package site
-
-## [2.0.128-alpha.0](https://github.com/vtex/faststore/compare/v2.0.127-alpha.0...v2.0.128-alpha.0) (2023-05-04)
-
-### Features
-
-- Adds `Carousel` Component 782 ([#1735](https://github.com/vtex/faststore/issues/1735)) ([a4d5156](https://github.com/vtex/faststore/commit/a4d5156404f47ce22fe2f9b5141b446f987bccbc))
-
-## [2.0.127-alpha.0](https://github.com/vtex/faststore/compare/v2.0.126-alpha.0...v2.0.127-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package site
-
-## [2.0.126-alpha.0](https://github.com/vtex/faststore/compare/v2.0.125-alpha.0...v2.0.126-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package site
-
-## [2.0.124-alpha.0](https://github.com/vtex/faststore/compare/v2.0.123-alpha.0...v2.0.124-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package site
-
-## [2.0.123-alpha.0](https://github.com/vtex/faststore/compare/v2.0.122-alpha.0...v2.0.123-alpha.0) (2023-05-02)
-
-### Documentation
-
-- Updates Icons docs + general updates ([#1739](https://github.com/vtex/faststore/issues/1739)) ([44f3521](https://github.com/vtex/faststore/commit/44f35219ba09e157aba0ea47d462f7a2ccc42b50))
-
-## [2.0.122-alpha.0](https://github.com/vtex/faststore/compare/v2.0.121-alpha.0...v2.0.122-alpha.0) (2023-04-27)
-
-### Bug Fixes
-
-- LH Unused CSS + Organizes CMS Sections and components styles. ([#1712](https://github.com/vtex/faststore/issues/1712)) ([0ab1fa8](https://github.com/vtex/faststore/commit/0ab1fa805e41a53f21cbe26dc5143f853b64dc00))
-
-## [2.0.119-alpha.0](https://github.com/vtex/faststore/compare/v2.0.118-alpha.0...v2.0.119-alpha.0) (2023-04-27)
-
-**Note:** Version bump only for package site
-
-## [2.0.118-alpha.0](https://github.com/vtex/faststore/compare/v2.0.117-alpha.0...v2.0.118-alpha.0) (2023-04-26)
-
-**Note:** Version bump only for package site
-
-## [2.0.117-alpha.0](https://github.com/vtex/faststore/compare/v2.0.116-alpha.0...v2.0.117-alpha.0) (2023-04-26)
-
-### Features
-
-- Adds `Navbar`, `NavbarSlider` and `NavbarLinks` components ([#1728](https://github.com/vtex/faststore/issues/1728)) ([30e3f59](https://github.com/vtex/faststore/commit/30e3f59fa75abe6d4155541615c30ccf9618be42))
-
-## [2.0.114-alpha.0](https://github.com/vtex/faststore/compare/v2.0.113-alpha.0...v2.0.114-alpha.0) (2023-04-24)
-
-**Note:** Version bump only for package site
-
-## [2.0.113-alpha.0](https://github.com/vtex/faststore/compare/v2.0.112-alpha.0...v2.0.113-alpha.0) (2023-04-24)
-
-### Features
-
-- Adds `Navbar` component ([#1720](https://github.com/vtex/faststore/issues/1720)) ([58aac03](https://github.com/vtex/faststore/commit/58aac0366f3a5df042cd46ce9525e5f1af7b9a38))
-
-## [2.0.112-alpha.0](https://github.com/vtex/faststore/compare/v2.0.111-alpha.0...v2.0.112-alpha.0) (2023-04-20)
-
-**Note:** Version bump only for package site
-
-## [2.0.111-alpha.0](https://github.com/vtex/faststore/compare/v2.0.110-alpha.0...v2.0.111-alpha.0) (2023-04-18)
-
-### Features
-
-- Adds `ProductGrid` component ([#1719](https://github.com/vtex/faststore/issues/1719)) ([9cbe71f](https://github.com/vtex/faststore/commit/9cbe71f81395297c14b258efdd336b00f6b71071))
-
-## [2.0.110-alpha.0](https://github.com/vtex/faststore/compare/v2.0.109-alpha.0...v2.0.110-alpha.0) (2023-04-18)
-
-### Features
-
-- Add `ProductShelf` component ([#1713](https://github.com/vtex/faststore/issues/1713)) ([6a387a6](https://github.com/vtex/faststore/commit/6a387a665aa8a1eb65122abcce67d82b9ead4234))
-
-## [2.0.108-alpha.0](https://github.com/vtex/faststore/compare/v2.0.107-alpha.0...v2.0.108-alpha.0) (2023-04-17)
-
-### Features
-
-- Adds `EmptyState` component ([#1716](https://github.com/vtex/faststore/issues/1716)) ([82eaf9a](https://github.com/vtex/faststore/commit/82eaf9a628f417ee58d7cacb2678f8cdd81bfaec))
-
-## [2.0.107-alpha.0](https://github.com/vtex/faststore/compare/v2.0.106-alpha.0...v2.0.107-alpha.0) (2023-04-17)
-
-**Note:** Version bump only for package site
-
-## [2.0.106-alpha.0](https://github.com/vtex/faststore/compare/v2.0.105-alpha.0...v2.0.106-alpha.0) (2023-04-12)
-
-### Features
-
-- Adds `RegionModal` component ([#1710](https://github.com/vtex/faststore/issues/1710)) ([d3b6c36](https://github.com/vtex/faststore/commit/d3b6c36af3fe3d9c826884654c8708d4a1d14d2d))
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package site
-
-## [2.0.103-alpha.0](https://github.com/vtex/faststore/compare/v2.0.102-alpha.0...v2.0.103-alpha.0) (2023-04-06)
-
-### Features
-
-- Add `ImageGallery` components ([#1681](https://github.com/vtex/faststore/issues/1681)) ([b44101c](https://github.com/vtex/faststore/commit/b44101c932b0758f9c1b09ee001d3221c338cf93)), closes [starter.store#37](https://github.com/vtex/starter.store/issues/37)
-
-## [2.0.102-alpha.0](https://github.com/vtex/faststore/compare/v2.0.101-alpha.0...v2.0.102-alpha.0) (2023-04-06)
-
-### Features
-
-- Adds `CartSidebar` and `OrderSummary` ([#1704](https://github.com/vtex/faststore/issues/1704)) ([a16e168](https://github.com/vtex/faststore/commit/a16e1683816ef84866de4cd7f8d8a64f951b98c6))
-
-## [2.0.99-alpha.0](https://github.com/vtex/faststore/compare/v2.0.98-alpha.0...v2.0.99-alpha.0) (2023-04-04)
-
-### Features
-
-- `Icon` with svg sprites ([#1682](https://github.com/vtex/faststore/issues/1682)) ([e199db7](https://github.com/vtex/faststore/commit/e199db7819ce015cc1c986c73a4a937153ddc062))
-
-## [2.0.95-alpha.0](https://github.com/vtex/faststore/compare/v2.0.94-alpha.0...v2.0.95-alpha.0) (2023-04-01)
-
-### Features
-
-- Adds `RegionBar` component ([#1693](https://github.com/vtex/faststore/issues/1693)) ([8390d82](https://github.com/vtex/faststore/commit/8390d829d4c1cab0f56a38b59bb2e1f1ab670fb1))
-
-## [2.0.94-alpha.0](https://github.com/vtex/faststore/compare/v2.0.93-alpha.0...v2.0.94-alpha.0) (2023-03-31)
-
-### Chores
-
-- General improvements, PriceDefinition type and docs review ([#1691](https://github.com/vtex/faststore/issues/1691)) ([7fde306](https://github.com/vtex/faststore/commit/7fde3061e8a37c12634c764ef64b652f770426eb))
-
-## [2.0.93-alpha.0](https://github.com/vtex/faststore/compare/v2.0.92-alpha.0...v2.0.93-alpha.0) (2023-03-31)
-
-### Features
-
-- Adds `ShippingSimulation` Components. ([#1689](https://github.com/vtex/faststore/issues/1689)) ([0683882](https://github.com/vtex/faststore/commit/06838820af9da08541fbc8337504b92406c958d8))
-
-## [2.0.92-alpha.0](https://github.com/vtex/faststore/compare/v2.0.91-alpha.0...v2.0.92-alpha.0) (2023-03-30)
-
-### Documentation
-
-- How to override or customize native section components ([#1684](https://github.com/vtex/faststore/issues/1684)) ([783532a](https://github.com/vtex/faststore/commit/783532a5ec1c5e4e10daa9a9975fe5f7546ce5bb))
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-### Documentation
-
-- Updates midnight theme stylesheet ([#1698](https://github.com/vtex/faststore/issues/1698)) ([9b01beb](https://github.com/vtex/faststore/commit/9b01beb0b8c48b5814bb4ff66d069cd5c2a2fc5f))
-
-## [2.0.90-alpha.0](https://github.com/vtex/faststore/compare/v2.0.89-alpha.0...v2.0.90-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `Filter` and `FilterSlider` Components. ([#1687](https://github.com/vtex/faststore/issues/1687)) ([a18e1af](https://github.com/vtex/faststore/commit/a18e1af9fe6037f19a558f2c49e52ba01e50e95a))
-
-## [2.0.89-alpha.0](https://github.com/vtex/faststore/compare/v2.0.88-alpha.0...v2.0.89-alpha.0) (2023-03-29)
-
-### Features
-
-- Add `OutOfStock` components ([#1685](https://github.com/vtex/faststore/issues/1685)) ([25f4442](https://github.com/vtex/faststore/commit/25f444214e234f5f0f9287ef8bc403231b2eac2b))
-
-## [2.0.88-alpha.0](https://github.com/vtex/faststore/compare/v2.0.87-alpha.0...v2.0.88-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `SearchInput`, `SearchInputField` and `SearchDropdown` components ([#1676](https://github.com/vtex/faststore/issues/1676)) ([edba839](https://github.com/vtex/faststore/commit/edba8399a27f183f2092086b3c9d69cf5c1e8f52))
-
-## [2.0.87-alpha.0](https://github.com/vtex/faststore/compare/v2.0.86-alpha.0...v2.0.87-alpha.0) (2023-03-24)
-
-### Features
-
-- Adds `SkuSelector` component ([#1677](https://github.com/vtex/faststore/issues/1677)) ([696a14e](https://github.com/vtex/faststore/commit/696a14e6d9633ececcd2818e4a32b32ce8ad2e2b))
-
-## [2.0.86-alpha.0](https://github.com/vtex/faststore/compare/v2.0.85-alpha.0...v2.0.86-alpha.0) (2023-03-22)
-
-### Features
-
-- List toast's component props fs-632 ([#1683](https://github.com/vtex/faststore/issues/1683)) ([c1dfa6a](https://github.com/vtex/faststore/commit/c1dfa6a42f4b1620a2dade9a0bf9b5b6b55b907a))
-
-## [2.0.85-alpha.0](https://github.com/vtex/faststore/compare/v2.0.84-alpha.0...v2.0.85-alpha.0) (2023-03-22)
-
-### Features
-
-- Adds `Toast` Component ([#1672](https://github.com/vtex/faststore/issues/1672)) ([5338c46](https://github.com/vtex/faststore/commit/5338c466d9fb326c3c85acee3c1049f954afd42a))
-
-## [2.0.84-alpha.0](https://github.com/vtex/faststore/compare/v2.0.83-alpha.0...v2.0.84-alpha.0) (2023-03-21)
-
-### Bug Fixes
-
-- Automatic props PropSection path ([#1679](https://github.com/vtex/faststore/issues/1679)) ([52478bd](https://github.com/vtex/faststore/commit/52478bd46f0875a796e6d13c5fe86aaa2d3c6dd2))
-
-## [2.0.83-alpha.0](https://github.com/vtex/faststore/compare/v2.0.82-alpha.0...v2.0.83-alpha.0) (2023-03-21)
-
-### Features
-
-- Updates `PropsSection` ([#1673](https://github.com/vtex/faststore/issues/1673)) ([10000f2](https://github.com/vtex/faststore/commit/10000f2977f3337d6ac81fb9d52d59316f050105))
-
-## [2.0.81-alpha.0](https://github.com/vtex/faststore/compare/v2.0.80-alpha.0...v2.0.81-alpha.0) (2023-03-16)
-
-**Note:** Version bump only for package site
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## [2.0.75-alpha.0](https://github.com/vtex/faststore/compare/v2.0.74-alpha.0...v2.0.75-alpha.0) (2023-03-15)
-
-### Features
-
-- Add `SearchSuggestions` components ([#1654](https://github.com/vtex/faststore/issues/1654)) ([5dc8077](https://github.com/vtex/faststore/commit/5dc8077421267af882d22e85ddbbb8eacf807690))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.70-alpha.0](https://github.com/vtex/faststore/compare/v2.0.69-alpha.0...v2.0.70-alpha.0) (2023-02-16)
-
-### Features
-
-- Adds `SearchProductCard` component ([#1640](https://github.com/vtex/faststore/issues/1640)) ([e175c8c](https://github.com/vtex/faststore/commit/e175c8c49e9c4caf9bc1730df14fa19f0f062356))
-
-## [2.0.69-alpha.0](https://github.com/vtex/faststore/compare/v2.0.68-alpha.0...v2.0.69-alpha.0) (2023-02-15)
-
-### Features
-
-- Add `Breadcrumb` component ([#1635](https://github.com/vtex/faststore/issues/1635)) ([20a2f1b](https://github.com/vtex/faststore/commit/20a2f1bb3cf8551e0477b5c4641ae9af4b20a525))
-
-## [2.0.68-alpha.0](https://github.com/vtex/faststore/compare/v2.0.67-alpha.0...v2.0.68-alpha.0) (2023-02-15)
-
-### Features
-
-- theming docs ([#1636](https://github.com/vtex/faststore/issues/1636)) ([62a5f26](https://github.com/vtex/faststore/commit/62a5f26885ea966595dff11bdc1387a5886a962a))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package site
-
-## [2.0.64-alpha.0](https://github.com/vtex/faststore/compare/v2.0.63-alpha.0...v2.0.64-alpha.0) (2023-02-13)
-
-### Features
-
-- Adds Global tokens doc pages ([#1630](https://github.com/vtex/faststore/issues/1630)) ([4d20381](https://github.com/vtex/faststore/commit/4d203818103300f2f4dda96f5ba3c59aa92307e0))
-
-## [2.0.63-alpha.0](https://github.com/vtex/faststore/compare/v2.0.62-alpha.0...v2.0.63-alpha.0) (2023-02-10)
-
-### Features
-
-- Adds `ProductCard` component ([#1623](https://github.com/vtex/faststore/issues/1623)) ([80588df](https://github.com/vtex/faststore/commit/80588df4a6c088035f60d563bfe6cd35f85b4a9c))
-
-## [2.0.62-alpha.0](https://github.com/vtex/faststore/compare/v2.0.61-alpha.0...v2.0.62-alpha.0) (2023-02-07)
-
-### Features
-
-- Adds `PaymentMethods` component ([#1626](https://github.com/vtex/faststore/issues/1626)) ([b3b8925](https://github.com/vtex/faststore/commit/b3b8925ea1a51a5036b4e839df0aea577ba1d232))
-
-## [2.0.61-alpha.0](https://github.com/vtex/faststore/compare/v2.0.60-alpha.0...v2.0.61-alpha.0) (2023-02-03)
-
-### Features
-
-- Adds `CartItem` component ([#1614](https://github.com/vtex/faststore/issues/1614)) ([48e04ea](https://github.com/vtex/faststore/commit/48e04eafd752ac4e97093bd40cb92e1d6e28e032))
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## [2.0.59-alpha.0](https://github.com/vtex/faststore/compare/v2.0.58-alpha.0...v2.0.59-alpha.0) (2023-02-02)
-
-### Features
-
-- Adds `ProductTitle` component ([#1620](https://github.com/vtex/faststore/issues/1620)) ([8aba709](https://github.com/vtex/faststore/commit/8aba70970b46996b37f1e8dcb28b1d14c042a04e))
-
-## [2.0.57-alpha.0](https://github.com/vtex/faststore/compare/v2.0.56-alpha.0...v2.0.57-alpha.0) (2023-01-30)
-
-### Features
-
-- Adds `Skeleton` Component ([#1616](https://github.com/vtex/faststore/issues/1616)) ([ed2f82d](https://github.com/vtex/faststore/commit/ed2f82dd2a49dcb64611fb48c9b2519633a87251)), closes [#361](https://github.com/vtex/faststore/issues/361)
-
-## [2.0.56-alpha.0](https://github.com/vtex/faststore/compare/v2.0.55-alpha.0...v2.0.56-alpha.0) (2023-01-24)
-
-### Features
-
-- Adds `Modal` component ([#1615](https://github.com/vtex/faststore/issues/1615)) ([a976d53](https://github.com/vtex/faststore/commit/a976d530ce05e2ecefa8090be1237b293a8b97cc))
-
-## [2.0.55-alpha.0](https://github.com/vtex/faststore/compare/v2.0.54-alpha.0...v2.0.55-alpha.0) (2023-01-23)
-
-### Chores
-
-- Extracts priceFormatter hook ([#1617](https://github.com/vtex/faststore/issues/1617)) ([95a9617](https://github.com/vtex/faststore/commit/95a96174968d465ffd092ba81a447dcbf1f7e6ac))
-
-## [2.0.54-alpha.0](https://github.com/vtex/faststore/compare/v2.0.53-alpha.0...v2.0.54-alpha.0) (2023-01-20)
-
-### Features
-
-- Adds `Slider` & `PriceRange` component ([#1605](https://github.com/vtex/faststore/issues/1605)) ([97bf10d](https://github.com/vtex/faststore/commit/97bf10d0d34c524a316e95127e4ed8096c9fca4e))
-
-## [2.0.53-alpha.0](https://github.com/vtex/faststore/compare/v2.0.52-alpha.0...v2.0.53-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `LoadingButton` and `Loader` component ([#1611](https://github.com/vtex/faststore/issues/1611)) ([34021b2](https://github.com/vtex/faststore/commit/34021b22a489cd0b70a1ae62d1076285cb95af59))
-
-## [2.0.52-alpha.0](https://github.com/vtex/faststore/compare/v2.0.51-alpha.0...v2.0.52-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `Gift` component ([#1610](https://github.com/vtex/faststore/issues/1610)) ([baa80af](https://github.com/vtex/faststore/commit/baa80afa5dc6160086cf8ac101cc4a4290435aa8))
-
-## [2.0.51-alpha.0](https://github.com/vtex/faststore/compare/v2.0.50-alpha.0...v2.0.51-alpha.0) (2023-01-17)
-
-### Bug Fixes
-
-- button documentation ([#1612](https://github.com/vtex/faststore/issues/1612)) ([6f1dcba](https://github.com/vtex/faststore/commit/6f1dcba09bee897f67b0088f8d3ca25b9791afff))
-
-## [2.0.50-alpha.0](https://github.com/vtex/faststore/compare/v2.0.49-alpha.0...v2.0.50-alpha.0) (2023-01-16)
-
-### Features
-
-- Adds `RadioGroup` component ([#1604](https://github.com/vtex/faststore/issues/1604)) ([10abc3a](https://github.com/vtex/faststore/commit/10abc3a8b6d8871177e1a5b7728e8724e9a99f89))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.47-alpha.0](https://github.com/vtex/faststore/compare/v2.0.46-alpha.0...v2.0.47-alpha.0) (2023-01-13)
-
-### Features
-
-- Adds `QuantitySelector` component ([#1597](https://github.com/vtex/faststore/issues/1597)) ([a587155](https://github.com/vtex/faststore/commit/a5871559a4a28754dd9868b7f85c92a5bde52917))
-
-## [2.0.45-alpha.0](https://github.com/vtex/faststore/compare/v2.0.44-alpha.0...v2.0.45-alpha.0) (2023-01-12)
-
-### Bug Fixes
-
-- dom element at home ([#1606](https://github.com/vtex/faststore/issues/1606)) ([c95acb5](https://github.com/vtex/faststore/commit/c95acb529e1dd5f3f42bd9265e0515c5553ba819))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package site
-
-## [2.0.41-alpha.0](https://github.com/vtex/faststore/compare/v2.0.40-alpha.0...v2.0.41-alpha.0) (2023-01-10)
-
-### Features
-
-- Adds `Dropdown` component ([#1572](https://github.com/vtex/faststore/issues/1572)) ([edfe557](https://github.com/vtex/faststore/commit/edfe55797d51049b137c1d8c0d648f36d3ebf980))
-
-## [2.0.40-alpha.0](https://github.com/vtex/faststore/compare/v2.0.39-alpha.0...v2.0.40-alpha.0) (2023-01-10)
-
-### Documentation
-
-- Adds `Hero` component doc + Updates docs overview section ([#1598](https://github.com/vtex/faststore/issues/1598)) ([47b3199](https://github.com/vtex/faststore/commit/47b319904d0ff06fc5d3bacddbf5bfc319d451eb))
-
-## [2.0.38-alpha.0](https://github.com/vtex/faststore/compare/v2.0.37-alpha.0...v2.0.38-alpha.0) (2023-01-09)
-
-### Features
-
-- Adds `Accordion` component ([#1567](https://github.com/vtex/faststore/issues/1567)) ([0173e20](https://github.com/vtex/faststore/commit/0173e20b162d53d8faae0791e08110f335c6d6f6))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## [2.0.36-alpha.0](https://github.com/vtex/faststore/compare/v2.0.35-alpha.0...v2.0.36-alpha.0) (2023-01-05)
-
-### Chores
-
-- Updates `Table` Colored Variant ([#1587](https://github.com/vtex/faststore/issues/1587)) ([04050eb](https://github.com/vtex/faststore/commit/04050eb920fe08ca3b4fe30a3e17fbf9dbedff44))
-
-## [2.0.35-alpha.0](https://github.com/vtex/faststore/compare/v2.0.34-alpha.0...v2.0.35-alpha.0) (2023-01-05)
-
-### Documentation
-
-- Updates Components `mdx` files and General Adjusts ([#1575](https://github.com/vtex/faststore/issues/1575)) ([2787bd0](https://github.com/vtex/faststore/commit/2787bd0db083b66f642ac6af2f141e98de87f6fd))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Bug Fixes
-
-- ui version ([f235876](https://github.com/vtex/faststore/commit/f2358761e283b0877406b49d4c827871f4bd7456))
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
diff --git a/lerna.json b/lerna.json
index 248aaf2ced..88bc8c1878 100644
--- a/lerna.json
+++ b/lerna.json
@@ -6,47 +6,5 @@
"message": "[no ci] Release: %v"
}
},
- "changelogPreset": {
- "name": "conventionalcommits",
- "types": [
- {
- "type": "feat",
- "section": "Features"
- },
- {
- "type": "fix",
- "section": "Bug Fixes"
- },
- {
- "type": "chore",
- "section": "Chores"
- },
- {
- "type": "docs",
- "section": "Documentation"
- },
- {
- "type": "style",
- "section": "Style changes"
- },
- {
- "type": "refactor",
- "section": "Refactoring"
- },
- {
- "type": "perf",
- "section": "Performance"
- },
- {
- "type": "test",
- "section": "Tests"
- }
- ],
- "issuePrefixes": ["#"],
- "issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
- "commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
- "compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
- "userUrlFormat": "{{host}}/{{user}}"
- },
"packages": ["packages/*", "apps/*"]
}
diff --git a/package.json b/package.json
index 9179f1aa84..d064204d7f 100644
--- a/package.json
+++ b/package.json
@@ -20,7 +20,6 @@
],
"devDependencies": {
"@faststore/eslint-config": "^3.0.0",
- "conventional-changelog-conventionalcommits": "^5.0.0",
"lerna": "^8.0.0",
"prettier": "^3.1.0",
"turbo": "^2.1.3"
diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md
deleted file mode 100644
index 52e5748268..0000000000
--- a/packages/api/CHANGELOG.md
+++ /dev/null
@@ -1,1679 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.165-alpha.0](https://github.com/vtex/faststore/compare/v2.0.164-alpha.0...v2.0.165-alpha.0) (2023-05-26)
-
-### Features
-
-- add api telemetry ([#1789](https://github.com/vtex/faststore/issues/1789)) ([30c66d7](https://github.com/vtex/faststore/commit/30c66d74abffbd168acfbb44f5bd6f7d56df8b58))
-
-## [2.0.163-alpha.0](https://github.com/vtex/faststore/compare/v2.0.162-alpha.0...v2.0.163-alpha.0) (2023-05-26)
-
-### Features
-
-- add search redirect at api package 2.x ([#1749](https://github.com/vtex/faststore/issues/1749)) ([fe198e1](https://github.com/vtex/faststore/commit/fe198e1de73eda89c220f8a61bd2e83efbd4af9c))
-
-## [2.0.162-alpha.0](https://github.com/vtex/faststore/compare/v2.0.161-alpha.0...v2.0.162-alpha.0) (2023-05-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.158-alpha.0](https://github.com/vtex/faststore/compare/v2.0.157-alpha.0...v2.0.158-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.157-alpha.0](https://github.com/vtex/faststore/compare/v2.0.156-alpha.0...v2.0.157-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.156-alpha.0](https://github.com/vtex/faststore/compare/v2.0.155-alpha.0...v2.0.156-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.154-alpha.0](https://github.com/vtex/faststore/compare/v2.0.153-alpha.0...v2.0.154-alpha.0) (2023-05-23)
-
-### Features
-
-- Adjust `ProductShelf` for CMS ([#1766](https://github.com/vtex/faststore/issues/1766)) ([1798536](https://github.com/vtex/faststore/commit/1798536f60a508997616350f0b4ac6c11878dc04))
-
-## [2.0.140-alpha.0](https://github.com/vtex/faststore/compare/v2.0.139-alpha.0...v2.0.140-alpha.0) (2023-05-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.118-alpha.0](https://github.com/vtex/faststore/compare/v2.0.117-alpha.0...v2.0.118-alpha.0) (2023-04-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.105-alpha.0](https://github.com/vtex/faststore/compare/v2.0.104-alpha.0...v2.0.105-alpha.0) (2023-04-12)
-
-### Features
-
-- add an `user-agent` header to `fetchAPI` method ([#1708](https://github.com/vtex/faststore/issues/1708)) ([e1714c3](https://github.com/vtex/faststore/commit/e1714c350ef2a5c1a30b1a46c4e79d4a8d24993b)), closes [#1709](https://github.com/vtex/faststore/issues/1709)
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## [2.0.97-alpha.0](https://github.com/vtex/faststore/compare/v2.0.96-alpha.0...v2.0.97-alpha.0) (2023-04-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## [2.0.82-alpha.0](https://github.com/vtex/faststore/compare/v2.0.81-alpha.0...v2.0.82-alpha.0) (2023-03-17)
-
-### Features
-
-- change dominantVariant to optional ([#1674](https://github.com/vtex/faststore/issues/1674)) ([29fd637](https://github.com/vtex/faststore/commit/29fd637e40a035073f72a61c7be17514776557fc))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## [2.0.77-alpha.0](https://github.com/vtex/faststore/compare/v2.0.76-alpha.0...v2.0.77-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- **api:** add context variables cart mutation ([#1659](https://github.com/vtex/faststore/issues/1659)) ([c292915](https://github.com/vtex/faststore/commit/c29291546a89f3f278e62996689c90f17b028658))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-- update generetad api schema ([#1637](https://github.com/vtex/faststore/issues/1637)) ([6bf7760](https://github.com/vtex/faststore/commit/6bf7760d96c52ab0038720ed02f361fb433a296b))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/api
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Bug Fixes
-
-- checks best sku existence ([#1624](https://github.com/vtex/faststore/issues/1624)) ([5479bd5](https://github.com/vtex/faststore/commit/5479bd5bbee9b784a96787a55006f6b8449a948c)), closes [/github.com/vtex/faststore/blob/main/packages/api/src/platforms/vtex/utils/sku.ts#L22](https://github.com/vtex//github.com/vtex/faststore/blob/main/packages/api/src/platforms/vtex/utils/sku.ts/issues/L22)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## [2.0.59-alpha.0](https://github.com/vtex/faststore/compare/v2.0.58-alpha.0...v2.0.59-alpha.0) (2023-02-02)
-
-### Features
-
-- Adds `ProductTitle` component ([#1620](https://github.com/vtex/faststore/issues/1620)) ([8aba709](https://github.com/vtex/faststore/commit/8aba70970b46996b37f1e8dcb28b1d14c042a04e))
-
-## [2.0.58-alpha.0](https://github.com/vtex/faststore/compare/v2.0.57-alpha.0...v2.0.58-alpha.0) (2023-02-01)
-
-### Bug Fixes
-
-- local api server error ([#1622](https://github.com/vtex/faststore/issues/1622)) ([8f43e5d](https://github.com/vtex/faststore/commit/8f43e5d7b85c03c77649ec6088862bffc061e704))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.46-alpha.0](https://github.com/vtex/faststore/compare/v2.0.45-alpha.0...v2.0.46-alpha.0) (2023-01-12)
-
-### Features
-
-- Add support to `shouldSplitItem` param in `validateCart` mutation ([#1596](https://github.com/vtex/faststore/issues/1596)) ([246a17f](https://github.com/vtex/faststore/commit/246a17f07665208dd000ea2f326004aae63a5795))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-### Features
-
-- Add seller dimension to channel ([#1484](https://github.com/vtex/faststore/issues/1484)) ([8119629](https://github.com/vtex/faststore/commit/8119629d64cef92d707f134071bb4f26f2e5800e))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## [1.12.29](https://github.com/vtex/faststore/compare/v1.12.28...v1.12.29) (2022-11-14)
-
-### Features
-
-- Shipping Simulation Integration ([#1440](https://github.com/vtex/faststore/issues/1440)) ([8eacba4](https://github.com/vtex/faststore/commit/8eacba46a40f53be7fdca72dc04ff838dbf449c7))
-
-## [1.12.21](https://github.com/vtex/faststore/compare/v1.12.20...v1.12.21) (2022-10-31)
-
-### Bug Fixes
-
-- Takes sales channel in consideration when getting region ([#1499](https://github.com/vtex/faststore/issues/1499)) ([6827c39](https://github.com/vtex/faststore/commit/6827c396a43e025e5bafb726471fdd212baba330))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.12.16](https://github.com/vtex/faststore/compare/v1.12.15...v1.12.16) (2022-10-19)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.12.15](https://github.com/vtex/faststore/compare/v1.12.14...v1.12.15) (2022-10-15)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.12.14](https://github.com/vtex/faststore/compare/v1.12.13...v1.12.14) (2022-10-13)
-
-### Bug Fixes
-
-- checks for session existance before trying to update shipping data ([#1487](https://github.com/vtex/faststore/issues/1487)) ([8edced3](https://github.com/vtex/faststore/commit/8edced304ccdc804c7c9eb215955cec6f7c621ca))
-
-## [1.12.12](https://github.com/vtex/faststore/compare/v1.12.11...v1.12.12) (2022-10-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.12.8](https://github.com/vtex/faststore/compare/v1.12.7...v1.12.8) (2022-09-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.12.7](https://github.com/vtex/faststore/compare/v1.12.6...v1.12.7) (2022-09-28)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.12.6](https://github.com/vtex/faststore/compare/v1.12.5...v1.12.6) (2022-09-26)
-
-### Features
-
-- Add CacheControl GraphQL directive ([#1473](https://github.com/vtex/faststore/issues/1473)) ([b9fd889](https://github.com/vtex/faststore/commit/b9fd889fda56ea409266c56478adcd49fa34d46a))
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## [1.11.7](https://github.com/vtex/faststore/compare/v1.11.6...v1.11.7) (2022-08-29)
-
-### Features
-
-- Cart with session info ([#1444](https://github.com/vtex/faststore/issues/1444)) ([e36ad6f](https://github.com/vtex/faststore/commit/e36ad6f6e1af1a03c0dd47c4263e96bc9d0b7b8d))
-
-## [1.11.4](https://github.com/vtex/faststore/compare/v1.11.3...v1.11.4) (2022-08-15)
-
-### Features
-
-- Product releaseDate ([#1438](https://github.com/vtex/faststore/issues/1438)) ([255b236](https://github.com/vtex/faststore/commit/255b236b8573f88768a0ba0ec0ead001e36daa7d))
-
-## [1.11.3](https://github.com/vtex/faststore/compare/v1.11.2...v1.11.3) (2022-08-10)
-
-### Bug Fixes
-
-- Join cart items ([#1434](https://github.com/vtex/faststore/issues/1434)) ([990b6a9](https://github.com/vtex/faststore/commit/990b6a920703f9004f7e0d6be6c2a316610db5c6))
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-### Chores
-
-- Update generated types from `@faststore/api` ([#1431](https://github.com/vtex/faststore/issues/1431)) ([516068a](https://github.com/vtex/faststore/commit/516068a4cb67a9029693c967db34b133aac81403))
-
-## [1.10.33](https://github.com/vtex/faststore/compare/v1.10.32...v1.10.33) (2022-08-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## [1.10.19](https://github.com/vtex/faststore/compare/v1.10.18...v1.10.19) (2022-07-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.10.8](https://github.com/vtex/faststore/compare/v1.10.7...v1.10.8) (2022-07-07)
-
-### Features
-
-- Add priceCurrency to Offer ([#1399](https://github.com/vtex/faststore/issues/1399)) ([7ca846a](https://github.com/vtex/faststore/commit/7ca846af9b157707c71422b0d7e3e481edfbe5e6))
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.10.4](https://github.com/vtex/faststore/compare/v1.10.3...v1.10.4) (2022-07-04)
-
-### Bug Fixes
-
-- @faststore/graphql-utils ([#1394](https://github.com/vtex/faststore/issues/1394)) ([ea4b483](https://github.com/vtex/faststore/commit/ea4b4832b25fe257d8c5c0c67bc09fb04dc693cf))
-
-## [1.9.17](https://github.com/vtex/faststore/compare/v1.9.16...v1.9.17) (2022-06-28)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.9.11](https://github.com/vtex/faststore/compare/v1.9.10...v1.9.11) (2022-06-19)
-
-### Features
-
-- Price range filter on PLP ([#1364](https://github.com/vtex/faststore/issues/1364)) ([a4c3fa7](https://github.com/vtex/faststore/commit/a4c3fa79c32d1db7bc737f5221479e6db1488866))
-
-## 1.9.9 (2022-06-17)
-
-### Bug Fixes
-
-- add outdir to all tsconfig ([#1372](https://github.com/vtex/faststore/issues/1372)) ([8f847d9](https://github.com/vtex/faststore/commit/8f847d938b0ac66433a248bc77e77a21475b65db))
-- prettier format files ([#1369](https://github.com/vtex/faststore/issues/1369)) ([7f42ea9](https://github.com/vtex/faststore/commit/7f42ea913ee60333fe32434491f9be83c29a165d))
-
-## 1.9.8 (2022-06-17)
-
-### Features
-
-- lint ([#1368](https://github.com/vtex/faststore/issues/1368)) ([66ce99f](https://github.com/vtex/faststore/commit/66ce99f310ec593245e3937daea5ed813e1630e6))
-
-## [1.9.7](https://github.com/vtex/faststore/compare/v1.9.6...v1.9.7) (2022-06-13)
-
-### Features
-
-- Canonical PDP slugs ([#1338](https://github.com/vtex/faststore/issues/1338)) ([ec807bb](https://github.com/vtex/faststore/commit/ec807bb94dafaa72cdec82d53933ca0809bf01df))
-
-## [1.9.6](https://github.com/vtex/faststore/compare/v1.9.5...v1.9.6) (2022-06-13)
-
-### Features
-
-- Export API Errors ([#1361](https://github.com/vtex/faststore/issues/1361)) ([853035a](https://github.com/vtex/faststore/commit/853035aec1ad94cefaf9eae340b625fb6c920ec2))
-
-## [1.9.5](https://github.com/vtex/faststore/compare/v1.9.4...v1.9.5) (2022-06-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.9.4 (2022-06-10)
-
-### Bug Fixes
-
-- codesandbox ci ([#1357](https://github.com/vtex/faststore/issues/1357)) ([db07e1f](https://github.com/vtex/faststore/commit/db07e1fb02f28b0f082c361cb2c28250a687b760))
-
-## [1.9.3](https://github.com/vtex/faststore/compare/v1.9.2...v1.9.3) (2022-06-09)
-
-### Bug Fixes
-
-- Spot pricing sort for lowPrice/highPrice ([#1350](https://github.com/vtex/faststore/issues/1350)) ([6836c6f](https://github.com/vtex/faststore/commit/6836c6f36a14e22eed3564e48a3eae63997b85b8))
-
-## 1.9.1 (2022-06-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.51 (2022-06-03)
-
-### Features
-
-- **UI:** Add Hero component ([#1336](https://github.com/vtex/faststore/issues/1336)) ([767c0cd](https://github.com/vtex/faststore/commit/767c0cdc5eaf6bd56020d64fd7718b1379c09390))
-
-## 1.8.49 (2022-05-31)
-
-### Bug Fixes
-
-- remove docs from build on codesandbox ([#1334](https://github.com/vtex/faststore/issues/1334)) ([c9eabde](https://github.com/vtex/faststore/commit/c9eabdea8d951d42a9b3898572719e1f45294b33))
-
-## 1.8.46 (2022-05-30)
-
-### Features
-
-- using cache ([#1330](https://github.com/vtex/faststore/issues/1330)) ([6f8a7a4](https://github.com/vtex/faststore/commit/6f8a7a4a593f7e82586d7e3d48f5254e011b8df6))
-
-## 1.8.45 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.8.44](https://github.com/vtex/faststore/compare/v1.8.43...v1.8.44) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.42 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.41 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.40 (2022-05-30)
-
-### Bug Fixes
-
-- Cart item with additionalProperty ([#1325](https://github.com/vtex/faststore/issues/1325)) ([8fa6aa1](https://github.com/vtex/faststore/commit/8fa6aa1a88d3e3702a017e581cbcff4281c47f4f))
-
-## 1.8.39 (2022-05-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.38 (2022-05-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.37 (2022-05-27)
-
-### Bug Fixes
-
-- Increase NodeJS version ([#1323](https://github.com/vtex/faststore/issues/1323)) ([3a6fbe7](https://github.com/vtex/faststore/commit/3a6fbe7c230b7056582c783464bfb45cc5717bed))
-
-## 1.8.36 (2022-05-26)
-
-### Bug Fixes
-
-- Top searches ([#1321](https://github.com/vtex/faststore/issues/1321)) ([e2ab99d](https://github.com/vtex/faststore/commit/e2ab99d4f443e013f3fd024fc83bb612fcb27f41))
-
-## 1.8.35 (2022-05-26)
-
-### Features
-
-- Add OutOfStock component ([#1314](https://github.com/vtex/faststore/issues/1314)) ([37eac86](https://github.com/vtex/faststore/commit/37eac86ede448ef68aef426f65f2d224694b2cfc))
-
-## 1.8.34 (2022-05-25)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.33 (2022-05-24)
-
-### Features
-
-- useStorage update onFocus ([#1316](https://github.com/vtex/faststore/issues/1316)) ([c9874d4](https://github.com/vtex/faststore/commit/c9874d46a16a09159e6e1bd4da4e61ec25bd62d2))
-
-## 1.8.32 (2022-05-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.31 (2022-05-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.30 (2022-05-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.29 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.28 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.27 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.26 (2022-05-18)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.25 (2022-05-18)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.24 (2022-05-18)
-
-### Bug Fixes
-
-- Breadcrumb broken links ([#1306](https://github.com/vtex/faststore/issues/1306)) ([e1d74d4](https://github.com/vtex/faststore/commit/e1d74d49dc3f7cf90caa80e480a01346934c0d43))
-
-## 1.8.23 (2022-05-17)
-
-### Features
-
-- Sync Cart with Checkout ([#1299](https://github.com/vtex/faststore/issues/1299)) ([62e8f56](https://github.com/vtex/faststore/commit/62e8f56b31c6bb6cf7260749a90ebef8aba9982b))
-
-## 1.8.22 (2022-05-17)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.21 (2022-05-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.20 (2022-05-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.19 (2022-05-14)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.18 (2022-05-14)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.17 (2022-05-13)
-
-### Features
-
-- **UI:** Add `ProductCard` component ([#1272](https://github.com/vtex/faststore/issues/1272)) ([ea62210](https://github.com/vtex/faststore/commit/ea6221080da8b3538551f7a77df61a14d8de297d))
-
-## 1.8.16 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.15 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.14 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.13 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.12 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.11 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.10 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.9 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.8 (2022-05-11)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.7 (2022-05-11)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.6 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.5 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.4 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## [1.8.3](https://github.com/vtex/faststore/compare/v1.8.2...v1.8.3) (2022-05-10)
-
-### Bug Fixes
-
-- Offer availability ([#1282](https://github.com/vtex/faststore/issues/1282)) ([e91aa26](https://github.com/vtex/faststore/commit/e91aa26241c52c926d505b733f2127a809dd3f24))
-
-## 1.8.2 (2022-05-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.8.1 (2022-05-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.55 (2022-05-06)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.54 (2022-05-06)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.53 (2022-05-06)
-
-### Bug Fixes
-
-- suggestions api url ([#1273](https://github.com/vtex/faststore/issues/1273)) ([6f8a961](https://github.com/vtex/faststore/commit/6f8a9613e4627f91815e669a007ec4ff4c54ffe5))
-
-## 1.7.52 (2022-05-06)
-
-### Bug Fixes
-
-- Release workflow ([#1271](https://github.com/vtex/faststore/issues/1271)) ([3b995a8](https://github.com/vtex/faststore/commit/3b995a82c956c13c4d6f9453ac4f44195c5ef543))
-
-## 1.7.51 (2022-05-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.50 (2022-05-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.49 (2022-05-02)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.48 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.47 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.46 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.45 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.44 (2022-04-28)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.43 (2022-04-28)
-
-### Bug Fixes
-
-- api schema ([#1254](https://github.com/vtex/faststore/issues/1254)) ([c901b3d](https://github.com/vtex/faststore/commit/c901b3db8e002558e14101339c817ca87db8f949))
-
-## 1.7.42 (2022-04-28)
-
-### Features
-
-- search suggestions ([#1198](https://github.com/vtex/faststore/issues/1198)) ([2b19413](https://github.com/vtex/faststore/commit/2b19413dd11249e4d967ac1c4c1aabdc3a8ec1bf))
-
-## 1.7.41 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.40 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.39 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.38 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.37 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.36 (2022-04-27)
-
-### Bug Fixes
-
-- **api:** Remove circular dependencies ([#1243](https://github.com/vtex/faststore/issues/1243)) ([e988621](https://github.com/vtex/faststore/commit/e988621c77b946e397ecc33b82be65b04fa119ec))
-
-## 1.7.35 (2022-04-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.34 (2022-04-25)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.33 (2022-04-25)
-
-### Bug Fixes
-
-- **api:** SearchResult send events ([#1242](https://github.com/vtex/faststore/issues/1242)) ([9cc7cc4](https://github.com/vtex/faststore/commit/9cc7cc4d55802ef0dc75e22d58c46da899674555))
-
-## 1.7.32 (2022-04-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.31 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.30 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.29 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.28 (2022-04-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.27 (2022-04-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.26 (2022-04-19)
-
-### Reverts
-
-- Revert "feat: Add url to events (#1174)" (#1228) ([67ec438](https://github.com/vtex/faststore/commit/67ec4386b876a4de08bfd96df5147efa958d5496)), closes [#1174](https://github.com/vtex/faststore/issues/1174) [#1228](https://github.com/vtex/faststore/issues/1228)
-
-## 1.7.25 (2022-04-19)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.24 (2022-04-18)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.23 (2022-04-18)
-
-### Features
-
-- Add url to events ([#1174](https://github.com/vtex/faststore/issues/1174)) ([0e2befe](https://github.com/vtex/faststore/commit/0e2befe3cb5dc99521a470c4096e31237b93a9c0))
-
-## 1.7.22 (2022-04-13)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.21 (2022-04-12)
-
-### Features
-
-- AggregateRating (Stars) molecule ([#1037](https://github.com/vtex/faststore/issues/1037)) ([23f2fad](https://github.com/vtex/faststore/commit/23f2fad6fd4d58ea369a54a0b6600207016be17e))
-
-## 1.7.20 (2022-04-11)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.19 (2022-04-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.18 (2022-04-08)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.17 (2022-04-08)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.16 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.15 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.14 (2022-04-07)
-
-### Bug Fixes
-
-- Uses catalog slugify ([#1214](https://github.com/vtex/faststore/issues/1214)) ([0b38efc](https://github.com/vtex/faststore/commit/0b38efc96ecab8920cf15f01c29e7f9d5becba3d))
-
-## 1.7.13 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.12 (2022-04-06)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.11 (2022-04-06)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.10 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.9 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.8 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.7 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.6 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.5 (2022-04-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.4 (2022-04-01)
-
-### Bug Fixes
-
-- release notes images ([#1207](https://github.com/vtex/faststore/issues/1207)) ([279e019](https://github.com/vtex/faststore/commit/279e019bad25581712f73c8fe7a433200d711780))
-
-## 1.7.3 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.2 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.7.1 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.29 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown render in SSR ([#1202](https://github.com/vtex/faststore/issues/1202)) ([60f65b0](https://github.com/vtex/faststore/commit/60f65b0864c2fb59dff61e914c69a326b5229984))
-
-## 1.6.28 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown menu position with scroll ([#1199](https://github.com/vtex/faststore/issues/1199)) ([98a228e](https://github.com/vtex/faststore/commit/98a228e364ed26e480936406c1988026f9ebaffc))
-
-## 1.6.27 (2022-03-31)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.26 (2022-03-31)
-
-### Features
-
-- **api:** Handle channel as facet for search and product queries ([#1197](https://github.com/vtex/faststore/issues/1197)) ([00556b1](https://github.com/vtex/faststore/commit/00556b199a48617ff89b1a6b951a0c958f5aa018))
-
-## 1.6.25 (2022-03-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.24 (2022-03-29)
-
-### Bug Fixes
-
-- fix dropdown click bug ([#1196](https://github.com/vtex/faststore/issues/1196)) ([55202ea](https://github.com/vtex/faststore/commit/55202ead64933b71688ac7399211cc2f086596f2))
-
-## 1.6.23 (2022-03-28)
-
-### Bug Fixes
-
-- fix breadcrumb component bug ([#1193](https://github.com/vtex/faststore/issues/1193)) ([f36ba81](https://github.com/vtex/faststore/commit/f36ba814ed679523d8c1f030c31a086a9e5bb190))
-
-## 1.6.22 (2022-03-25)
-
-### Features
-
-- **sdk:** Improve useStorage and Optimistic revalidate effect ([#1186](https://github.com/vtex/faststore/issues/1186)) ([08c616b](https://github.com/vtex/faststore/commit/08c616be4c6bc5a215da7ab0c37ff2731aa09f9a))
-
-## 1.6.21 (2022-03-25)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.20 (2022-03-24)
-
-### Bug Fixes
-
-- fix dropdown component bug ([#1192](https://github.com/vtex/faststore/issues/1192)) ([f188ac0](https://github.com/vtex/faststore/commit/f188ac0c59db5a0ef7a95eb2412d0bbcd024ae36))
-
-## 1.6.19 (2022-03-24)
-
-### Features
-
-- Add exports to dropdown ([#1188](https://github.com/vtex/faststore/issues/1188)) ([f24359a](https://github.com/vtex/faststore/commit/f24359a34439e0ec8d3069483c31a6f62fa6535d))
-
-## 1.6.18 (2022-03-24)
-
-### Features
-
-- **api:** Add session mutation ([#1176](https://github.com/vtex/faststore/issues/1176)) ([0306167](https://github.com/vtex/faststore/commit/030616739cc62d9b5aa55cdf532ee6dea0bd793c))
-
-## 1.6.17 (2022-03-23)
-
-### Features
-
-- **UI:** Add dropdown component ([#1178](https://github.com/vtex/faststore/issues/1178)) ([e5153a6](https://github.com/vtex/faststore/commit/e5153a674c37bd2a8b4c65ae6f56eb5cabaf3fc8))
-
-## 1.6.16 (2022-03-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.15 (2022-03-22)
-
-### Bug Fixes
-
-- Fix some typos ([#1183](https://github.com/vtex/faststore/issues/1183)) ([97fffb0](https://github.com/vtex/faststore/commit/97fffb02d9cc72f07926bc1a9bc684a99d623765))
-
-## 1.6.14 (2022-03-21)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.13 (2022-03-18)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.12 (2022-03-18)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.11 (2022-03-17)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.10 (2022-03-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.9 (2022-03-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.8 (2022-03-15)
-
-### Features
-
-- Add Person Query ([#1139](https://github.com/vtex/faststore/issues/1139)) ([9ec28c2](https://github.com/vtex/faststore/commit/9ec28c21cc6412c5366d1a1c71ef043603cd50c7))
-
-## 1.6.7 (2022-03-14)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.6 (2022-03-14)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.5 (2022-03-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.4 (2022-03-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.3 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.2 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.6.1 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.20 (2022-02-25)
-
-### Bug Fixes
-
-- Cart item availability ([#1160](https://github.com/vtex/faststore/issues/1160)) ([fd1be18](https://github.com/vtex/faststore/commit/fd1be18b09e8e5141a2a899e786e7caf08b3ff62))
-
-## 1.5.19 (2022-02-24)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.18 (2022-02-23)
-
-### Bug Fixes
-
-- **ui:** Use valid HTML for the Breadcrumb's divider ([#1143](https://github.com/vtex/faststore/issues/1143)) ([b40c3b1](https://github.com/vtex/faststore/commit/b40c3b1405e6aa9a0f2006de9f37a903e40a2103))
-
-## 1.5.17 (2022-02-22)
-
-### Features
-
-- Moves some Filter logic to api ([#1154](https://github.com/vtex/faststore/issues/1154)) ([5a591f7](https://github.com/vtex/faststore/commit/5a591f7b42e947577597cc82d8df6a15d2994780))
-
-## 1.5.16 (2022-02-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.15 (2022-02-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.14 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580))
-
-## 1.5.13 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124))
-
-## 1.5.12 (2022-02-21)
-
-### Bug Fixes
-
-- allCollections query pagination and pagetype timeout errors ([#1140](https://github.com/vtex/faststore/issues/1140)) ([0150222](https://github.com/vtex/faststore/commit/01502220fb903c62f0b33b9a703fb45daafae141))
-
-## 1.5.11 (2022-02-18)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** remove trailing slash from incoming requests ([#1145](https://github.com/vtex/faststore/issues/1145)) ([db6f1e1](https://github.com/vtex/faststore/commit/db6f1e173ec43747bf9cfa244b81d86db8a25ce3))
-
-## 1.5.10 (2022-02-17)
-
-### Features
-
-- **api:** Add additional property ([#1107](https://github.com/vtex/faststore/issues/1107)) ([bbcfc4a](https://github.com/vtex/faststore/commit/bbcfc4af68148adb54d66a3f1d28a9817ad2956c))
-
-## 1.5.9 (2022-02-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.8 (2022-02-15)
-
-### Bug Fixes
-
-- **api:** PDP and PLP breadcrumb list item's URL paths ([#1148](https://github.com/vtex/faststore/issues/1148)) ([ea1790a](https://github.com/vtex/faststore/commit/ea1790a0069b5e19f656d7df0051f391c3c3c611))
-
-## 1.5.7 (2022-02-15)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.6 (2022-02-15)
-
-### Features
-
-- Add budgets lighthouse config ([#1150](https://github.com/vtex/faststore/issues/1150)) ([60de848](https://github.com/vtex/faststore/commit/60de84897cb25fe775a3197adf8035610882ced8))
-
-## 1.5.5 (2022-02-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.4 (2022-02-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.3 (2022-02-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.2 (2022-02-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.5.1 (2022-02-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.27 (2022-02-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.26 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.25 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.24 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.23 (2022-02-01)
-
-### Bug Fixes
-
-- unfiltered allCollections query ([#1131](https://github.com/vtex/faststore/issues/1131)) ([4a1744a](https://github.com/vtex/faststore/commit/4a1744ad267517bfb6d3b7d7747725da0533d13f))
-
-## 1.4.22 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.21 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.20 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.19 (2022-01-24)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.18 (2022-01-17)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.17 (2022-01-13)
-
-### Bug Fixes
-
-- replaceAll crashing build with env vars ([#1109](https://github.com/vtex/faststore/issues/1109)) ([801b62e](https://github.com/vtex/faststore/commit/801b62e118238b6828d8cdaa2aff96d6c40278a8))
-
-## 1.4.16 (2022-01-11)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.15 (2022-01-11)
-
-### Bug Fixes
-
-- **api:** Breadcrumb data on collection pages ([#1104](https://github.com/vtex/faststore/issues/1104)) ([25d3c2b](https://github.com/vtex/faststore/commit/25d3c2bd07158ffca75bfe377a5b932c8fb36ae5))
-
-## 1.4.14 (2022-01-07)
-
-### Features
-
-- add item generics to analytics types for easy customization ([#1101](https://github.com/vtex/faststore/issues/1101)) ([51e9d96](https://github.com/vtex/faststore/commit/51e9d96b82062113a96a95159963ff85a22086fc))
-
-## 1.4.13 (2022-01-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.12 (2022-01-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.11 (2022-01-06)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.10 (2022-01-06)
-
-### Bug Fixes
-
-- **api:** Sku loader ([#1100](https://github.com/vtex/faststore/issues/1100)) ([82d029f](https://github.com/vtex/faststore/commit/82d029fbb4fd7613c80d099587b00812c410e448))
-
-## 1.4.9 (2022-01-06)
-
-### Features
-
-- add headers to nginx via env vars ([#1049](https://github.com/vtex/faststore/issues/1049)) ([3553372](https://github.com/vtex/faststore/commit/355337273ce03660db9fd14482818cc24c99f4e2))
-
-## 1.4.8 (2022-01-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.7 (2022-01-05)
-
-### Bug Fixes
-
-- fix accessibility on storybook ([#1096](https://github.com/vtex/faststore/issues/1096)) ([55805b1](https://github.com/vtex/faststore/commit/55805b1b2cffd111ef64857321c20e0a001a93b2))
-
-## 1.4.6 (2022-01-05)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.5 (2022-01-04)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.4 (2022-01-04)
-
-### Bug Fixes
-
-- adjust data attributes pattern on multiple components ([#1093](https://github.com/vtex/faststore/issues/1093)) ([ca9172f](https://github.com/vtex/faststore/commit/ca9172fb353cfce7011f9144c1e94ed7e6b73f5f))
-
-## 1.4.3 (2022-01-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.4.2 (2022-01-03)
-
-### Bug Fixes
-
-- **ui:** removing aria-labelledby from payment methods component ([#1092](https://github.com/vtex/faststore/issues/1092)) ([bf4c7a9](https://github.com/vtex/faststore/commit/bf4c7a981c379ffb1777a2fd8cae787f735f7d2d))
-
-## 1.4.1 (2022-01-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.46 (2021-12-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.45 (2021-12-21)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.44 (2021-12-21)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.43 (2021-12-20)
-
-### Features
-
-- QuantitySelector component ([#1083](https://github.com/vtex/faststore/issues/1083)) ([6ade6c0](https://github.com/vtex/faststore/commit/6ade6c02b06fdb74ba2cd2978d8ac4bda35672d2))
-
-## 1.3.42 (2021-12-20)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.41 (2021-12-20)
-
-### Features
-
-- **ui:** Incentive atom ([#1064](https://github.com/vtex/faststore/issues/1064)) ([1b136c7](https://github.com/vtex/faststore/commit/1b136c7d7fc8f2b99259ef1908286713697e03da))
-
-## 1.3.40 (2021-12-18)
-
-### Features
-
-- **ui:** Link atom ([#1067](https://github.com/vtex/faststore/issues/1067)) ([c49b2dd](https://github.com/vtex/faststore/commit/c49b2ddc31ba4184bed19a8934fbf4d5f0b47a5f))
-
-## 1.3.39 (2021-12-17)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.38 (2021-12-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.37 (2021-12-15)
-
-### Features
-
-- **ui:** Card component ([#1079](https://github.com/vtex/faststore/issues/1079)) ([7f10a5d](https://github.com/vtex/faststore/commit/7f10a5dcec21f7c9d59ba645755fe298e96269df))
-
-## 1.3.36 (2021-12-15)
-
-### Bug Fixes
-
-- expose JS files only ([#1081](https://github.com/vtex/faststore/issues/1081)) ([e363c12](https://github.com/vtex/faststore/commit/e363c120f22b10da81ceb3e2d8fcc58c1b4665af))
-
-## 1.3.35 (2021-12-14)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.34 (2021-12-11)
-
-### Bug Fixes
-
-- **docs:** Fix algolia search ([#1078](https://github.com/vtex/faststore/issues/1078)) ([986074f](https://github.com/vtex/faststore/commit/986074f061365d812650a82748ca5a9fc1dac6d5))
-
-## 1.3.33 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.32 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.31 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.30 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.29 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.28 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.27 (2021-12-10)
-
-### Bug Fixes
-
-- Add Banner Components exportation ([#1072](https://github.com/vtex/faststore/issues/1072)) ([4024104](https://github.com/vtex/faststore/commit/4024104f9804c8762037f03d986a4334af819b3c))
-
-## 1.3.26 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.25 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.24 (2021-12-09)
-
-### Bug Fixes
-
-- fix UI storybook imports ([#1069](https://github.com/vtex/faststore/issues/1069)) ([e4a2402](https://github.com/vtex/faststore/commit/e4a2402235c60488fde7021bf3200d967af3cb83))
-
-## 1.3.23 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.22 (2021-12-07)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.21 (2021-12-07)
-
-### Features
-
-- add docs ([#1058](https://github.com/vtex/faststore/issues/1058)) ([35f3e62](https://github.com/vtex/faststore/commit/35f3e62ae09c350632479742c9ce2c22e8862b23))
-
-## 1.3.20 (2021-12-07)
-
-### Features
-
-- **store-ui:** Banner component ([#1048](https://github.com/vtex/faststore/issues/1048)) ([b65d8e5](https://github.com/vtex/faststore/commit/b65d8e574598f8bf8494aac478e4bec4d774ec86))
-
-## 1.3.19 (2021-12-07)
-
-### Features
-
-- **ui:** PaymentMethods Component ([#1024](https://github.com/vtex/faststore/issues/1024)) ([f093025](https://github.com/vtex/faststore/commit/f093025c5b010b01f16349e2460611792cfff67f))
-
-## 1.3.18 (2021-12-06)
-
-### Features
-
-- **store-ui:** Alert molecule ([#1020](https://github.com/vtex/faststore/issues/1020)) ([7764e0d](https://github.com/vtex/faststore/commit/7764e0d08270a3bb836038c4a9cd27e5cbef9667))
-
-## 1.3.17 (2021-12-06)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.16 (2021-12-06)
-
-### Bug Fixes
-
-- add fallback to prevent null facets attribute StoreSearchResult query ([#1056](https://github.com/vtex/faststore/issues/1056)) ([ae1483f](https://github.com/vtex/faststore/commit/ae1483fdb901328a7a7348746fd241b9ce7ea1da))
-
-## 1.3.15 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.14 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.13 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.12 (2021-12-02)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.11 (2021-12-02)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.10 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.9 (2021-12-01)
-
-### Bug Fixes
-
-- **api:** Throws NotFoundError when collection is not found ([#1047](https://github.com/vtex/faststore/issues/1047)) ([9535ec3](https://github.com/vtex/faststore/commit/9535ec3d67a64f98b4d4e914e7bae81e06935e2a))
-
-## 1.3.8 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.7 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.6 (2021-11-26)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.5 (2021-11-25)
-
-### Features
-
-- **ui:** RadioGroup Component ([#1033](https://github.com/vtex/faststore/issues/1033)) ([60f306d](https://github.com/vtex/faststore/commit/60f306d97257a8cc65ec67bf1f1cc16376ad1654))
-
-## 1.3.4 (2021-11-23)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.3 (2021-11-23)
-
-### Features
-
-- **gatsby-plugin-nginx:** support to augment the generateRewrites ([#1017](https://github.com/vtex/faststore/issues/1017)) ([46587b0](https://github.com/vtex/faststore/commit/46587b0280d7f8dd733a0dca29909f041c944897))
-
-## 1.3.2 (2021-11-22)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.3.1 (2021-11-18)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.37 (2021-11-17)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.36 (2021-11-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.35 (2021-11-16)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.34 (2021-11-16)
-
-### Bug Fixes
-
-- Filter collection slugs in api ([#1022](https://github.com/vtex/faststore/issues/1022)) ([cdcfcff](https://github.com/vtex/faststore/commit/cdcfcff642561dd73b1f85557e101271d10ca930))
-
-## 1.2.33 (2021-11-12)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.32 (2021-11-11)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.31 (2021-11-04)
-
-### Features
-
-- **store-ui:** Breadcrumb improvements ([#1010](https://github.com/vtex/faststore/issues/1010)) ([8b4bf37](https://github.com/vtex/faststore/commit/8b4bf37316d6057683680de36493b63709bb1012))
-
-## 1.2.30 (2021-11-03)
-
-### Bug Fixes
-
-- Channel simulation ([#1014](https://github.com/vtex/faststore/issues/1014)) ([b45406b](https://github.com/vtex/faststore/commit/b45406b2b7ee8deb2b6e256629ba6df89d1b5940))
-
-## 1.2.29 (2021-11-03)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.28 (2021-10-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.27 (2021-10-29)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.26 (2021-10-29)
-
-### Bug Fixes
-
-- **store-ui:** Remove circular dependency ([#1011](https://github.com/vtex/faststore/issues/1011)) ([b9f08c9](https://github.com/vtex/faststore/commit/b9f08c95ae33bdbb09ffc044d6ad831fd6608144))
-
-## 1.2.25 (2021-10-28)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.24 (2021-10-28)
-
-**Note:** Version bump only for package @faststore/api
-
-## 1.2.23 (2021-10-27)
-
-### Features
-
-- **store-ui:** Add carousel tablist keyboard behavior ([#996](https://github.com/vtex/faststore/issues/996)) ([9081584](https://github.com/vtex/faststore/commit/908158460028009aaaa4ebbcd22eefab59e9bff8))
-
-## 1.2.22 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.21 (2021-10-26)
-
-### Features
-
-- **store-ui:** Form molecule ([#1004](https://github.com/vtex/faststore/issues/1004)) ([c584ef6](https://github.com/vtex/faststore/commit/c584ef693d111ede70d27730ecb3cce613b9aba3))
-
-## 1.2.20 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.19 (2021-10-25)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.18 (2021-10-25)
-
-### Features
-
-- **store-ui:** Breadcrumb molecule ([#986](https://github.com/vtex/faststore/issues/986)) ([325c738](https://github.com/vtex/faststore/commit/325c7387089d2f2c7152191b54fc3cb4918f1c68))
-
-## 1.2.17 (2021-10-21)
-
-### Features
-
-- **store-ui:** Loading Button molecule ([#962](https://github.com/vtex/faststore/issues/962)) ([6083ea0](https://github.com/vtex/faststore/commit/6083ea0273646a09e66ceedfab4b17c3960ac9fc)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.2.16 (2021-10-21)
-
-### Features
-
-- **store-ui:** Label atom ([#1001](https://github.com/vtex/faststore/issues/1001)) ([3306ea6](https://github.com/vtex/faststore/commit/3306ea6b9b48996574eac4b8c1b737dff94a438e))
-
-## 1.2.15 (2021-10-21)
-
-### Bug Fixes
-
-- **store-ui:** Fix search-input a11y ([#1000](https://github.com/vtex/faststore/issues/1000)) ([f052f46](https://github.com/vtex/faststore/commit/f052f465e21aa4e2ca047327eeb0610b9b979f10))
-
-## 1.2.14 (2021-10-20)
-
-### Features
-
-- graphql-utils ([#998](https://github.com/vtex/faststore/issues/998)) ([bddf043](https://github.com/vtex/faststore/commit/bddf04308826369f86322851b554cc58ab5b2161))
-
-## 1.2.13 (2021-10-20)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.12 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.11 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.10 (2021-10-18)
-
-### Bug Fixes
-
-- **store-ui:** Component Architecture doc's code snippets ([#997](https://github.com/vtex/faststore/issues/997)) ([7f0d5f3](https://github.com/vtex/faststore/commit/7f0d5f307014f794063dd8d94d873478803888c0))
-
-## 1.2.9 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.8 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.7 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.6 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.5 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.4 (2021-10-14)
-
-### Features
-
-- **store-ui:** Accordion molecule ([#985](https://github.com/vtex/faststore/issues/985)) ([a35fb51](https://github.com/vtex/faststore/commit/a35fb51b675e41af6070da8b521a3a4da25a0d65))
-
-## 1.2.3 (2021-10-14)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.2 (2021-10-13)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.2.1 (2021-10-08)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.1.18 (2021-10-05)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.1.17 (2021-10-05)
-
-### Features
-
-- **store-api:** Add channel support for products ([#968](https://github.com/vtex/faststore/issues/968)) ([923d343](https://github.com/vtex/faststore/commit/923d343bcde8fbebfff9d32ba52ac26cd0504484))
-
-## 1.1.16 (2021-10-04)
-
-### Features
-
-- **store-api:** Add cart to store-api ([#963](https://github.com/vtex/faststore/issues/963)) ([0607d82](https://github.com/vtex/faststore/commit/0607d82f9f17de0b4045a7efbe99004d43e87056))
-
-## 1.1.15 (2021-10-01)
-
-### Features
-
-- Configure storybook theme ([#979](https://github.com/vtex/faststore/issues/979)) ([736811f](https://github.com/vtex/faststore/commit/736811f6381b4fd5f3f6d976198262216fe3ebcb))
-
-## 1.1.14 (2021-09-28)
-
-### Features
-
-- **store-ui:** Add Modal molecule ([#957](https://github.com/vtex/faststore/issues/957)) ([530b308](https://github.com/vtex/faststore/commit/530b3085a5707be459b37757844ce2e52b2f2981))
-
-## 1.1.13 (2021-09-23)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.1.12 (2021-09-22)
-
-### Bug Fixes
-
-- users were unable to develop a store in an account without CMS pages ([#969](https://github.com/vtex/faststore/issues/969)) ([7b28a4e](https://github.com/vtex/faststore/commit/7b28a4e0da1edec7e843a614339909c6565b220a))
-
-## 1.1.11 (2021-09-17)
-
-### Features
-
-- **store-ui:** Spinner atom ([#961](https://github.com/vtex/faststore/issues/961)) ([59034b7](https://github.com/vtex/faststore/commit/59034b726ac83c79f591cd24739a8c15316c92b3)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.1.10 (2021-09-16)
-
-### Features
-
-- **store-api:** Add codegen ([#960](https://github.com/vtex/faststore/issues/960)) ([5231e6c](https://github.com/vtex/faststore/commit/5231e6c455be73b9d870627188c07a420651ed44))
-
-## 1.1.9 (2021-09-15)
-
-**Note:** Version bump only for package @vtex/store-api
-
-## 1.1.8 (2021-09-14)
-
-### Features
-
-- **store-api:** Store API TypeDefs ([#942](https://github.com/vtex/faststore/issues/942)) ([b440dc9](https://github.com/vtex/faststore/commit/b440dc9f023da82b5c443c465375e74f909d1b8d))
diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md
deleted file mode 100644
index e389835f16..0000000000
--- a/packages/cli/CHANGELOG.md
+++ /dev/null
@@ -1,197 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/cli
-
-## [2.0.155-alpha.0](https://github.com/vtex/faststore/compare/v2.0.154-alpha.0...v2.0.155-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/cli
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/cli
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.67-alpha.0](https://github.com/vtex/faststore/compare/v2.0.66-alpha.0...v2.0.67-alpha.0) (2023-02-14)
-
-### Features
-
-- CLI makes WebOps Evergreen + Vercel ([#1618](https://github.com/vtex/faststore/issues/1618)) ([c8c9083](https://github.com/vtex/faststore/commit/c8c908321f56e7ca570cd15e3ed7a145197a6d38)), closes [/github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts#L23](https://github.com/vtex//github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts/issues/L23) [/github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts#L29](https://github.com/vtex//github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts/issues/L29)
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/cli
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-### Chores
-
-- updates cms folder for faststore builder ([#1603](https://github.com/vtex/faststore/issues/1603)) ([5e4d060](https://github.com/vtex/faststore/commit/5e4d060d507ebbbe4842a0596405e036e94799d6))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package @faststore/cli
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## [2.0.22-alpha.0](https://github.com/vtex/faststore/compare/v2.0.21-alpha.0...v2.0.22-alpha.0) (2022-12-19)
-
-### Bug Fixes
-
-- cli cms merge ([#1565](https://github.com/vtex/faststore/issues/1565)) ([2e5bd93](https://github.com/vtex/faststore/commit/2e5bd93c0ee5f1b6ab3afa39a2eae79c5ebea210))
-
-## [2.0.21-alpha.0](https://github.com/vtex/faststore/compare/v2.0.20-alpha.0...v2.0.21-alpha.0) (2022-12-19)
-
-### Chores
-
-- rename config file ([#1564](https://github.com/vtex/faststore/issues/1564)) ([6919db1](https://github.com/vtex/faststore/commit/6919db12949276dd5ebacaf7e07bbf93562a64c0))
-
-## [2.0.20-alpha.0](https://github.com/vtex/faststore/compare/v2.0.19-alpha.0...v2.0.20-alpha.0) (2022-12-19)
-
-### Bug Fixes
-
-- cli copy theme ([#1560](https://github.com/vtex/faststore/issues/1560)) ([9f16796](https://github.com/vtex/faststore/commit/9f167967a9a48adb7912a74a131fda22dd9715e8))
-
-## [2.0.12-alpha.0](https://github.com/vtex/faststore/compare/v2.0.11-alpha.0...v2.0.12-alpha.0) (2022-12-13)
-
-### Features
-
-- Beautify CLI messages with chalk ([#1550](https://github.com/vtex/faststore/issues/1550)) ([6c4c32c](https://github.com/vtex/faststore/commit/6c4c32c3ac0a97b55364b7251f2d90dc70f08952))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## [1.12.28](https://github.com/vtex/faststore/compare/v1.12.27...v1.12.28) (2022-11-09)
-
-### Features
-
-- adds start command to serve stores ([#1511](https://github.com/vtex/faststore/issues/1511)) ([9ef30b5](https://github.com/vtex/faststore/commit/9ef30b5e83c3518240d65235c4f84394ab0fc4cd))
-
-## [1.12.27](https://github.com/vtex/faststore/compare/v1.12.26...v1.12.27) (2022-11-09)
-
-### Features
-
-- add build command ([#1506](https://github.com/vtex/faststore/issues/1506)) ([f9dfa41](https://github.com/vtex/faststore/commit/f9dfa41998935e839b172cba5ec2eee760b06fb0))
-
-## [1.12.26](https://github.com/vtex/faststore/compare/v1.12.25...v1.12.26) (2022-11-09)
-
-### Features
-
-- adds develop command when running faststore dev ([#1500](https://github.com/vtex/faststore/issues/1500)) ([ff6bad5](https://github.com/vtex/faststore/commit/ff6bad5abfd674eec62aee5ad1f467dbcbaa51b0))
-
-## [1.12.25](https://github.com/vtex/faststore/compare/v1.12.24...v1.12.25) (2022-11-09)
-
-**Note:** Version bump only for package @faststore/cli
-
-## 1.12.20 (2022-10-26)
-
-### Features
-
-- Add watch capability to cli dev command ([#1483](https://github.com/vtex/faststore/issues/1483)) ([ac34aad](https://github.com/vtex/faststore/commit/ac34aad74411118b73a53329978810083856fcaa))
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-### Features
-
-- cli ([#1481](https://github.com/vtex/faststore/issues/1481)) ([89ddc99](https://github.com/vtex/faststore/commit/89ddc990937e0ba381f364b1f0d30078916dfe76))
diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md
deleted file mode 100644
index af28249d74..0000000000
--- a/packages/components/CHANGELOG.md
+++ /dev/null
@@ -1,578 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.176-alpha.0](https://github.com/vtex/faststore/compare/v2.0.175-alpha.0...v2.0.176-alpha.0) (2023-06-02)
-
-### Bug Fixes
-
-- Product description mock data ([#1815](https://github.com/vtex/faststore/issues/1815)) ([98bfde8](https://github.com/vtex/faststore/commit/98bfde887b3721de9a75ebc6325aa7b0842707c5))
-
-## [2.0.175-alpha.0](https://github.com/vtex/faststore/compare/v2.0.174-alpha.0...v2.0.175-alpha.0) (2023-06-02)
-
-### Features
-
-- Allows some section's component to be overridable ([#1768](https://github.com/vtex/faststore/issues/1768)) ([e19cba2](https://github.com/vtex/faststore/commit/e19cba222351510ffc91ba130ed61e857e9e6bb5))
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/components
-
-## [2.0.168-alpha.0](https://github.com/vtex/faststore/compare/v2.0.167-alpha.0...v2.0.168-alpha.0) (2023-05-29)
-
-### Features
-
-- Adds `RegionBar` and `RegionModal` Sections ([#1798](https://github.com/vtex/faststore/issues/1798)) ([627fa25](https://github.com/vtex/faststore/commit/627fa25832a7a41a1feebe07bef43b67e5edf13a))
-
-## [2.0.160-alpha.0](https://github.com/vtex/faststore/compare/v2.0.159-alpha.0...v2.0.160-alpha.0) (2023-05-24)
-
-### Bug Fixes
-
-- Integration tests ([#1772](https://github.com/vtex/faststore/issues/1772)) ([b750bcc](https://github.com/vtex/faststore/commit/b750bcc8298e7fd467e6e92da8a9de926d7fcffe))
-
-## [2.0.159-alpha.0](https://github.com/vtex/faststore/compare/v2.0.158-alpha.0...v2.0.159-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package @faststore/components
-
-## [2.0.152-alpha.0](https://github.com/vtex/faststore/compare/v2.0.151-alpha.0...v2.0.152-alpha.0) (2023-05-23)
-
-### Features
-
-- Fix Styles ([#1775](https://github.com/vtex/faststore/issues/1775)) ([2257f6e](https://github.com/vtex/faststore/commit/2257f6e59bac2dc574cf35d71967de5282374969))
-
-## [2.0.151-alpha.0](https://github.com/vtex/faststore/compare/v2.0.150-alpha.0...v2.0.151-alpha.0) (2023-05-22)
-
-### Features
-
-- Adjust `ProductDetails` for CMS ([#1740](https://github.com/vtex/faststore/issues/1740)) ([5cbd315](https://github.com/vtex/faststore/commit/5cbd31544bf57336f6d53780142338f80b61226b))
-
-## [2.0.145-alpha.0](https://github.com/vtex/faststore/compare/v2.0.144-alpha.0...v2.0.145-alpha.0) (2023-05-18)
-
-### Documentation
-
-- Checkbox Field component props ([#1774](https://github.com/vtex/faststore/issues/1774)) ([90abbd4](https://github.com/vtex/faststore/commit/90abbd4a4da9c30f54a4569e828b990cde0ca59e))
-
-## [2.0.142-alpha.0](https://github.com/vtex/faststore/compare/v2.0.141-alpha.0...v2.0.142-alpha.0) (2023-05-16)
-
-### Features
-
-- Adjust `Navbar` for CMS ([#1756](https://github.com/vtex/faststore/issues/1756)) ([105a8b2](https://github.com/vtex/faststore/commit/105a8b2f69ffd8438532d7c9eb959ed26a567675))
-
-## [2.0.141-alpha.0](https://github.com/vtex/faststore/compare/v2.0.140-alpha.0...v2.0.141-alpha.0) (2023-05-16)
-
-### Features
-
-- Pages with `RenderSection` + `Breadcrumb` section CMS ([#1747](https://github.com/vtex/faststore/issues/1747)) ([63f1b6a](https://github.com/vtex/faststore/commit/63f1b6a3b6da30b0c24ba78a8bffbc62470eac0a))
-
-## [2.0.135-alpha.0](https://github.com/vtex/faststore/compare/v2.0.134-alpha.0...v2.0.135-alpha.0) (2023-05-10)
-
-### Bug Fixes
-
-- Lighthouse Performance 🟢 ([#1751](https://github.com/vtex/faststore/issues/1751)) ([bf8de0e](https://github.com/vtex/faststore/commit/bf8de0e5a8427fbe750b561a80fd186851ffd535))
-
-## [2.0.133-alpha.0](https://github.com/vtex/faststore/compare/v2.0.132-alpha.0...v2.0.133-alpha.0) (2023-05-09)
-
-### Features
-
-- Adjust `Footer` for CMS ([#1743](https://github.com/vtex/faststore/issues/1743)) ([86dd67a](https://github.com/vtex/faststore/commit/86dd67a293dcd3a67a5b96ac45dc27d097f95381))
-
-## [2.0.132-alpha.0](https://github.com/vtex/faststore/compare/v2.0.131-alpha.0...v2.0.132-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Lighthouse Checks 🟢 ([#1737](https://github.com/vtex/faststore/issues/1737)) ([b862703](https://github.com/vtex/faststore/commit/b862703ce991065f92765f4cecc88c9946b3d702)), closes [/github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js#L25](https://github.com/vtex//github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js/issues/L25)
-
-## [2.0.128-alpha.0](https://github.com/vtex/faststore/compare/v2.0.127-alpha.0...v2.0.128-alpha.0) (2023-05-04)
-
-### Features
-
-- Adds `Carousel` Component 782 ([#1735](https://github.com/vtex/faststore/issues/1735)) ([a4d5156](https://github.com/vtex/faststore/commit/a4d5156404f47ce22fe2f9b5141b446f987bccbc))
-
-## [2.0.123-alpha.0](https://github.com/vtex/faststore/compare/v2.0.122-alpha.0...v2.0.123-alpha.0) (2023-05-02)
-
-### Documentation
-
-- Updates Icons docs + general updates ([#1739](https://github.com/vtex/faststore/issues/1739)) ([44f3521](https://github.com/vtex/faststore/commit/44f35219ba09e157aba0ea47d462f7a2ccc42b50))
-
-## [2.0.122-alpha.0](https://github.com/vtex/faststore/compare/v2.0.121-alpha.0...v2.0.122-alpha.0) (2023-04-27)
-
-### Bug Fixes
-
-- LH Unused CSS + Organizes CMS Sections and components styles. ([#1712](https://github.com/vtex/faststore/issues/1712)) ([0ab1fa8](https://github.com/vtex/faststore/commit/0ab1fa805e41a53f21cbe26dc5143f853b64dc00))
-
-## [2.0.117-alpha.0](https://github.com/vtex/faststore/compare/v2.0.116-alpha.0...v2.0.117-alpha.0) (2023-04-26)
-
-### Features
-
-- Adds `Navbar`, `NavbarSlider` and `NavbarLinks` components ([#1728](https://github.com/vtex/faststore/issues/1728)) ([30e3f59](https://github.com/vtex/faststore/commit/30e3f59fa75abe6d4155541615c30ccf9618be42))
-
-## [2.0.114-alpha.0](https://github.com/vtex/faststore/compare/v2.0.113-alpha.0...v2.0.114-alpha.0) (2023-04-24)
-
-**Note:** Version bump only for package @faststore/components
-
-## [2.0.113-alpha.0](https://github.com/vtex/faststore/compare/v2.0.112-alpha.0...v2.0.113-alpha.0) (2023-04-24)
-
-### Features
-
-- Adds `Navbar` component ([#1720](https://github.com/vtex/faststore/issues/1720)) ([58aac03](https://github.com/vtex/faststore/commit/58aac0366f3a5df042cd46ce9525e5f1af7b9a38))
-
-## [2.0.111-alpha.0](https://github.com/vtex/faststore/compare/v2.0.110-alpha.0...v2.0.111-alpha.0) (2023-04-18)
-
-### Features
-
-- Adds `ProductGrid` component ([#1719](https://github.com/vtex/faststore/issues/1719)) ([9cbe71f](https://github.com/vtex/faststore/commit/9cbe71f81395297c14b258efdd336b00f6b71071))
-
-## [2.0.110-alpha.0](https://github.com/vtex/faststore/compare/v2.0.109-alpha.0...v2.0.110-alpha.0) (2023-04-18)
-
-### Features
-
-- Add `ProductShelf` component ([#1713](https://github.com/vtex/faststore/issues/1713)) ([6a387a6](https://github.com/vtex/faststore/commit/6a387a665aa8a1eb65122abcce67d82b9ead4234))
-
-## [2.0.108-alpha.0](https://github.com/vtex/faststore/compare/v2.0.107-alpha.0...v2.0.108-alpha.0) (2023-04-17)
-
-### Features
-
-- Adds `EmptyState` component ([#1716](https://github.com/vtex/faststore/issues/1716)) ([82eaf9a](https://github.com/vtex/faststore/commit/82eaf9a628f417ee58d7cacb2678f8cdd81bfaec))
-
-## [2.0.106-alpha.0](https://github.com/vtex/faststore/compare/v2.0.105-alpha.0...v2.0.106-alpha.0) (2023-04-12)
-
-### Features
-
-- Adds `RegionModal` component ([#1710](https://github.com/vtex/faststore/issues/1710)) ([d3b6c36](https://github.com/vtex/faststore/commit/d3b6c36af3fe3d9c826884654c8708d4a1d14d2d))
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/components
-
-## [2.0.103-alpha.0](https://github.com/vtex/faststore/compare/v2.0.102-alpha.0...v2.0.103-alpha.0) (2023-04-06)
-
-### Features
-
-- Add `ImageGallery` components ([#1681](https://github.com/vtex/faststore/issues/1681)) ([b44101c](https://github.com/vtex/faststore/commit/b44101c932b0758f9c1b09ee001d3221c338cf93)), closes [starter.store#37](https://github.com/vtex/starter.store/issues/37)
-
-## [2.0.102-alpha.0](https://github.com/vtex/faststore/compare/v2.0.101-alpha.0...v2.0.102-alpha.0) (2023-04-06)
-
-### Features
-
-- Adds `CartSidebar` and `OrderSummary` ([#1704](https://github.com/vtex/faststore/issues/1704)) ([a16e168](https://github.com/vtex/faststore/commit/a16e1683816ef84866de4cd7f8d8a64f951b98c6))
-
-## [2.0.101-alpha.0](https://github.com/vtex/faststore/compare/v2.0.100-alpha.0...v2.0.101-alpha.0) (2023-04-05)
-
-### Bug Fixes
-
-- fix tests ([#1705](https://github.com/vtex/faststore/issues/1705)) ([8990310](https://github.com/vtex/faststore/commit/899031022bf6514797f24895ffb7c97e46726217))
-
-## [2.0.99-alpha.0](https://github.com/vtex/faststore/compare/v2.0.98-alpha.0...v2.0.99-alpha.0) (2023-04-04)
-
-### Features
-
-- `Icon` with svg sprites ([#1682](https://github.com/vtex/faststore/issues/1682)) ([e199db7](https://github.com/vtex/faststore/commit/e199db7819ce015cc1c986c73a4a937153ddc062))
-
-## [2.0.96-alpha.0](https://github.com/vtex/faststore/compare/v2.0.95-alpha.0...v2.0.96-alpha.0) (2023-04-03)
-
-### Bug Fixes
-
-- Fix useDefineVariants ([#1700](https://github.com/vtex/faststore/issues/1700)) ([463b65b](https://github.com/vtex/faststore/commit/463b65b1e9fb81ca041f7f7f24280a57e3210b9b))
-
-## [2.0.95-alpha.0](https://github.com/vtex/faststore/compare/v2.0.94-alpha.0...v2.0.95-alpha.0) (2023-04-01)
-
-### Features
-
-- Adds `RegionBar` component ([#1693](https://github.com/vtex/faststore/issues/1693)) ([8390d82](https://github.com/vtex/faststore/commit/8390d829d4c1cab0f56a38b59bb2e1f1ab670fb1))
-
-## [2.0.94-alpha.0](https://github.com/vtex/faststore/compare/v2.0.93-alpha.0...v2.0.94-alpha.0) (2023-03-31)
-
-### Chores
-
-- General improvements, PriceDefinition type and docs review ([#1691](https://github.com/vtex/faststore/issues/1691)) ([7fde306](https://github.com/vtex/faststore/commit/7fde3061e8a37c12634c764ef64b652f770426eb))
-
-## [2.0.93-alpha.0](https://github.com/vtex/faststore/compare/v2.0.92-alpha.0...v2.0.93-alpha.0) (2023-03-31)
-
-### Features
-
-- Adds `ShippingSimulation` Components. ([#1689](https://github.com/vtex/faststore/issues/1689)) ([0683882](https://github.com/vtex/faststore/commit/06838820af9da08541fbc8337504b92406c958d8))
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## [2.0.90-alpha.0](https://github.com/vtex/faststore/compare/v2.0.89-alpha.0...v2.0.90-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `Filter` and `FilterSlider` Components. ([#1687](https://github.com/vtex/faststore/issues/1687)) ([a18e1af](https://github.com/vtex/faststore/commit/a18e1af9fe6037f19a558f2c49e52ba01e50e95a))
-
-## [2.0.89-alpha.0](https://github.com/vtex/faststore/compare/v2.0.88-alpha.0...v2.0.89-alpha.0) (2023-03-29)
-
-### Features
-
-- Add `OutOfStock` components ([#1685](https://github.com/vtex/faststore/issues/1685)) ([25f4442](https://github.com/vtex/faststore/commit/25f444214e234f5f0f9287ef8bc403231b2eac2b))
-
-## [2.0.88-alpha.0](https://github.com/vtex/faststore/compare/v2.0.87-alpha.0...v2.0.88-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `SearchInput`, `SearchInputField` and `SearchDropdown` components ([#1676](https://github.com/vtex/faststore/issues/1676)) ([edba839](https://github.com/vtex/faststore/commit/edba8399a27f183f2092086b3c9d69cf5c1e8f52))
-
-## [2.0.87-alpha.0](https://github.com/vtex/faststore/compare/v2.0.86-alpha.0...v2.0.87-alpha.0) (2023-03-24)
-
-### Features
-
-- Adds `SkuSelector` component ([#1677](https://github.com/vtex/faststore/issues/1677)) ([696a14e](https://github.com/vtex/faststore/commit/696a14e6d9633ececcd2818e4a32b32ce8ad2e2b))
-
-## [2.0.85-alpha.0](https://github.com/vtex/faststore/compare/v2.0.84-alpha.0...v2.0.85-alpha.0) (2023-03-22)
-
-### Features
-
-- Adds `Toast` Component ([#1672](https://github.com/vtex/faststore/issues/1672)) ([5338c46](https://github.com/vtex/faststore/commit/5338c466d9fb326c3c85acee3c1049f954afd42a))
-
-## [2.0.83-alpha.0](https://github.com/vtex/faststore/compare/v2.0.82-alpha.0...v2.0.83-alpha.0) (2023-03-21)
-
-### Features
-
-- Updates `PropsSection` ([#1673](https://github.com/vtex/faststore/issues/1673)) ([10000f2](https://github.com/vtex/faststore/commit/10000f2977f3337d6ac81fb9d52d59316f050105))
-
-## [2.0.80-alpha.0](https://github.com/vtex/faststore/compare/v2.0.79-alpha.0...v2.0.80-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- forwardRef errors ([#1671](https://github.com/vtex/faststore/issues/1671)) ([945c5da](https://github.com/vtex/faststore/commit/945c5dabf21b7ee87c1e9197a1115b9b1eafb9c0))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## [2.0.78-alpha.0](https://github.com/vtex/faststore/compare/v2.0.77-alpha.0...v2.0.78-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- yarn test script ([#1668](https://github.com/vtex/faststore/issues/1668)) ([128c706](https://github.com/vtex/faststore/commit/128c7068e065b341268c9967351c4dd2e908bd49))
-
-## [2.0.75-alpha.0](https://github.com/vtex/faststore/compare/v2.0.74-alpha.0...v2.0.75-alpha.0) (2023-03-15)
-
-### Features
-
-- Add `SearchSuggestions` components ([#1654](https://github.com/vtex/faststore/issues/1654)) ([5dc8077](https://github.com/vtex/faststore/commit/5dc8077421267af882d22e85ddbbb8eacf807690))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.70-alpha.0](https://github.com/vtex/faststore/compare/v2.0.69-alpha.0...v2.0.70-alpha.0) (2023-02-16)
-
-### Features
-
-- Adds `SearchProductCard` component ([#1640](https://github.com/vtex/faststore/issues/1640)) ([e175c8c](https://github.com/vtex/faststore/commit/e175c8c49e9c4caf9bc1730df14fa19f0f062356))
-
-## [2.0.69-alpha.0](https://github.com/vtex/faststore/compare/v2.0.68-alpha.0...v2.0.69-alpha.0) (2023-02-15)
-
-### Features
-
-- Add `Breadcrumb` component ([#1635](https://github.com/vtex/faststore/issues/1635)) ([20a2f1b](https://github.com/vtex/faststore/commit/20a2f1bb3cf8551e0477b5c4641ae9af4b20a525))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/components
-
-## [2.0.63-alpha.0](https://github.com/vtex/faststore/compare/v2.0.62-alpha.0...v2.0.63-alpha.0) (2023-02-10)
-
-### Features
-
-- Adds `ProductCard` component ([#1623](https://github.com/vtex/faststore/issues/1623)) ([80588df](https://github.com/vtex/faststore/commit/80588df4a6c088035f60d563bfe6cd35f85b4a9c))
-
-## [2.0.62-alpha.0](https://github.com/vtex/faststore/compare/v2.0.61-alpha.0...v2.0.62-alpha.0) (2023-02-07)
-
-### Features
-
-- Adds `PaymentMethods` component ([#1626](https://github.com/vtex/faststore/issues/1626)) ([b3b8925](https://github.com/vtex/faststore/commit/b3b8925ea1a51a5036b4e839df0aea577ba1d232))
-
-## [2.0.61-alpha.0](https://github.com/vtex/faststore/compare/v2.0.60-alpha.0...v2.0.61-alpha.0) (2023-02-03)
-
-### Features
-
-- Adds `CartItem` component ([#1614](https://github.com/vtex/faststore/issues/1614)) ([48e04ea](https://github.com/vtex/faststore/commit/48e04eafd752ac4e97093bd40cb92e1d6e28e032))
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## [2.0.59-alpha.0](https://github.com/vtex/faststore/compare/v2.0.58-alpha.0...v2.0.59-alpha.0) (2023-02-02)
-
-### Features
-
-- Adds `ProductTitle` component ([#1620](https://github.com/vtex/faststore/issues/1620)) ([8aba709](https://github.com/vtex/faststore/commit/8aba70970b46996b37f1e8dcb28b1d14c042a04e))
-
-## [2.0.57-alpha.0](https://github.com/vtex/faststore/compare/v2.0.56-alpha.0...v2.0.57-alpha.0) (2023-01-30)
-
-### Features
-
-- Adds `Skeleton` Component ([#1616](https://github.com/vtex/faststore/issues/1616)) ([ed2f82d](https://github.com/vtex/faststore/commit/ed2f82dd2a49dcb64611fb48c9b2519633a87251)), closes [#361](https://github.com/vtex/faststore/issues/361)
-
-## [2.0.56-alpha.0](https://github.com/vtex/faststore/compare/v2.0.55-alpha.0...v2.0.56-alpha.0) (2023-01-24)
-
-### Features
-
-- Adds `Modal` component ([#1615](https://github.com/vtex/faststore/issues/1615)) ([a976d53](https://github.com/vtex/faststore/commit/a976d530ce05e2ecefa8090be1237b293a8b97cc))
-
-## [2.0.54-alpha.0](https://github.com/vtex/faststore/compare/v2.0.53-alpha.0...v2.0.54-alpha.0) (2023-01-20)
-
-### Features
-
-- Adds `Slider` & `PriceRange` component ([#1605](https://github.com/vtex/faststore/issues/1605)) ([97bf10d](https://github.com/vtex/faststore/commit/97bf10d0d34c524a316e95127e4ed8096c9fca4e))
-
-## [2.0.53-alpha.0](https://github.com/vtex/faststore/compare/v2.0.52-alpha.0...v2.0.53-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `LoadingButton` and `Loader` component ([#1611](https://github.com/vtex/faststore/issues/1611)) ([34021b2](https://github.com/vtex/faststore/commit/34021b22a489cd0b70a1ae62d1076285cb95af59))
-
-## [2.0.52-alpha.0](https://github.com/vtex/faststore/compare/v2.0.51-alpha.0...v2.0.52-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `Gift` component ([#1610](https://github.com/vtex/faststore/issues/1610)) ([baa80af](https://github.com/vtex/faststore/commit/baa80afa5dc6160086cf8ac101cc4a4290435aa8))
-
-## [2.0.50-alpha.0](https://github.com/vtex/faststore/compare/v2.0.49-alpha.0...v2.0.50-alpha.0) (2023-01-16)
-
-### Features
-
-- Adds `RadioGroup` component ([#1604](https://github.com/vtex/faststore/issues/1604)) ([10abc3a](https://github.com/vtex/faststore/commit/10abc3a8b6d8871177e1a5b7728e8724e9a99f89))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.47-alpha.0](https://github.com/vtex/faststore/compare/v2.0.46-alpha.0...v2.0.47-alpha.0) (2023-01-13)
-
-### Features
-
-- Adds `QuantitySelector` component ([#1597](https://github.com/vtex/faststore/issues/1597)) ([a587155](https://github.com/vtex/faststore/commit/a5871559a4a28754dd9868b7f85c92a5bde52917))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package @faststore/components
-
-## [2.0.43-alpha.0](https://github.com/vtex/faststore/compare/v2.0.42-alpha.0...v2.0.43-alpha.0) (2023-01-11)
-
-### Bug Fixes
-
-- revert table props and adds new props (types mismatch) ([#1601](https://github.com/vtex/faststore/issues/1601)) ([e791a3f](https://github.com/vtex/faststore/commit/e791a3f6cdd6f3382997bce1d9f105531c05ddbd))
-
-## [2.0.42-alpha.0](https://github.com/vtex/faststore/compare/v2.0.41-alpha.0...v2.0.42-alpha.0) (2023-01-10)
-
-### Chores
-
-- `Table` component's improvements ([#1592](https://github.com/vtex/faststore/issues/1592)) ([176a710](https://github.com/vtex/faststore/commit/176a710cf8d2917527cb4f99a8ddc956d841ae76))
-
-## [2.0.41-alpha.0](https://github.com/vtex/faststore/compare/v2.0.40-alpha.0...v2.0.41-alpha.0) (2023-01-10)
-
-### Features
-
-- Adds `Dropdown` component ([#1572](https://github.com/vtex/faststore/issues/1572)) ([edfe557](https://github.com/vtex/faststore/commit/edfe55797d51049b137c1d8c0d648f36d3ebf980))
-
-## [2.0.39-alpha.0](https://github.com/vtex/faststore/compare/v2.0.38-alpha.0...v2.0.39-alpha.0) (2023-01-09)
-
-### Bug Fixes
-
-- Edit TableProps ([#1594](https://github.com/vtex/faststore/issues/1594)) ([dcf7970](https://github.com/vtex/faststore/commit/dcf797001c09d1abc685fcbd7ec8aa4bdc7a7bcc))
-
-## [2.0.38-alpha.0](https://github.com/vtex/faststore/compare/v2.0.37-alpha.0...v2.0.38-alpha.0) (2023-01-09)
-
-### Features
-
-- Adds `Accordion` component ([#1567](https://github.com/vtex/faststore/issues/1567)) ([0173e20](https://github.com/vtex/faststore/commit/0173e20b162d53d8faae0791e08110f335c6d6f6))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## [2.0.29-alpha.0](https://github.com/vtex/faststore/compare/v2.0.28-alpha.0...v2.0.29-alpha.0) (2022-12-23)
-
-### Bug Fixes
-
-- Adds Badge props to `DiscountBadge` + Fixes SelectField testId ([#1570](https://github.com/vtex/faststore/issues/1570)) ([b1513a5](https://github.com/vtex/faststore/commit/b1513a569235cb60bd3a1c6f16e24fd61d810017))
-
-## [2.0.28-alpha.0](https://github.com/vtex/faststore/compare/v2.0.27-alpha.0...v2.0.28-alpha.0) (2022-12-23)
-
-### Chores
-
-- Removes icons id ([#1571](https://github.com/vtex/faststore/issues/1571)) ([2e790fa](https://github.com/vtex/faststore/commit/2e790faa2ca37fc4f6f9f7c7796f79ceaf6a3f02))
-
-## [2.0.27-alpha.0](https://github.com/vtex/faststore/compare/v2.0.26-alpha.0...v2.0.27-alpha.0) (2022-12-23)
-
-### Features
-
-- Adds `Table` component ([#1554](https://github.com/vtex/faststore/issues/1554)) ([0ed5f45](https://github.com/vtex/faststore/commit/0ed5f455fa42cf3a02ae3dd0370759782caf6cdd))
-
-## [2.0.24-alpha.0](https://github.com/vtex/faststore/compare/v2.0.23-alpha.0...v2.0.24-alpha.0) (2022-12-20)
-
-### Chores
-
-- Review components docs ([#1557](https://github.com/vtex/faststore/issues/1557)) ([2da23a0](https://github.com/vtex/faststore/commit/2da23a0ffe2f201f7e6163ea3db8dea4de07afa8))
-
-## [2.0.19-alpha.0](https://github.com/vtex/faststore/compare/v2.0.18-alpha.0...v2.0.19-alpha.0) (2022-12-16)
-
-### Features
-
-- Adds `Hero` component ([#1556](https://github.com/vtex/faststore/issues/1556)) ([871f35c](https://github.com/vtex/faststore/commit/871f35cdcfc85d5ec0038dcc55a9aeedcc5ff546))
-
-## [2.0.18-alpha.0](https://github.com/vtex/faststore/compare/v2.0.17-alpha.0...v2.0.18-alpha.0) (2022-12-15)
-
-### Bug Fixes
-
-- Starter's Integration tests ([#1559](https://github.com/vtex/faststore/issues/1559)) ([d597d98](https://github.com/vtex/faststore/commit/d597d981079448ca46588a8e32964c4e5dcc84f8)), closes [#323](https://github.com/vtex/faststore/issues/323)
-
-## [2.0.17-alpha.0](https://github.com/vtex/faststore/compare/v2.0.16-alpha.0...v2.0.17-alpha.0) (2022-12-15)
-
-### Features
-
-- Create `LinkButton` component ([#1558](https://github.com/vtex/faststore/issues/1558)) ([bbbebdb](https://github.com/vtex/faststore/commit/bbbebdb081f9c40315d8b661461e3b09a34b84b6))
-
-## [2.0.16-alpha.0](https://github.com/vtex/faststore/compare/v2.0.15-alpha.0...v2.0.16-alpha.0) (2022-12-15)
-
-### Features
-
-- Adds `Toggle` & `ToggleField` & `SROnly` components ([#1555](https://github.com/vtex/faststore/issues/1555)) ([b055c0a](https://github.com/vtex/faststore/commit/b055c0aa67291ad88e865b60e96b8a898a97db14))
-
-## [2.0.15-alpha.0](https://github.com/vtex/faststore/compare/v2.0.14-alpha.0...v2.0.15-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `List` component ([#1549](https://github.com/vtex/faststore/issues/1549)) ([55858fe](https://github.com/vtex/faststore/commit/55858fe39c254786e7c7a1e1dd3da96ed3be0d16))
-
-## [2.0.14-alpha.0](https://github.com/vtex/faststore/compare/v2.0.13-alpha.0...v2.0.14-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `Link` component ([#1543](https://github.com/vtex/faststore/issues/1543)) ([9c219eb](https://github.com/vtex/faststore/commit/9c219eba996fc6fec90edd1383a4abf8dbe0a7ef))
-
-## [2.0.13-alpha.0](https://github.com/vtex/faststore/compare/v2.0.12-alpha.0...v2.0.13-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `Select` and `SelectField` components ([#1547](https://github.com/vtex/faststore/issues/1547)) ([7c4beb0](https://github.com/vtex/faststore/commit/7c4beb085c893ad540e1a4440cc7b902fa36a75c))
-
-## [2.0.10-alpha.0](https://github.com/vtex/faststore/compare/v2.0.9-alpha.0...v2.0.10-alpha.0) (2022-12-12)
-
-### Features
-
-- Adds `ButtonBuy` component ([#1551](https://github.com/vtex/faststore/issues/1551)) ([cf48bc8](https://github.com/vtex/faststore/commit/cf48bc803f0537e1a32eb87ff18e8328646939a5))
-
-## [2.0.9-alpha.0](https://github.com/vtex/faststore/compare/v2.0.8-alpha.0...v2.0.9-alpha.0) (2022-12-12)
-
-### Features
-
-- Create `Price` component ([#1548](https://github.com/vtex/faststore/issues/1548)) ([2d7418a](https://github.com/vtex/faststore/commit/2d7418ad45f42cdb0174d45d7c4de5b6d6e27f60))
-
-## [2.0.7-alpha.0](https://github.com/vtex/faststore/compare/v2.0.6-alpha.0...v2.0.7-alpha.0) (2022-12-09)
-
-### Features
-
-- Adds `DiscountBadge` component ([#1546](https://github.com/vtex/faststore/issues/1546)) ([9b2e279](https://github.com/vtex/faststore/commit/9b2e27940ffa9b52c9a62541a07e1f593a0bcfb7)), closes [#313](https://github.com/vtex/faststore/issues/313)
-
-## [2.0.6-alpha.0](https://github.com/vtex/faststore/compare/v2.0.5-alpha.0...v2.0.6-alpha.0) (2022-12-08)
-
-### Features
-
-- Adds `Input` & `InputField` components ([#1545](https://github.com/vtex/faststore/issues/1545)) ([f89ec49](https://github.com/vtex/faststore/commit/f89ec4930dbcc7179f0fac484e16b0981540b6df))
-
-## [2.0.5-alpha.0](https://github.com/vtex/faststore/compare/v2.0.4-alpha.0...v2.0.5-alpha.0) (2022-12-07)
-
-### Features
-
-- `Overlay` Component. ([#1544](https://github.com/vtex/faststore/issues/1544)) ([dad6872](https://github.com/vtex/faststore/commit/dad6872654faaa4411d1f5949e5beab609e2ca36))
-
-## [2.0.4-alpha.0](https://github.com/vtex/faststore/compare/v2.0.3-alpha.0...v2.0.4-alpha.0) (2022-12-07)
-
-### Chores
-
-- config faststore ui ([#1495](https://github.com/vtex/faststore/issues/1495)) ([ed5aa8f](https://github.com/vtex/faststore/commit/ed5aa8f83ab3d929dd47f30b1e171240e1c3c459))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.18](https://github.com/vtex/faststore/compare/v1.12.17...v1.12.18) (2022-10-25)
-
-### Features
-
-- create the components packages ([#1489](https://github.com/vtex/faststore/issues/1489)) ([549805d](https://github.com/vtex/faststore/commit/549805df0d489aa768ed0a09413d0fcc569bdbd3))
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
deleted file mode 100644
index 3afce7f657..0000000000
--- a/packages/core/CHANGELOG.md
+++ /dev/null
@@ -1,1327 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.178-alpha.0](https://github.com/vtex/faststore/compare/v2.0.177-alpha.0...v2.0.178-alpha.0) (2023-06-02)
-
-### Bug Fixes
-
-- A11y tests ([#1817](https://github.com/vtex/faststore/issues/1817)) ([904e830](https://github.com/vtex/faststore/commit/904e830ff3ae47f3d7308fa8b1b9a28949561ed9))
-
-## [2.0.176-alpha.0](https://github.com/vtex/faststore/compare/v2.0.175-alpha.0...v2.0.176-alpha.0) (2023-06-02)
-
-### Bug Fixes
-
-- Product description mock data ([#1815](https://github.com/vtex/faststore/issues/1815)) ([98bfde8](https://github.com/vtex/faststore/commit/98bfde887b3721de9a75ebc6325aa7b0842707c5))
-
-## [2.0.175-alpha.0](https://github.com/vtex/faststore/compare/v2.0.174-alpha.0...v2.0.175-alpha.0) (2023-06-02)
-
-### Features
-
-- Allows some section's component to be overridable ([#1768](https://github.com/vtex/faststore/issues/1768)) ([e19cba2](https://github.com/vtex/faststore/commit/e19cba222351510ffc91ba130ed61e857e9e6bb5))
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-### Chores
-
-- temp skip flaky tests ([#1808](https://github.com/vtex/faststore/issues/1808)) ([734b000](https://github.com/vtex/faststore/commit/734b000ec7c8bff756e514cd9acbc77ecf0e9b62))
-
-## [2.0.172-alpha.0](https://github.com/vtex/faststore/compare/v2.0.171-alpha.0...v2.0.172-alpha.0) (2023-05-31)
-
-### Features
-
-- Override `WebFonts` ([#1799](https://github.com/vtex/faststore/issues/1799)) ([5fa4b9a](https://github.com/vtex/faststore/commit/5fa4b9ada4affcf508f05a95acabd542536ceacf))
-
-## [2.0.169-alpha.0](https://github.com/vtex/faststore/compare/v2.0.168-alpha.0...v2.0.169-alpha.0) (2023-05-29)
-
-### Chores
-
-- Removes imports utilities styles from core package + enable system fonts ([#1792](https://github.com/vtex/faststore/issues/1792)) ([19de095](https://github.com/vtex/faststore/commit/19de095e0e47548386afb06ef057798ca54f6294))
-
-## [2.0.168-alpha.0](https://github.com/vtex/faststore/compare/v2.0.167-alpha.0...v2.0.168-alpha.0) (2023-05-29)
-
-### Features
-
-- Adds `RegionBar` and `RegionModal` Sections ([#1798](https://github.com/vtex/faststore/issues/1798)) ([627fa25](https://github.com/vtex/faststore/commit/627fa25832a7a41a1feebe07bef43b67e5edf13a))
-
-## [2.0.166-alpha.0](https://github.com/vtex/faststore/compare/v2.0.165-alpha.0...v2.0.166-alpha.0) (2023-05-29)
-
-### Features
-
-- Adds `CartSidebar` Section ([#1795](https://github.com/vtex/faststore/issues/1795)) ([c544c45](https://github.com/vtex/faststore/commit/c544c4571b1419ad421b4df57a51de7a0f9e0e2b))
-
-## [2.0.165-alpha.0](https://github.com/vtex/faststore/compare/v2.0.164-alpha.0...v2.0.165-alpha.0) (2023-05-26)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.164-alpha.0](https://github.com/vtex/faststore/compare/v2.0.163-alpha.0...v2.0.164-alpha.0) (2023-05-26)
-
-### Features
-
-- Apply adjusts in preview and content-types ([#1787](https://github.com/vtex/faststore/issues/1787)) ([bcf3772](https://github.com/vtex/faststore/commit/bcf377282bf21351961f028654d62cc8f046f593))
-
-## [2.0.163-alpha.0](https://github.com/vtex/faststore/compare/v2.0.162-alpha.0...v2.0.163-alpha.0) (2023-05-26)
-
-### Features
-
-- add search redirect at api package 2.x ([#1749](https://github.com/vtex/faststore/issues/1749)) ([fe198e1](https://github.com/vtex/faststore/commit/fe198e1de73eda89c220f8a61bd2e83efbd4af9c))
-
-## [2.0.162-alpha.0](https://github.com/vtex/faststore/compare/v2.0.161-alpha.0...v2.0.162-alpha.0) (2023-05-26)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.160-alpha.0](https://github.com/vtex/faststore/compare/v2.0.159-alpha.0...v2.0.160-alpha.0) (2023-05-24)
-
-### Bug Fixes
-
-- Integration tests ([#1772](https://github.com/vtex/faststore/issues/1772)) ([b750bcc](https://github.com/vtex/faststore/commit/b750bcc8298e7fd467e6e92da8a9de926d7fcffe))
-
-## [2.0.159-alpha.0](https://github.com/vtex/faststore/compare/v2.0.158-alpha.0...v2.0.159-alpha.0) (2023-05-24)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.158-alpha.0](https://github.com/vtex/faststore/compare/v2.0.157-alpha.0...v2.0.158-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.157-alpha.0](https://github.com/vtex/faststore/compare/v2.0.156-alpha.0...v2.0.157-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.156-alpha.0](https://github.com/vtex/faststore/compare/v2.0.155-alpha.0...v2.0.156-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.154-alpha.0](https://github.com/vtex/faststore/compare/v2.0.153-alpha.0...v2.0.154-alpha.0) (2023-05-23)
-
-### Features
-
-- Adjust `ProductShelf` for CMS ([#1766](https://github.com/vtex/faststore/issues/1766)) ([1798536](https://github.com/vtex/faststore/commit/1798536f60a508997616350f0b4ac6c11878dc04))
-
-## [2.0.153-alpha.0](https://github.com/vtex/faststore/compare/v2.0.152-alpha.0...v2.0.153-alpha.0) (2023-05-23)
-
-### Features
-
-- Adds `ProductGallery` Sections + `Filter` component from CMS ([#1770](https://github.com/vtex/faststore/issues/1770)) ([3b80811](https://github.com/vtex/faststore/commit/3b808119904d68e6c848eaa4c30be050650ad2bb))
-
-## [2.0.152-alpha.0](https://github.com/vtex/faststore/compare/v2.0.151-alpha.0...v2.0.152-alpha.0) (2023-05-23)
-
-### Features
-
-- Fix Styles ([#1775](https://github.com/vtex/faststore/issues/1775)) ([2257f6e](https://github.com/vtex/faststore/commit/2257f6e59bac2dc574cf35d71967de5282374969))
-
-## [2.0.151-alpha.0](https://github.com/vtex/faststore/compare/v2.0.150-alpha.0...v2.0.151-alpha.0) (2023-05-22)
-
-### Features
-
-- Adjust `ProductDetails` for CMS ([#1740](https://github.com/vtex/faststore/issues/1740)) ([5cbd315](https://github.com/vtex/faststore/commit/5cbd31544bf57336f6d53780142338f80b61226b))
-
-## [2.0.147-alpha.0](https://github.com/vtex/faststore/compare/v2.0.146-alpha.0...v2.0.147-alpha.0) (2023-05-19)
-
-### Chores
-
-- removes required button props ([#1781](https://github.com/vtex/faststore/issues/1781)) ([b2758ee](https://github.com/vtex/faststore/commit/b2758ee37ae4737b3b59a7b6634baec138fe02f6))
-
-## [2.0.146-alpha.0](https://github.com/vtex/faststore/compare/v2.0.145-alpha.0...v2.0.146-alpha.0) (2023-05-19)
-
-### Features
-
-- Hero from CMS in PLP ([#1767](https://github.com/vtex/faststore/issues/1767)) ([7cff1a5](https://github.com/vtex/faststore/commit/7cff1a55e7ce0c3a7fb1bdcb6c3f88c56fc387e2))
-
-## [2.0.145-alpha.0](https://github.com/vtex/faststore/compare/v2.0.144-alpha.0...v2.0.145-alpha.0) (2023-05-18)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.142-alpha.0](https://github.com/vtex/faststore/compare/v2.0.141-alpha.0...v2.0.142-alpha.0) (2023-05-16)
-
-### Features
-
-- Adjust `Navbar` for CMS ([#1756](https://github.com/vtex/faststore/issues/1756)) ([105a8b2](https://github.com/vtex/faststore/commit/105a8b2f69ffd8438532d7c9eb959ed26a567675))
-
-## [2.0.141-alpha.0](https://github.com/vtex/faststore/compare/v2.0.140-alpha.0...v2.0.141-alpha.0) (2023-05-16)
-
-### Features
-
-- Pages with `RenderSection` + `Breadcrumb` section CMS ([#1747](https://github.com/vtex/faststore/issues/1747)) ([63f1b6a](https://github.com/vtex/faststore/commit/63f1b6a3b6da30b0c24ba78a8bffbc62470eac0a))
-
-## [2.0.140-alpha.0](https://github.com/vtex/faststore/compare/v2.0.139-alpha.0...v2.0.140-alpha.0) (2023-05-16)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.139-alpha.0](https://github.com/vtex/faststore/compare/v2.0.138-alpha.0...v2.0.139-alpha.0) (2023-05-15)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.138-alpha.0](https://github.com/vtex/faststore/compare/v2.0.137-alpha.0...v2.0.138-alpha.0) (2023-05-12)
-
-### Bug Fixes
-
-- removes global alert content type and page + fix core build. ([#1759](https://github.com/vtex/faststore/issues/1759)) ([a1c6a60](https://github.com/vtex/faststore/commit/a1c6a60b0f8178bd5521281b82697530b0bb13bd))
-
-## [2.0.137-alpha.0](https://github.com/vtex/faststore/compare/v2.0.136-alpha.0...v2.0.137-alpha.0) (2023-05-11)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.135-alpha.0](https://github.com/vtex/faststore/compare/v2.0.134-alpha.0...v2.0.135-alpha.0) (2023-05-10)
-
-### Bug Fixes
-
-- Lighthouse Performance 🟢 ([#1751](https://github.com/vtex/faststore/issues/1751)) ([bf8de0e](https://github.com/vtex/faststore/commit/bf8de0e5a8427fbe750b561a80fd186851ffd535))
-
-## [2.0.134-alpha.0](https://github.com/vtex/faststore/compare/v2.0.133-alpha.0...v2.0.134-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Renames `IncentivesHeader` section to `Incentives` ([#1752](https://github.com/vtex/faststore/issues/1752)) ([c46b6b2](https://github.com/vtex/faststore/commit/c46b6b289d971ec2e7925e69e83f649b08b933bd))
-
-## [2.0.133-alpha.0](https://github.com/vtex/faststore/compare/v2.0.132-alpha.0...v2.0.133-alpha.0) (2023-05-09)
-
-### Features
-
-- Adjust `Footer` for CMS ([#1743](https://github.com/vtex/faststore/issues/1743)) ([86dd67a](https://github.com/vtex/faststore/commit/86dd67a293dcd3a67a5b96ac45dc27d097f95381))
-
-## [2.0.132-alpha.0](https://github.com/vtex/faststore/compare/v2.0.131-alpha.0...v2.0.132-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Lighthouse Checks 🟢 ([#1737](https://github.com/vtex/faststore/issues/1737)) ([b862703](https://github.com/vtex/faststore/commit/b862703ce991065f92765f4cecc88c9946b3d702)), closes [/github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js#L25](https://github.com/vtex//github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js/issues/L25)
-
-## [2.0.130-alpha.0](https://github.com/vtex/faststore/compare/v2.0.129-alpha.0...v2.0.130-alpha.0) (2023-05-04)
-
-### Features
-
-- Add PLP Content-type e refacts sections to use CamelCase ([#1745](https://github.com/vtex/faststore/issues/1745)) ([00e17d5](https://github.com/vtex/faststore/commit/00e17d500c070137e7704a35adf4949dcc06f7c6))
-
-## [2.0.129-alpha.0](https://github.com/vtex/faststore/compare/v2.0.128-alpha.0...v2.0.129-alpha.0) (2023-05-04)
-
-### Features
-
-- Update content-type to globalSections ([#1744](https://github.com/vtex/faststore/issues/1744)) ([f6c5d1d](https://github.com/vtex/faststore/commit/f6c5d1df2ea093b7c1d371b91e3e828bdc7243f6))
-
-## [2.0.128-alpha.0](https://github.com/vtex/faststore/compare/v2.0.127-alpha.0...v2.0.128-alpha.0) (2023-05-04)
-
-### Features
-
-- Adds `Carousel` Component 782 ([#1735](https://github.com/vtex/faststore/issues/1735)) ([a4d5156](https://github.com/vtex/faststore/commit/a4d5156404f47ce22fe2f9b5141b446f987bccbc))
-
-## [2.0.125-alpha.0](https://github.com/vtex/faststore/compare/v2.0.124-alpha.0...v2.0.125-alpha.0) (2023-05-03)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.123-alpha.0](https://github.com/vtex/faststore/compare/v2.0.122-alpha.0...v2.0.123-alpha.0) (2023-05-02)
-
-### Documentation
-
-- Updates Icons docs + general updates ([#1739](https://github.com/vtex/faststore/issues/1739)) ([44f3521](https://github.com/vtex/faststore/commit/44f35219ba09e157aba0ea47d462f7a2ccc42b50))
-
-## [2.0.122-alpha.0](https://github.com/vtex/faststore/compare/v2.0.121-alpha.0...v2.0.122-alpha.0) (2023-04-27)
-
-### Bug Fixes
-
-- LH Unused CSS + Organizes CMS Sections and components styles. ([#1712](https://github.com/vtex/faststore/issues/1712)) ([0ab1fa8](https://github.com/vtex/faststore/commit/0ab1fa805e41a53f21cbe26dc5143f853b64dc00))
-
-## [2.0.121-alpha.0](https://github.com/vtex/faststore/compare/v2.0.120-alpha.0...v2.0.121-alpha.0) (2023-04-27)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.120-alpha.0](https://github.com/vtex/faststore/compare/v2.0.119-alpha.0...v2.0.120-alpha.0) (2023-04-27)
-
-### Features
-
-- Integrates Global Sections, with Alert component ([#1722](https://github.com/vtex/faststore/issues/1722)) ([da38b2a](https://github.com/vtex/faststore/commit/da38b2af3db5bd6abd57707d11d67d7463d5fa12))
-
-## [2.0.118-alpha.0](https://github.com/vtex/faststore/compare/v2.0.117-alpha.0...v2.0.118-alpha.0) (2023-04-26)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.117-alpha.0](https://github.com/vtex/faststore/compare/v2.0.116-alpha.0...v2.0.117-alpha.0) (2023-04-26)
-
-### Features
-
-- Adds `Navbar`, `NavbarSlider` and `NavbarLinks` components ([#1728](https://github.com/vtex/faststore/issues/1728)) ([30e3f59](https://github.com/vtex/faststore/commit/30e3f59fa75abe6d4155541615c30ccf9618be42))
-
-## [2.0.116-alpha.0](https://github.com/vtex/faststore/compare/v2.0.115-alpha.0...v2.0.116-alpha.0) (2023-04-26)
-
-### Bug Fixes
-
-- Send missing `colorVariant` attribute to `BannerText` ([#1733](https://github.com/vtex/faststore/issues/1733)) ([ddaaaf1](https://github.com/vtex/faststore/commit/ddaaaf1c3e8daa51ea07f4e419f5d2549bf73c12))
-
-## [2.0.115-alpha.0](https://github.com/vtex/faststore/compare/v2.0.114-alpha.0...v2.0.115-alpha.0) (2023-04-25)
-
-### Chores
-
-- adds shouldSplitItem as true by default ([#1725](https://github.com/vtex/faststore/issues/1725)) ([c796d72](https://github.com/vtex/faststore/commit/c796d72ab49c5eb79d305b5e4b1946b6645be0de))
-
-## [2.0.114-alpha.0](https://github.com/vtex/faststore/compare/v2.0.113-alpha.0...v2.0.114-alpha.0) (2023-04-24)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.113-alpha.0](https://github.com/vtex/faststore/compare/v2.0.112-alpha.0...v2.0.113-alpha.0) (2023-04-24)
-
-### Features
-
-- Adds `Navbar` component ([#1720](https://github.com/vtex/faststore/issues/1720)) ([58aac03](https://github.com/vtex/faststore/commit/58aac0366f3a5df042cd46ce9525e5f1af7b9a38))
-
-## [2.0.111-alpha.0](https://github.com/vtex/faststore/compare/v2.0.110-alpha.0...v2.0.111-alpha.0) (2023-04-18)
-
-### Features
-
-- Adds `ProductGrid` component ([#1719](https://github.com/vtex/faststore/issues/1719)) ([9cbe71f](https://github.com/vtex/faststore/commit/9cbe71f81395297c14b258efdd336b00f6b71071))
-
-## [2.0.110-alpha.0](https://github.com/vtex/faststore/compare/v2.0.109-alpha.0...v2.0.110-alpha.0) (2023-04-18)
-
-### Features
-
-- Add `ProductShelf` component ([#1713](https://github.com/vtex/faststore/issues/1713)) ([6a387a6](https://github.com/vtex/faststore/commit/6a387a665aa8a1eb65122abcce67d82b9ead4234))
-
-## [2.0.109-alpha.0](https://github.com/vtex/faststore/compare/v2.0.108-alpha.0...v2.0.109-alpha.0) (2023-04-18)
-
-### Features
-
-- Apply adjusts in `HeroSection` and `BannerText` section ([#1715](https://github.com/vtex/faststore/issues/1715)) ([968f95a](https://github.com/vtex/faststore/commit/968f95afb808c104a795e078f45c37ca619d4697))
-
-## [2.0.108-alpha.0](https://github.com/vtex/faststore/compare/v2.0.107-alpha.0...v2.0.108-alpha.0) (2023-04-17)
-
-### Features
-
-- Adds `EmptyState` component ([#1716](https://github.com/vtex/faststore/issues/1716)) ([82eaf9a](https://github.com/vtex/faststore/commit/82eaf9a628f417ee58d7cacb2678f8cdd81bfaec))
-
-## [2.0.107-alpha.0](https://github.com/vtex/faststore/compare/v2.0.106-alpha.0...v2.0.107-alpha.0) (2023-04-17)
-
-### Chores
-
-- Removes `Form` component ([#1717](https://github.com/vtex/faststore/issues/1717)) ([ffe1c2e](https://github.com/vtex/faststore/commit/ffe1c2ec93f261e24bf3c5a295cf359cf53bcc63))
-
-## [2.0.106-alpha.0](https://github.com/vtex/faststore/compare/v2.0.105-alpha.0...v2.0.106-alpha.0) (2023-04-12)
-
-### Features
-
-- Adds `RegionModal` component ([#1710](https://github.com/vtex/faststore/issues/1710)) ([d3b6c36](https://github.com/vtex/faststore/commit/d3b6c36af3fe3d9c826884654c8708d4a1d14d2d))
-
-## [2.0.105-alpha.0](https://github.com/vtex/faststore/compare/v2.0.104-alpha.0...v2.0.105-alpha.0) (2023-04-12)
-
-**Note:** Version bump only for package @faststore/core
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.103-alpha.0](https://github.com/vtex/faststore/compare/v2.0.102-alpha.0...v2.0.103-alpha.0) (2023-04-06)
-
-### Features
-
-- Add `ImageGallery` components ([#1681](https://github.com/vtex/faststore/issues/1681)) ([b44101c](https://github.com/vtex/faststore/commit/b44101c932b0758f9c1b09ee001d3221c338cf93)), closes [starter.store#37](https://github.com/vtex/starter.store/issues/37)
-
-## [2.0.102-alpha.0](https://github.com/vtex/faststore/compare/v2.0.101-alpha.0...v2.0.102-alpha.0) (2023-04-06)
-
-### Features
-
-- Adds `CartSidebar` and `OrderSummary` ([#1704](https://github.com/vtex/faststore/issues/1704)) ([a16e168](https://github.com/vtex/faststore/commit/a16e1683816ef84866de4cd7f8d8a64f951b98c6))
-
-## [2.0.101-alpha.0](https://github.com/vtex/faststore/compare/v2.0.100-alpha.0...v2.0.101-alpha.0) (2023-04-05)
-
-### Bug Fixes
-
-- fix tests ([#1705](https://github.com/vtex/faststore/issues/1705)) ([8990310](https://github.com/vtex/faststore/commit/899031022bf6514797f24895ffb7c97e46726217))
-
-## [2.0.100-alpha.0](https://github.com/vtex/faststore/compare/v2.0.99-alpha.0...v2.0.100-alpha.0) (2023-04-05)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.99-alpha.0](https://github.com/vtex/faststore/compare/v2.0.98-alpha.0...v2.0.99-alpha.0) (2023-04-04)
-
-### Features
-
-- `Icon` with svg sprites ([#1682](https://github.com/vtex/faststore/issues/1682)) ([e199db7](https://github.com/vtex/faststore/commit/e199db7819ce015cc1c986c73a4a937153ddc062))
-
-## [2.0.98-alpha.0](https://github.com/vtex/faststore/compare/v2.0.97-alpha.0...v2.0.98-alpha.0) (2023-04-03)
-
-### Chores
-
-- updates api version in core package ([#1702](https://github.com/vtex/faststore/issues/1702)) ([d2bbfae](https://github.com/vtex/faststore/commit/d2bbfae551417cd6ac525fa2fe8768956254b6ec))
-
-## [2.0.97-alpha.0](https://github.com/vtex/faststore/compare/v2.0.96-alpha.0...v2.0.97-alpha.0) (2023-04-03)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.96-alpha.0](https://github.com/vtex/faststore/compare/v2.0.95-alpha.0...v2.0.96-alpha.0) (2023-04-03)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.95-alpha.0](https://github.com/vtex/faststore/compare/v2.0.94-alpha.0...v2.0.95-alpha.0) (2023-04-01)
-
-### Features
-
-- Adds `RegionBar` component ([#1693](https://github.com/vtex/faststore/issues/1693)) ([8390d82](https://github.com/vtex/faststore/commit/8390d829d4c1cab0f56a38b59bb2e1f1ab670fb1))
-
-## [2.0.94-alpha.0](https://github.com/vtex/faststore/compare/v2.0.93-alpha.0...v2.0.94-alpha.0) (2023-03-31)
-
-### Chores
-
-- General improvements, PriceDefinition type and docs review ([#1691](https://github.com/vtex/faststore/issues/1691)) ([7fde306](https://github.com/vtex/faststore/commit/7fde3061e8a37c12634c764ef64b652f770426eb))
-
-## [2.0.93-alpha.0](https://github.com/vtex/faststore/compare/v2.0.92-alpha.0...v2.0.93-alpha.0) (2023-03-31)
-
-### Features
-
-- Adds `ShippingSimulation` Components. ([#1689](https://github.com/vtex/faststore/issues/1689)) ([0683882](https://github.com/vtex/faststore/commit/06838820af9da08541fbc8337504b92406c958d8))
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-### Documentation
-
-- Updates midnight theme stylesheet ([#1698](https://github.com/vtex/faststore/issues/1698)) ([9b01beb](https://github.com/vtex/faststore/commit/9b01beb0b8c48b5814bb4ff66d069cd5c2a2fc5f))
-
-## [2.0.90-alpha.0](https://github.com/vtex/faststore/compare/v2.0.89-alpha.0...v2.0.90-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `Filter` and `FilterSlider` Components. ([#1687](https://github.com/vtex/faststore/issues/1687)) ([a18e1af](https://github.com/vtex/faststore/commit/a18e1af9fe6037f19a558f2c49e52ba01e50e95a))
-
-## [2.0.89-alpha.0](https://github.com/vtex/faststore/compare/v2.0.88-alpha.0...v2.0.89-alpha.0) (2023-03-29)
-
-### Features
-
-- Add `OutOfStock` components ([#1685](https://github.com/vtex/faststore/issues/1685)) ([25f4442](https://github.com/vtex/faststore/commit/25f444214e234f5f0f9287ef8bc403231b2eac2b))
-
-## [2.0.88-alpha.0](https://github.com/vtex/faststore/compare/v2.0.87-alpha.0...v2.0.88-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `SearchInput`, `SearchInputField` and `SearchDropdown` components ([#1676](https://github.com/vtex/faststore/issues/1676)) ([edba839](https://github.com/vtex/faststore/commit/edba8399a27f183f2092086b3c9d69cf5c1e8f52))
-
-## [2.0.87-alpha.0](https://github.com/vtex/faststore/compare/v2.0.86-alpha.0...v2.0.87-alpha.0) (2023-03-24)
-
-### Features
-
-- Adds `SkuSelector` component ([#1677](https://github.com/vtex/faststore/issues/1677)) ([696a14e](https://github.com/vtex/faststore/commit/696a14e6d9633ececcd2818e4a32b32ce8ad2e2b))
-
-## [2.0.85-alpha.0](https://github.com/vtex/faststore/compare/v2.0.84-alpha.0...v2.0.85-alpha.0) (2023-03-22)
-
-### Features
-
-- Adds `Toast` Component ([#1672](https://github.com/vtex/faststore/issues/1672)) ([5338c46](https://github.com/vtex/faststore/commit/5338c466d9fb326c3c85acee3c1049f954afd42a))
-
-## [2.0.83-alpha.0](https://github.com/vtex/faststore/compare/v2.0.82-alpha.0...v2.0.83-alpha.0) (2023-03-21)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.81-alpha.0](https://github.com/vtex/faststore/compare/v2.0.80-alpha.0...v2.0.81-alpha.0) (2023-03-16)
-
-### Features
-
-- Image using next/future/image + new Thumbor URL ([#1661](https://github.com/vtex/faststore/issues/1661)) ([8b9a33b](https://github.com/vtex/faststore/commit/8b9a33bf2ce1d671498785a9a35db881c40fcf8e))
-
-## [2.0.80-alpha.0](https://github.com/vtex/faststore/compare/v2.0.79-alpha.0...v2.0.80-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- forwardRef errors ([#1671](https://github.com/vtex/faststore/issues/1671)) ([945c5da](https://github.com/vtex/faststore/commit/945c5dabf21b7ee87c1e9197a1115b9b1eafb9c0))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-- Puts cart-sidebar test id in the right place ([#1670](https://github.com/vtex/faststore/issues/1670)) ([0001070](https://github.com/vtex/faststore/commit/0001070617546c8f423550c0f4bf26e9a640b804))
-
-## [2.0.78-alpha.0](https://github.com/vtex/faststore/compare/v2.0.77-alpha.0...v2.0.78-alpha.0) (2023-03-15)
-
-**Note:** Version bump only for package @faststore/core
-
-## [2.0.76-alpha.0](https://github.com/vtex/faststore/compare/v2.0.75-alpha.0...v2.0.76-alpha.0) (2023-03-15)
-
-### Bug Fixes
-
-- Adds missing test id ([#1666](https://github.com/vtex/faststore/issues/1666)) ([470584d](https://github.com/vtex/faststore/commit/470584d7a7213742bc7d9fbcf9e52e28c6595676)), closes [/github.com/vtex/faststore/pull/1649/files#diff-bc55adb273e27dfb220da8699e7463fac6bc3e1292439e1fa7530e09e9a6d009](https://github.com/vtex//github.com/vtex/faststore/pull/1649/files/issues/diff-bc55adb273e27dfb220da8699e7463fac6bc3e1292439e1fa7530e09e9a6d009)
-
-## [2.0.75-alpha.0](https://github.com/vtex/faststore/compare/v2.0.74-alpha.0...v2.0.75-alpha.0) (2023-03-15)
-
-### Features
-
-- Add `SearchSuggestions` components ([#1654](https://github.com/vtex/faststore/issues/1654)) ([5dc8077](https://github.com/vtex/faststore/commit/5dc8077421267af882d22e85ddbbb8eacf807690))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.72-alpha.0](https://github.com/vtex/faststore/compare/v2.0.71-alpha.0...v2.0.72-alpha.0) (2023-02-17)
-
-### Chores
-
-- **deps:** bump ua-parser-js from 0.7.32 to 0.7.33 ([#1621](https://github.com/vtex/faststore/issues/1621)) ([a5cf09a](https://github.com/vtex/faststore/commit/a5cf09ac2ef361b92a7c705d7c2c3ce220a44ba1)), closes [#605](https://github.com/vtex/faststore/issues/605) [#606](https://github.com/vtex/faststore/issues/606) [#604](https://github.com/vtex/faststore/issues/604)
-
-## [2.0.71-alpha.0](https://github.com/vtex/faststore/compare/v2.0.70-alpha.0...v2.0.71-alpha.0) (2023-02-17)
-
-### Chores
-
-- **deps:** bump undici from 5.0.0 to 5.19.1 ([#1644](https://github.com/vtex/faststore/issues/1644)) ([4eea9f3](https://github.com/vtex/faststore/commit/4eea9f374f6baec2957494381ad082a75ace3788)), closes [nodejs/undici#1910](https://github.com/nodejs/undici/issues/1910) [nodejs/undici#1911](https://github.com/nodejs/undici/issues/1911) [nodejs/undici#1916](https://github.com/nodejs/undici/issues/1916) [nodejs/undici#1915](https://github.com/nodejs/undici/issues/1915) [nodejs/undici#1917](https://github.com/nodejs/undici/issues/1917) [nodejs/undici#1913](https://github.com/nodejs/undici/issues/1913) [nodejs/undici#1918](https://github.com/nodejs/undici/issues/1918) [nodejs/undici#1927](https://github.com/nodejs/undici/issues/1927) [nodejs/undici#1911](https://github.com/nodejs/undici/issues/1911) [nodejs/undici#1913](https://github.com/nodejs/undici/issues/1913) [nodejs/undici#1904](https://github.com/nodejs/undici/issues/1904) [nodejs/undici#1908](https://github.com/nodejs/undici/issues/1908) [nodejs/undici#1899](https://github.com/nodejs/undici/issues/1899) [nodejs/undici#1880](https://github.com/nodejs/undici/issues/1880) [nodejs/undici#1881](https://github.com/nodejs/undici/issues/1881) [nodejs/undici#1884](https://github.com/nodejs/undici/issues/1884) [nodejs/undici#1879](https://github.com/nodejs/undici/issues/1879) [nodejs/undici#1896](https://github.com/nodejs/undici/issues/1896) [nodejs/undici#1894](https://github.com/nodejs/undici/issues/1894) [nodejs/undici#1895](https://github.com/nodejs/undici/issues/1895) [nodejs/undici#1889](https://github.com/nodejs/undici/issues/1889) [#1918](https://github.com/vtex/faststore/issues/1918) [#1913](https://github.com/vtex/faststore/issues/1913) [#1917](https://github.com/vtex/faststore/issues/1917) [#1915](https://github.com/vtex/faststore/issues/1915)
-
-## [2.0.70-alpha.0](https://github.com/vtex/faststore/compare/v2.0.69-alpha.0...v2.0.70-alpha.0) (2023-02-16)
-
-### Features
-
-- Adds `SearchProductCard` component ([#1640](https://github.com/vtex/faststore/issues/1640)) ([e175c8c](https://github.com/vtex/faststore/commit/e175c8c49e9c4caf9bc1730df14fa19f0f062356))
-
-## [2.0.69-alpha.0](https://github.com/vtex/faststore/compare/v2.0.68-alpha.0...v2.0.69-alpha.0) (2023-02-15)
-
-### Features
-
-- Add `Breadcrumb` component ([#1635](https://github.com/vtex/faststore/issues/1635)) ([20a2f1b](https://github.com/vtex/faststore/commit/20a2f1bb3cf8551e0477b5c4641ae9af4b20a525))
-
-## [2.0.67-alpha.0](https://github.com/vtex/faststore/compare/v2.0.66-alpha.0...v2.0.67-alpha.0) (2023-02-14)
-
-### Features
-
-- CLI makes WebOps Evergreen + Vercel ([#1618](https://github.com/vtex/faststore/issues/1618)) ([c8c9083](https://github.com/vtex/faststore/commit/c8c908321f56e7ca570cd15e3ed7a145197a6d38)), closes [/github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts#L23](https://github.com/vtex//github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts/issues/L23) [/github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts#L29](https://github.com/vtex//github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts/issues/L29)
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/core
-
-# Changelog
-
-All notable changes to this project will be documented in this file.
-
-The format is based on [Conventional Changelog](https://github.com/conventional-changelog/conventional-changelog),
-and this project adheres to [Calendar Versioning](https://calver.org/).
-
-### [0.3.17](https://github.com/vtex-sites/nextjs.store/compare/0.3.16...0.3.17) (2023-01-23)
-
-### Features
-
-- Replace `Accordion` FSUI ([#336](https://github.com/vtex-sites/nextjs.store/issues/336)) ([1ebe103](https://github.com/vtex-sites/nextjs.store/commit/1ebe1039a92ab977ba5de1b91f112342973706eb))
-- Replace `Dropdown` FSUI ([#339](https://github.com/vtex-sites/nextjs.store/issues/339)) ([3a541a4](https://github.com/vtex-sites/nextjs.store/commit/3a541a4aab72a1e289a6716ba9c742771905fa7a))
-- Replace `RadioGroup` FSUI ([#345](https://github.com/vtex-sites/nextjs.store/issues/345)) ([2af5559](https://github.com/vtex-sites/nextjs.store/commit/2af5559a8e4b005b78075edecf9c40da1e7e1a2b))
-- Replaces `PriceRange` FSUI ([#348](https://github.com/vtex-sites/nextjs.store/issues/348)) ([546ee17](https://github.com/vtex-sites/nextjs.store/commit/546ee17c0a00e3094f82d8e05c3e38b84114488f))
-- Replaces `QuantitySelector` FSUI ([#344](https://github.com/vtex-sites/nextjs.store/issues/344)) ([6b896fc](https://github.com/vtex-sites/nextjs.store/commit/6b896fcff3e5fdb4841194b05b2a310518eb3857))
-
-### Bug Fixes
-
-- Evergreen `starter.store` build errors. ([#349](https://github.com/vtex-sites/nextjs.store/issues/349)) ([0eedd76](https://github.com/vtex-sites/nextjs.store/commit/0eedd76c65edae710971e3a985065dc30f4de19d))
-
-### Chores
-
-- Replaces `Alert` FSUI ([#343](https://github.com/vtex-sites/nextjs.store/issues/343)) ([8b3d6b2](https://github.com/vtex-sites/nextjs.store/commit/8b3d6b268da572614334554400ea03129445f787))
-- Replaces `Gift` FSUI ([#347](https://github.com/vtex-sites/nextjs.store/issues/347)) ([7fa049e](https://github.com/vtex-sites/nextjs.store/commit/7fa049e890b0bc6c9e4c3a4911c376014b239321))
-
-### [0.3.16](https://github.com/vtex-sites/nextjs.store/compare/0.3.15...0.3.16) (2023-01-09)
-
-### Chores
-
-- Replace `Table` using FSUI ([#341](https://github.com/vtex-sites/nextjs.store/issues/341)) ([cccf3d5](https://github.com/vtex-sites/nextjs.store/commit/cccf3d5cb1fccc1440b2b019ebc06ddc474fb25f))
-
-### 0.3.15 (2023-01-03)
-
-### Features
-
-- Replaces SROnly & Toggle & ToggleField FSUI ([#335](https://github.com/vtex-sites/nextjs.store/issues/335)) ([b096874](https://github.com/vtex-sites/nextjs.store/commit/b096874cae5e24fb4bfbdfd612f6bcc1f2f6bb25))
-
-### Chores
-
-- Replaces `Hero` FSUI ([#324](https://github.com/vtex-sites/nextjs.store/issues/324)) ([ff40590](https://github.com/vtex-sites/nextjs.store/commit/ff40590e07716ab5d1a2b2020d9b668f73b24c90))
-
-### [0.3.14](https://github.com/vtex-sites/nextjs.store/compare/0.3.13...0.3.14) (2022-12-19)
-
-### Chores
-
-- improve log message when component not found in cms ([#331](https://github.com/vtex-sites/nextjs.store/issues/331)) ([cee1226](https://github.com/vtex-sites/nextjs.store/commit/cee122668a3225c15731100af1e8c740efa8a5a9))
-
-### [0.3.13](https://github.com/vtex-sites/nextjs.store/compare/0.3.12...0.3.13) (2022-12-19)
-
-### Chores
-
-- using faststore.config avoid store.config ([#330](https://github.com/vtex-sites/nextjs.store/issues/330)) ([6f8ef30](https://github.com/vtex-sites/nextjs.store/commit/6f8ef30ec7c6a32ce29088fa7e506cc3b6b429bc))
-
-### [0.3.12](https://github.com/vtex-sites/nextjs.store/compare/0.3.11...0.3.12) (2022-12-19)
-
-### Bug Fixes
-
-- next tsconfig ([#329](https://github.com/vtex-sites/nextjs.store/issues/329)) ([d2b4fc5](https://github.com/vtex-sites/nextjs.store/commit/d2b4fc5f33c5613eefa151088a7e8a9a899b6d24))
-
-### [0.3.11](https://github.com/vtex-sites/nextjs.store/compare/0.3.10...0.3.11) (2022-12-19)
-
-### Chores
-
-- remove vtex tsconfig ([#328](https://github.com/vtex-sites/nextjs.store/issues/328)) ([9ffdf53](https://github.com/vtex-sites/nextjs.store/commit/9ffdf536c1bd56aa483cf68f28cffb975d7083c3))
-
-### [0.3.10](https://github.com/vtex-sites/nextjs.store/compare/0.3.9...0.3.10) (2022-12-19)
-
-### Bug Fixes
-
-- custom components on home page ([#325](https://github.com/vtex-sites/nextjs.store/issues/325)) ([c7fbdec](https://github.com/vtex-sites/nextjs.store/commit/c7fbdecd9c2730d4f474444ee086a7099fa2843f)), closes [#326](https://github.com/vtex-sites/nextjs.store/issues/326)
-
-### [0.3.9](https://github.com/vtex-sites/nextjs.store/compare/0.3.8...0.3.9) (2022-12-16)
-
-### Chores
-
-- Replaces `LinkButton` UI ([#322](https://github.com/vtex-sites/nextjs.store/issues/322)) ([532f20d](https://github.com/vtex-sites/nextjs.store/commit/532f20d96611254f2453bf0b29e610cb6052daa2))
-
-### [0.3.8](https://github.com/vtex-sites/nextjs.store/compare/0.3.7...0.3.8) (2022-12-16)
-
-### Bug Fixes
-
-- Integration tests ([#323](https://github.com/vtex-sites/nextjs.store/issues/323)) ([6e927e5](https://github.com/vtex-sites/nextjs.store/commit/6e927e563cd355ae7af82b5de42abda909965009))
-
-### [0.3.7](https://github.com/vtex-sites/nextjs.store/compare/0.3.6...0.3.7) (2022-12-15)
-
-### [0.3.6](https://github.com/vtex-sites/nextjs.store/compare/0.3.5...0.3.6) (2022-12-15)
-
-### Chores
-
-- creating a branch intermediate to evergreen ([dd99e1d](https://github.com/vtex-sites/nextjs.store/commit/dd99e1d157c8f27b7d015edb6675676718e65c8d))
-
-### [0.3.5](https://github.com/vtex-sites/nextjs.store/compare/0.3.4...0.3.5) (2022-11-30)
-
-### [0.3.4](https://github.com/vtex-sites/nextjs.store/compare/0.3.3...0.3.4) (2022-11-23)
-
-### [0.3.3](https://github.com/vtex-sites/nextjs.store/compare/0.3.2...0.3.3) (2022-11-14)
-
-### Features
-
-- Shipping Simulation API ([#210](https://github.com/vtex-sites/nextjs.store/issues/210)) ([f391389](https://github.com/vtex-sites/nextjs.store/commit/f3913896261e404d6a93d8bb7e5c805ae00e52a5))
-
-### [0.3.2](https://github.com/vtex-sites/nextjs.store/compare/0.3.1...0.3.2) (2022-11-08)
-
-### Bug Fixes
-
-- specifies exact typescript version to avoid breaking changes ([#300](https://github.com/vtex-sites/nextjs.store/issues/300)) ([7b719ac](https://github.com/vtex-sites/nextjs.store/commit/7b719ac1810c1510f7082984d2f10c45553b1822))
-
-### [0.3.1](https://github.com/vtex-sites/nextjs.store/compare/0.3.0...0.3.1) (2022-11-08)
-
-### Bug Fixes
-
-- include necessary build dependencies with package ([#297](https://github.com/vtex-sites/nextjs.store/issues/297)) ([c7b2345](https://github.com/vtex-sites/nextjs.store/commit/c7b2345645a89c3edd74296a0fa06ade3653ff6d))
-
-## [0.3.0](https://github.com/vtex-sites/nextjs.store/compare/0.2.2...0.3.0) (2022-11-07)
-
-### Features
-
-- Adds `Carousel` component ([#273](https://github.com/vtex-sites/nextjs.store/issues/273)) ([cbc0107](https://github.com/vtex-sites/nextjs.store/commit/cbc0107d5ef7b435c7a9e52756d0edc8cae03fe1))
-
-### [0.2.2](https://github.com/vtex-sites/nextjs.store/compare/0.2.1...0.2.2) (2022-10-28)
-
-### Bug Fixes
-
-- Setting postal code a 2nd time doesn't work ([#291](https://github.com/vtex-sites/nextjs.store/issues/291)) ([bc7e834](https://github.com/vtex-sites/nextjs.store/commit/bc7e8344305dc3f9a00a58da6913e6694630aba1))
-
-### [0.2.1](https://github.com/vtex-sites/nextjs.store/compare/0.2.0...0.2.1) (2022-10-28)
-
-### Chores
-
-- make store extendable ([#293](https://github.com/vtex-sites/nextjs.store/issues/293)) ([f8c3632](https://github.com/vtex-sites/nextjs.store/commit/f8c3632740d263c8d435033678ed1591f23f0359))
-
-## [0.2.0](https://github.com/vtex-sites/nextjs.store/compare/0.1.1...0.2.0) (2022-10-25)
-
-### Features
-
-- Integrate CMS with PDP ([#283](https://github.com/vtex-sites/nextjs.store/issues/283)) ([e3c3ec8](https://github.com/vtex-sites/nextjs.store/commit/e3c3ec889cb76b185488ba8f8fa9e1007ffc99d5))
-
-### [0.1.1](https://github.com/vtex-sites/nextjs.store/compare/0.1.0...0.1.1) (2022-10-25)
-
-## 0.1.0 (2022-10-25)
-
-### Features
-
-- publish @faststore/core to npm ([#286](https://github.com/vtex-sites/nextjs.store/issues/286)) ([6d1e277](https://github.com/vtex-sites/nextjs.store/commit/6d1e277806f5b0afd3ca48f2f599f5b47f3b71b5))
-
-### Bug Fixes
-
-- release-it to npm ([#287](https://github.com/vtex-sites/nextjs.store/issues/287)) ([c783f0c](https://github.com/vtex-sites/nextjs.store/commit/c783f0cf8de7f13dac90a0fbfe67db737401574c))
-
-### 0.0.2 (2022-10-25)
-
-### 0.0.1 (2022-10-25)
-
-### [22.42.6](https://github.com/vtex-sites/nextjs.store/compare/22.42.5...22.42.6) (2022-10-24)
-
-### [22.42.5](https://github.com/vtex-sites/nextjs.store/compare/22.42.4...22.42.5) (2022-10-24)
-
-### [22.42.4](https://github.com/vtex-sites/nextjs.store/compare/22.42.3...22.42.4) (2022-10-21)
-
-### [22.42.3](https://github.com/vtex-sites/nextjs.store/compare/22.42.2...22.42.3) (2022-10-20)
-
-### [22.42.2](https://github.com/vtex-sites/nextjs.store/compare/22.42.1...22.42.2) (2022-10-20)
-
-### Features
-
-- Storybook Updates ([#271](https://github.com/vtex-sites/nextjs.store/issues/271)) ([176139a](https://github.com/vtex-sites/nextjs.store/commit/176139a3290330e2626d22f3ca23e2a1722883f3))
-
-### [22.42.1](https://github.com/vtex-sites/nextjs.store/compare/22.42.0...22.42.1) (2022-10-19)
-
-### Bug Fixes
-
-- Bad postal code on shipping data ([#279](https://github.com/vtex-sites/nextjs.store/issues/279)) ([3d71613](https://github.com/vtex-sites/nextjs.store/commit/3d71613130815768f72538c830e78650ae1babf4))
-
-## [22.42.0](https://github.com/vtex-sites/nextjs.store/compare/22.41.1...22.42.0) (2022-10-19)
-
-### Features
-
-- Add Page content-type ([#278](https://github.com/vtex-sites/nextjs.store/issues/278)) ([50a7998](https://github.com/vtex-sites/nextjs.store/commit/50a79989aeaacbed9a7f3873c04b6ae6014c467b))
-
-### [22.41.1](https://github.com/vtex-sites/nextjs.store/compare/22.41.0...22.41.1) (2022-10-19)
-
-### Chores
-
-- Renames data-attr ([#276](https://github.com/vtex-sites/nextjs.store/issues/276)) ([1dde467](https://github.com/vtex-sites/nextjs.store/commit/1dde467b8ed912832f100ddbf83e36deb37bbb2f))
-
-## [22.41.0](https://github.com/vtex-sites/nextjs.store/compare/22.40.2...22.41.0) (2022-10-18)
-
-### Features
-
-- CMS Error Boundaries ([#277](https://github.com/vtex-sites/nextjs.store/issues/277)) ([87d8236](https://github.com/vtex-sites/nextjs.store/commit/87d8236f762414071af2baa4338f164730bbea1f))
-
-### [22.40.2](https://github.com/vtex-sites/nextjs.store/compare/22.40.1...22.40.2) (2022-10-17)
-
-### Chores
-
-- use transition api to defer navbar behavior ([#269](https://github.com/vtex-sites/nextjs.store/issues/269)) ([1339bb8](https://github.com/vtex-sites/nextjs.store/commit/1339bb867d6c53e5e8575bcb39ca5ebc41c4207b))
-
-### [22.40.1](https://github.com/vtex-sites/nextjs.store/compare/22.40.0...22.40.1) (2022-10-17)
-
-### Features
-
-- Adjust Newsletter to match new designs ([#252](https://github.com/vtex-sites/nextjs.store/issues/252)) ([3fc67a7](https://github.com/vtex-sites/nextjs.store/commit/3fc67a755f3bb6ef396fb8580843066964de35dd))
-
-## [22.40.0](https://github.com/vtex-sites/nextjs.store/compare/22.39.6...22.40.0) (2022-10-14)
-
-### Features
-
-- Adds missing CSS modules ([#270](https://github.com/vtex-sites/nextjs.store/issues/270)) ([831011e](https://github.com/vtex-sites/nextjs.store/commit/831011ebaece3a2e818a2678dfdb484428eaaadf)), closes [vtex-sites/nextjs.store#267](https://github.com/vtex-sites/nextjs.store/issues/267)
-
-### [22.39.6](https://github.com/vtex-sites/nextjs.store/compare/22.39.5...22.39.6) (2022-10-14)
-
-### Chores
-
-- Change `resource-summary:stylesheet` Lighthouse metric to warning ([#272](https://github.com/vtex-sites/nextjs.store/issues/272)) ([bd405e9](https://github.com/vtex-sites/nextjs.store/commit/bd405e9fd5a04bcb6da7f2211a6beee32cb3f9a1))
-
-### [22.39.5](https://github.com/vtex-sites/nextjs.store/compare/22.39.4...22.39.5) (2022-10-13)
-
-### [22.39.4](https://github.com/vtex-sites/nextjs.store/compare/22.39.3...22.39.4) (2022-10-11)
-
-### [22.39.3](https://github.com/vtex-sites/nextjs.store/compare/22.39.2...22.39.3) (2022-10-10)
-
-### Bug Fixes
-
-- Top searches locale ([#264](https://github.com/vtex-sites/nextjs.store/issues/264)) ([ea3fd29](https://github.com/vtex-sites/nextjs.store/commit/ea3fd2961b40c04e3421ca3e24e3f89c7f402154))
-
-### [22.39.2](https://github.com/vtex-sites/nextjs.store/compare/22.39.1...22.39.2) (2022-10-10)
-
-### [22.39.1](https://github.com/vtex-sites/nextjs.store/compare/22.39.0...22.39.1) (2022-10-06)
-
-### Bug Fixes
-
-- using data-fs instead data-store ([#265](https://github.com/vtex-sites/nextjs.store/issues/265)) ([0aebcd7](https://github.com/vtex-sites/nextjs.store/commit/0aebcd7fcc3a9a41278f082b1fdbdadbd2d6b9fe))
-
-## [22.39.0](https://github.com/vtex-sites/nextjs.store/compare/22.38.3...22.39.0) (2022-09-29)
-
-### Features
-
-- Create Product Details Content component ([#258](https://github.com/vtex-sites/nextjs.store/issues/258)) ([954e4b3](https://github.com/vtex-sites/nextjs.store/commit/954e4b38934dcf254350dc1d7ad1d4a7677a0bf3))
-
-### [22.38.3](https://github.com/vtex-sites/nextjs.store/compare/22.38.2...22.38.3) (2022-09-29)
-
-### [22.38.2](https://github.com/vtex-sites/nextjs.store/compare/22.38.1...22.38.2) (2022-09-29)
-
-### Bug Fixes
-
-- Wrong sku being returned for slug ([#261](https://github.com/vtex-sites/nextjs.store/issues/261)) ([b4c6911](https://github.com/vtex-sites/nextjs.store/commit/b4c6911fadac42a12f935e606f6f812316840d39))
-
-### [22.38.1](https://github.com/vtex-sites/nextjs.store/compare/22.38.0...22.38.1) (2022-09-28)
-
-### Bug Fixes
-
-- ImageGallery height on responsive views ([#255](https://github.com/vtex-sites/nextjs.store/issues/255)) ([8f704c2](https://github.com/vtex-sites/nextjs.store/commit/8f704c2a23eadc3e2274abc483379972fd27fa8b))
-
-## [22.38.0](https://github.com/vtex-sites/nextjs.store/compare/22.37.1...22.38.0) (2022-09-26)
-
-### Features
-
-- add [@cache](https://github.com/cache)Control directive to GraphQL schema ([#259](https://github.com/vtex-sites/nextjs.store/issues/259)) ([f93597d](https://github.com/vtex-sites/nextjs.store/commit/f93597d0008f2459ba0816119298f6c067f13d23))
-
-### [22.37.1](https://github.com/vtex-sites/nextjs.store/compare/22.37.0...22.37.1) (2022-09-19)
-
-### Bug Fixes
-
-- improve the execute server type ([#254](https://github.com/vtex-sites/nextjs.store/issues/254)) ([c35ddd9](https://github.com/vtex-sites/nextjs.store/commit/c35ddd9b9b32c11e765680cf8bdadb5a948f2462))
-
-## [22.37.0](https://github.com/vtex-sites/nextjs.store/compare/22.36.9...22.37.0) (2022-09-16)
-
-### Features
-
-- Fire `view_cart` event when the minicart is opened ([#247](https://github.com/vtex-sites/nextjs.store/issues/247)) ([b9c2f61](https://github.com/vtex-sites/nextjs.store/commit/b9c2f6190368d9c4200e13b697a842fce7221378))
-
-### [22.36.9](https://github.com/vtex-sites/nextjs.store/compare/22.36.8...22.36.9) (2022-09-16)
-
-### Bug Fixes
-
-- A regression with CLS on the Home page ([#251](https://github.com/vtex-sites/nextjs.store/issues/251)) ([85bb9ce](https://github.com/vtex-sites/nextjs.store/commit/85bb9ce0b85f9ca2045a73acb5cb24857ba794f7))
-
-### [22.36.8](https://github.com/vtex-sites/nextjs.store/compare/22.36.7...22.36.8) (2022-09-15)
-
-### Bug Fixes
-
-- `ShippingSimulation` tokens ([#250](https://github.com/vtex-sites/nextjs.store/issues/250)) ([d2fddf2](https://github.com/vtex-sites/nextjs.store/commit/d2fddf2c16df1bb69a29eaecfaaec148168b9df3))
-
-### [22.36.7](https://github.com/vtex-sites/nextjs.store/compare/22.36.6...22.36.7) (2022-09-15)
-
-### Bug Fixes
-
-- Product Details Grid ([#236](https://github.com/vtex-sites/nextjs.store/issues/236)) ([61970cc](https://github.com/vtex-sites/nextjs.store/commit/61970cc64aacc60f1d1ca042ef0e2db16bffb438))
-
-### [22.36.6](https://github.com/vtex-sites/nextjs.store/compare/22.36.5...22.36.6) (2022-09-14)
-
-### Bug Fixes
-
-- `view_item_list` event being fired without products ([#242](https://github.com/vtex-sites/nextjs.store/issues/242)) ([5bb098b](https://github.com/vtex-sites/nextjs.store/commit/5bb098b900596f3aaec77a4d1137adc90c1d767a))
-
-### [22.36.5](https://github.com/vtex-sites/nextjs.store/compare/22.36.4...22.36.5) (2022-09-13)
-
-### Refactoring
-
-- Extract `SkuSelector` component to `@faststore/ui` ([#240](https://github.com/vtex-sites/nextjs.store/issues/240)) ([b446979](https://github.com/vtex-sites/nextjs.store/commit/b446979695f4eb0aa952d500bb2cae4ccfd8bf28))
-
-### [22.36.4](https://github.com/vtex-sites/nextjs.store/compare/22.36.3...22.36.4) (2022-09-13)
-
-### [22.36.3](https://github.com/vtex-sites/nextjs.store/compare/22.36.2...22.36.3) (2022-09-13)
-
-### [22.36.2](https://github.com/vtex-sites/nextjs.store/compare/22.36.1...22.36.2) (2022-09-12)
-
-### Refactoring
-
-- Extract `CartItem` from the starter to `@faststore/ui` ([#239](https://github.com/vtex-sites/nextjs.store/issues/239)) ([0319076](https://github.com/vtex-sites/nextjs.store/commit/0319076f0dd99b5d4757dd61ce64659ad9d86792))
-
-### [22.36.1](https://github.com/vtex-sites/nextjs.store/compare/22.36.0...22.36.1) (2022-09-12)
-
-### Chores
-
-- move OrderSummary to FastStore UI ([#238](https://github.com/vtex-sites/nextjs.store/issues/238)) ([055ff8b](https://github.com/vtex-sites/nextjs.store/commit/055ff8b308adc63587661f379927e276e23cca8c))
-
-## [22.36.0](https://github.com/vtex-sites/nextjs.store/compare/22.35.3...22.36.0) (2022-09-06)
-
-### Features
-
-- Adds `Gift` component ([#234](https://github.com/vtex-sites/nextjs.store/issues/234)) ([ef78f5d](https://github.com/vtex-sites/nextjs.store/commit/ef78f5d78d29d4ece856c0cb4fdcfa16853e3d75))
-
-### [22.35.3](https://github.com/vtex-sites/nextjs.store/compare/22.35.2...22.35.3) (2022-09-02)
-
-### Chores
-
-- Adds props description - Hero documentation (Storybook) ([#229](https://github.com/vtex-sites/nextjs.store/issues/229)) ([8a452b8](https://github.com/vtex-sites/nextjs.store/commit/8a452b8fcf5df65b849d5aa4ae9da2c2ec31a403))
-
-### [22.35.2](https://github.com/vtex-sites/nextjs.store/compare/22.35.1...22.35.2) (2022-08-31)
-
-### Bug Fixes
-
-- Navigation links on mobile not being clickable ([#224](https://github.com/vtex-sites/nextjs.store/issues/224)) ([6c3f85f](https://github.com/vtex-sites/nextjs.store/commit/6c3f85f0228e6a63e95f6a43578d76c3b475c594))
-
-### [22.35.1](https://github.com/vtex-sites/nextjs.store/compare/22.35.0...22.35.1) (2022-08-30)
-
-### Chores
-
-- Revisit `Hero` documentation (Storybook) ([#217](https://github.com/vtex-sites/nextjs.store/issues/217)) ([397046f](https://github.com/vtex-sites/nextjs.store/commit/397046f94bd2e38181a3aeef572338d65cb0eb99))
-
-## [22.35.0](https://github.com/vtex-sites/nextjs.store/compare/22.34.8...22.35.0) (2022-08-29)
-
-### Features
-
-- Cart with session info ([#218](https://github.com/vtex-sites/nextjs.store/issues/218)) ([0f56058](https://github.com/vtex-sites/nextjs.store/commit/0f5605826840839c3091e91daf428b10a7ea9081))
-
-### [22.34.8](https://github.com/vtex-sites/nextjs.store/compare/22.34.7...22.34.8) (2022-08-23)
-
-### [22.34.7](https://github.com/vtex-sites/nextjs.store/compare/22.34.6...22.34.7) (2022-08-22)
-
-### Chores
-
-- Include `Button` with only an icon on Storybook ([#213](https://github.com/vtex-sites/nextjs.store/issues/213)) ([7def16b](https://github.com/vtex-sites/nextjs.store/commit/7def16b27230ed01cbd7784ebd5105810131144f))
-
-### [22.34.6](https://github.com/vtex-sites/nextjs.store/compare/22.34.5...22.34.6) (2022-08-19)
-
-### Bug Fixes
-
-- Fix cms config ([#214](https://github.com/vtex-sites/nextjs.store/issues/214)) ([46f7b7e](https://github.com/vtex-sites/nextjs.store/commit/46f7b7eb2b1e87e46a8bf6b2a5509ecc674beda7))
-
-### [22.34.5](https://github.com/vtex-sites/nextjs.store/compare/22.34.4...22.34.5) (2022-08-19)
-
-### Features
-
-- integrate with client-cms ([#205](https://github.com/vtex-sites/nextjs.store/issues/205)) ([edb1139](https://github.com/vtex-sites/nextjs.store/commit/edb113942b1163875b4c2d97d7cd88b85c42fbfe))
-
-### [22.34.4](https://github.com/vtex-sites/nextjs.store/compare/22.34.3...22.34.4) (2022-08-19)
-
-### Chores
-
-- Renames/Updates breakpoints tokens ([#209](https://github.com/vtex-sites/nextjs.store/issues/209)) ([10f8865](https://github.com/vtex-sites/nextjs.store/commit/10f88651df7778d2012791d3e70bc1ae048c001e))
-
-### [22.34.3](https://github.com/vtex-sites/nextjs.store/compare/22.34.2...22.34.3) (2022-08-19)
-
-### Bug Fixes
-
-- Display `SearchDropdown` correctly ([#212](https://github.com/vtex-sites/nextjs.store/issues/212)) ([33667f8](https://github.com/vtex-sites/nextjs.store/commit/33667f83807639456e08088b84e55fc2295449ed))
-
-### [22.34.2](https://github.com/vtex-sites/nextjs.store/compare/22.34.1...22.34.2) (2022-08-19)
-
-### Chores
-
-- Renames/Updates border tokens ([#208](https://github.com/vtex-sites/nextjs.store/issues/208)) ([0d4928f](https://github.com/vtex-sites/nextjs.store/commit/0d4928fa821b9d77d2fd3318a228310bef89f03a))
-
-### [22.34.1](https://github.com/vtex-sites/nextjs.store/compare/22.34.0...22.34.1) (2022-08-16)
-
-### Features
-
-- [Refinements] Creates `ShippingSimulation` ([#183](https://github.com/vtex-sites/nextjs.store/issues/183)) ([35aca51](https://github.com/vtex-sites/nextjs.store/commit/35aca51bbc3c1a85b3bb08a69ea47fd4cda069a7))
-
-## [22.34.0](https://github.com/vtex-sites/nextjs.store/compare/22.33.0...22.34.0) (2022-08-16)
-
-### Features
-
-- Add new tokens to `SkuSelector` ([#202](https://github.com/vtex-sites/nextjs.store/issues/202)) ([78f3221](https://github.com/vtex-sites/nextjs.store/commit/78f3221bd14c4bbffbc7fb2a9c0bf3be33a67cf3))
-
-## [22.33.0](https://github.com/vtex-sites/nextjs.store/compare/22.32.1...22.33.0) (2022-08-15)
-
-### Features
-
-- Product releaseDate ([#207](https://github.com/vtex-sites/nextjs.store/issues/207)) ([4d32208](https://github.com/vtex-sites/nextjs.store/commit/4d32208813e0e8c00656a4a9b3fa50297b07b9a9))
-
-### [22.32.1](https://github.com/vtex-sites/nextjs.store/compare/22.32.0...22.32.1) (2022-08-15)
-
-### Chores
-
-- Adds `InputText` documentation to storybook ([#203](https://github.com/vtex-sites/nextjs.store/issues/203)) ([b6c3ba6](https://github.com/vtex-sites/nextjs.store/commit/b6c3ba6b468338954caa8d09820465aacc20a3cf))
-
-## [22.32.0](https://github.com/vtex-sites/nextjs.store/compare/22.31.2...22.32.0) (2022-08-12)
-
-### Features
-
-- Handles `OutOfStock` error message through `InputText`'s `error` prop ([#200](https://github.com/vtex-sites/nextjs.store/issues/200)) ([1e81207](https://github.com/vtex-sites/nextjs.store/commit/1e81207bfd165d7140aefd1e029a10e631e198b8))
-
-### [22.31.2](https://github.com/vtex-sites/nextjs.store/compare/22.31.1...22.31.2) (2022-08-10)
-
-### Bug Fixes
-
-- Cart promotions & more ([#201](https://github.com/vtex-sites/nextjs.store/issues/201)) ([e4c3b5b](https://github.com/vtex-sites/nextjs.store/commit/e4c3b5b85d5269a442a1f7d86fb10aba7a7e3f16))
-
-### [22.31.1](https://github.com/vtex-sites/nextjs.store/compare/22.31.0...22.31.1) (2022-08-09)
-
-### Features
-
-- Refinements on `Navbar` and `Navlinks` ([#191](https://github.com/vtex-sites/nextjs.store/issues/191)) ([f950d19](https://github.com/vtex-sites/nextjs.store/commit/f950d1987e0ee212f5cec8391798e120b82a62e5))
-
-## [22.31.0](https://github.com/vtex-sites/nextjs.store/compare/22.30.1...22.31.0) (2022-08-08)
-
-### Features
-
-- Add new tokens to `SearchInput` [FS-496] ([#189](https://github.com/vtex-sites/nextjs.store/issues/189)) ([f682090](https://github.com/vtex-sites/nextjs.store/commit/f682090dc7102cba6ee37bd38c66b88f332e805d))
-
-### [22.30.1](https://github.com/vtex-sites/nextjs.store/compare/22.30.0...22.30.1) (2022-08-04)
-
-### Refactoring
-
-- Import `Tiles` & `Tile` components from `@faststore/ui` ([#185](https://github.com/vtex-sites/nextjs.store/issues/185)) ([491ed3d](https://github.com/vtex-sites/nextjs.store/commit/491ed3dbfe4c8b8b3109078591c5f7fe36a37cb1))
-
-## [22.30.0](https://github.com/vtex-sites/nextjs.store/compare/22.29.3...22.30.0) (2022-08-04)
-
-### Features
-
-- Working `SkuSelector` component ([#158](https://github.com/vtex-sites/nextjs.store/issues/158)) ([1853f57](https://github.com/vtex-sites/nextjs.store/commit/1853f5750ea5c54e1afb225126dec8f4469da331))
-
-### [22.29.3](https://github.com/vtex-sites/nextjs.store/compare/22.29.2...22.29.3) (2022-08-04)
-
-### Chores
-
-- Updates `BannerText` content example ([#198](https://github.com/vtex-sites/nextjs.store/issues/198)) ([9501aee](https://github.com/vtex-sites/nextjs.store/commit/9501aeef875b5ca0f6dfd960841b2adf71c65d54))
-
-### [22.29.2](https://github.com/vtex-sites/nextjs.store/compare/22.29.1...22.29.2) (2022-08-03)
-
-### Bug Fixes
-
-- Avoids performing the search when user abandons the query ([#193](https://github.com/vtex-sites/nextjs.store/issues/193)) ([a5be6cd](https://github.com/vtex-sites/nextjs.store/commit/a5be6cd7a0abcaaab388b7531c79cc0c8160e81f))
-
-### 22.29.1 (2022-08-03)
-
-### Bug Fixes
-
-- Attempt to fix automated changelog update ([#195](https://github.com/vtex-sites/nextjs.store/issues/195)) ([0d8e616](https://github.com/vtex-sites/nextjs.store/commit/0d8e61665811c03f99b0a03dd49e96f57ed489e4))
-- Attempt to fix the automated changelog update ([#196](https://github.com/vtex-sites/nextjs.store/issues/196)) ([c4b6091](https://github.com/vtex-sites/nextjs.store/commit/c4b609130bbeac5c7cd769814bcb76d49121f51e)), closes [/github.com/vtex-sites/gatsby.store/blob/8d1b1a5d668b11578784c29a9b257c78c86a1a65/.github/workflows/release.yml#L24-L29](https://github.com/vtex-sites//github.com/vtex-sites/gatsby.store/blob/8d1b1a5d668b11578784c29a9b257c78c86a1a65/.github/workflows/release.yml/issues/L24-L29)
-
-### Features
-
-- Applies new local tokens to `Skeleton` and its related components ([#171](https://github.com/vtex-sites/nextjs.store/pull/171))
-- The `useNewsletter` hook ([#154](https://github.com/vtex-sites/nextjs.store/pull/154))
-- Creates Themes doc pages on storybook ([#175](https://github.com/vtex-sites/nextjs.store/pull/175))
-- Applies new local tokens to `SearchHistory`, `SearchTop`, `SearchDropdown` and `SearchSuggestions` ([#173](https://github.com/vtex-sites/nextjs.store/pull/173))
-- Added a new theme for testing purposes called midnight ([#119](https://github.com/vtex-sites/nextjs.store/pull/119))
-- Extracted all BaseStore visual to a new theme called soft-blue ([#119](https://github.com/vtex-sites/nextjs.store/pull/119))
-- Applies CSS Modules to `Incentives` ([#155](https://github.com/vtex-sites/nextjs.store/pull/155))
-- Applies new local tokens to `Footer` ([#155](https://github.com/vtex-sites/nextjs.store/pull/155))
-- Adds [MSW Addon](https://storybook.js.org/addons/msw-storybook-addon) ([#166](https://github.com/vtex-sites/nextjs.store/pull/166))
-- Applies new local tokens to `Breadcrumb` ([#162](https://github.com/vtex-sites/nextjs.store/pull/162))
-- Applies new local tokens to `SlideOver` ([#145](https://github.com/vtex-sites/nextjs.store/pull/145))
-- Applies new local tokens to `CartSidebar` ([#145](https://github.com/vtex-sites/nextjs.store/pull/145))
-- Global tokens doc page on storybook ([#147](https://github.com/vtex-sites/nextjs.store/pull/147))
-- Adds [bun](https://bun.sh/) compatiblity ([#164](https://github.com/vtex-sites/nextjs.store/pull/164))
-- Uses new cross selling API on PDP ([#159](https://github.com/vtex-sites/nextjs.store/pull/159))
-- Applies new local tokens to `SuggestionProductCard` ([#151](https://github.com/vtex-sites/nextjs.store/pull/151))
-
-### Bug Fixes
-
-- priceCurrency field on SEO meta data ([#161](https://github.com/vtex-sites/nextjs.store/pull/161))
-- Transfers responsibility of `InputText`'s main attributes and callbacks to the renderer ([#163](https://github.com/vtex-sites/nextjs.store/pull/163))
-
-### Chores
-
-- `ButtonIcon` component ([#181](https://github.com/vtex-sites/nextjs.store/pull/181))
-
-### Refactoring
-
-- Cypress version from 9.5.4 to 9.6.0 to match WebOps' ([#182](https://github.com/vtex-sites/nextjs.store/pull/182))
-- Removes Themes dependencies ([#175](https://github.com/vtex-sites/nextjs.store/pull/175))
-- Renames and refactors the components of Search feature ([#173](https://github.com/vtex-sites/nextjs.store/pull/173))
-- A flaky PLP infinite scroll test to be more stable ([#180](https://github.com/vtex-sites/nextjs.store/pull/180))
-- Cypress version from 6.6.0 to 9.5.4 to match WebOps' ([#177](https://github.com/vtex-sites/nextjs.store/pull/177))
-- Updates global tokens to follow Brandless approach ([#119](https://github.com/vtex-sites/nextjs.store/pull/119))
-- Sync `ModalProps` children between starters ([#169](https://github.com/vtex-sites/nextjs.store/pull/169))
-- Updates `IncentivesFooter` content ([#155](https://github.com/vtex-sites/nextjs.store/pull/155))
-- Updated Getting Started doc page and overall improvements ([#147](https://github.com/vtex-sites/nextjs.store/pull/147))
-- Fix storybook mock structure ([#156](https://github.com/vtex-sites/nextjs.store/pull/156))
-
-## [22.26.0.beta] - 2022-07-01
-
-### Added
-
-- Applies new local tokens to `Navbar` ([#142](https://github.com/vtex-sites/nextjs.store/pull/142))
-- Applies new local tokens to `Filter` ([#139](https://github.com/vtex-sites/nextjs.store/pull/139))
-- Applies new local tokens to `Tiles` ([#134](https://github.com/vtex-sites/nextjs.store/pull/134))
-- Applies new local tokens to `ProductGrid` ([#144](https://github.com/vtex-sites/nextjs.store/pull/144))
-- Applies new local tokens to `Accordion` ([#130](https://github.com/vtex-sites/nextjs.store/pull/130))
-- Applies new local tokens to `ImageGallery` ([#143](https://github.com/vtex-sites/nextjs.store/pull/143))
-- Creates Doc page for `Regionalization` Feature ([#110](https://github.com/vtex-sites/nextjs.store/pull/110))
-- Applies new local tokens to `RegionalizationBar` ([#104](https://github.com/vtex-sites/nextjs.store/pull/104))
-- Applies new local tokens to `Modal` and `RegionalizationModal` ([#128](https://github.com/vtex-sites/nextjs.store/pull/128))
-- PriceRange component ([#124](https://github.com/vtex-sites/nextjs.store/pull/124))
-- PriceRange component to PLP and StoryBook ([#121](https://github.com/vtex-sites/nextjs.store/pull/121))
-- Displays the `Sandbox` tab on the storybook along with `Viewport` toolbar and `Accessibility` checks ([#129](https://github.com/vtex-sites/nextjs.store/pull/129))
-- The search input now includes the last 4 previously searched terms (`SearchHistory`) ([#112](https://github.com/vtex-sites/nextjs.store/pull/112)).
-- The top 5 searches (`SuggestionsTopSearch`) are now integrated into the search input ([#112](https://github.com/vtex-sites/nextjs.store/pull/112)).
-- Applies new local tokens to `EmptyState` ([#122](https://github.com/vtex-sites/nextjs.store/pull/122))
-- Applies new local tokens to `Dropdown` ([#118](https://github.com/vtex-sites/nextjs.store/pull/118))
-- Creates and styles `Dropdown` component ([#118](https://github.com/vtex-sites/nextjs.store/pull/118))
-- 301 redirects when visiting old VTEX product routes ([#93](https://github.com/vtex-sites/nextjs.store/pull/93))
-- Support for the new type definitions from React 18 ([#113](https://github.com/vtex-sites/nextjs.store/pull/113)).
-
-### Changed
-
-- Updates `facets` breakpoints tokens ([#150](https://github.com/vtex-sites/nextjs.store/pull/150))
-- Move logo's svg code from JS into static asset ([#135](https://github.com/vtex-sites/nextjs.store/pull/135))
-- Upgrade dependencies ([#131](https://github.com/vtex-sites/nextjs.store/pull/131))
-- Uses `[data-fs-dropdown-button]` instead of `[data-store-dropdown-button]` to select `DropdownButton` on breadcrumb stylesheet ([#123](https://github.com/vtex-sites/nextjs.store/pull/123))
-- Replaces `EmptyState` Related Components with Use Cases section on storybook ([#126](https://github.com/vtex-sites/nextjs.store/pull/126))
-- Tweaks `EmptyState` token name ([#125](https://github.com/vtex-sites/nextjs.store/pull/125))
-- Storybook's version from 6.4.20 to 6.5.9 ([#120](https://github.com/vtex-sites/nextjs.store/pull/120))
-- Unifies `Link` component usage by adding support for both external and client-side links ([#117](https://github.com/vtex-sites/nextjs.store/pull/117))
-
-### Fixed
-
-- `ImageGallerySelector` scroll that isn't working on Safari ([##132](https://github.com/vtex-sites/nextjs.store/pull/#132))
-- Some console errors when running the storybook ([#129](https://github.com/vtex-sites/nextjs.store/pull/129))
-- The search input's dropdown not closing when a suggested product was selected ([#112](https://github.com/vtex-sites/nextjs.store/pull/112).
-- Status code when error occurs (404/500) ([#116](https://github.com/vtex-sites/nextjs.store/pull/116))
-
-## [22.23.0.beta] - 2022-06-10
-
-### Added
-
-- Creates new Storybook section `BestPractices` ([#101](https://github.com/vtex-sites/nextjs.store/pull/101))
-- Applies new local tokens to `OutOfStock` ([#97](https://github.com/vtex-sites/nextjs.store/pull/97))
-- Applies new local tokens to `CartItem` ([#102](https://github.com/vtex-sites/nextjs.store/pull/102))
-- Applies new local tokens to `ProductTitle` ([#84](https://github.com/vtex-sites/nextjs.store/pull/84))
-- Applies new local tokens to `Alert` ([#94](https://github.com/vtex-sites/nextjs.store/pull/94))
-- Applies new local tokens to `Price` ([#80](https://github.com/vtex-sites/nextjs.store/pull/80))
-- Creates `Radio` component ([#87](https://github.com/vtex-sites/nextjs.store/pull/87))
-- Add Storybook documentation for `QuantitySelector` component ([#81](https://github.com/vtex-sites/nextjs.store/pull/81))
-- Applies new local tokens to `Checkbox` ([#59](https://github.com/vtex-sites/nextjs.store/pull/59))
-- Applies new local tokens to `Incentives` ([#56](https://github.com/vtex-sites/nextjs.store/pull/56))
-- Adds tests for analytics events on `CartItem` ([#66](https://github.com/vtex-sites/nextjs.store/pull/66))
-- additionalProperty to CartItem id ([#47](https://github.com/vtex-sites/nextjs.store/pull/47))
-- Applies new local tokens to `Link` ([#17](https://github.com/vtex-sites/nextjs.store/pull/17))
-- Applies new local tokens to `Select` ([#16](https://github.com/vtex-sites/nextjs.store/pull/16))
-- `Toggle` component ([#15](https://github.com/vtex-sites/nextjs.store/pull/15))
-- Break into new tasks the `useQuery` fetcher execution ([#45](https://github.com/vtex-sites/nextjs.store/pull/45))
-- Suspend queries in the `ButtonSignIn`, `ProductShelf` and `ProductTiles` ([#45](https://github.com/vtex-sites/nextjs.store/pull/45))
-- Uses new WebOps Incremental Static Builds ([#39](https://github.com/vtex-sites/nextjs.store/pull/39))
-- An initial integration of the search term & product suggestions ([#33](https://github.com/vtex-sites/nextjs.store/pull/33)).
-- `ImageGallery` to PDP ([#6](https://github.com/vtex-sites/nextjs.store/pull/6))
-- `add_to_cart` and `remove_from_cart` analytics events to `CartItem` ([#35](https://github.com/vtex-sites/nextjs.store/pull/35))
-- `ButtonSignInFallback` component ([#45](https://github.com/vtex-sites/nextjs.store/pull/45))
-
-### Changed
-
-- `SearchHistory`, `Suggestions`, and `SuggestionsTopSearch` components to reuse shared markup and styles ([#86](https://github.com/vtex-sites/nextjs.store/pull/86)).
-- Removed CSS Modules for the components `SuggestionProductCard` and `Suggestions` for now so they match what's currently on the Gatsby starter. It will be added again later ([#86](https://github.com/vtex-sites/nextjs.store/pull/86)).
-- Merges UIProvider and ModalProvider into a single context provider ([#100](https://github.com/vtex-sites/nextjs.store/pull/100))
-- Synchronizes the components' code of both starters ([#103](https://github.com/vtex-sites/nextjs.store/pull/103))
-- Uses `--docs` option on storybook script ([#107](https://github.com/vtex-sites/nextjs.store/pull/107))
-- Improves storybook doc's table rows ([#106](https://github.com/vtex-sites/nextjs.store/pull/106))
-- Changes weird if logic in suspense hooks ([#96](https://github.com/vtex-sites/nextjs.store/pull/96))
-- Adjust `Alert` component for `CMS` ([#31](https://github.com/vtex-sites/nextjs.store/pull/31))
-- Refactors `Button` component and adds Storybook doc ([#99](https://github.com/vtex-sites/nextjs.store/pull/99))
-- Uses `Hero` component from FSUI ([#98](https://github.com/vtex-sites/nextjs.store/pull/98))
-- Change Storybook prop descriptions for `QuantitySelector` component ([#92](https://github.com/vtex-sites/nextjs.store/pull/92))
-- Applied styles to `Toast` using CSS Modules ([#82](https://github.com/vtex-sites/nextjs.store/pull/82))
-- Tweaks CSS Modules pattern on `Checkbox` component [#79](https://github.com/vtex-sites/nextjs.store/pull/79)
-- Uses CSS Modules on `ProductCard` component [#61](https://github.com/vtex-sites/nextjs.store/pull/61)
-- Uses CSS Modules on `ProductGrid` component [#61](https://github.com/vtex-sites/nextjs.store/pull/61)
-- Uses CSS Modules on `QuantitySelector` component [#76](https://github.com/vtex-sites/nextjs.store/pull/76)
-- Added base files (`Getting Started`, `Theming`, `Colors`, `Typography` and `Icons`) to Storybook ([#67](https://github.com/vtex-sites/nextjs.store/pull/67))
-- Updated tokens' naming scheme ([#67](https://github.com/vtex-sites/nextjs.store/pull/67))
-- `OutOfStock` component ([#72](https://github.com/vtex-sites/nextjs.store/pull/72))
-- Displays 5 products on product suggestion for better mobile experience ([#74](https://github.com/vtex-sites/nextjs.store/pull/74))
-- LCP images to be fetched with a higher priority and improve the score ([#49](https://github.com/vtex-sites/nextjs.store/pull/49)).
-- Uses `ProductCard` component from FSUI instead of `Card` ([#41](https://github.com/vtex-sites/nextjs.store/pull/41))
-- `EmptyState` component to be customized with a rounded `variant` prop (`default` | `rounded`) ([#11](https://github.com/vtex-sites/nextjs.store/pull/11)).
-- Uses camelCase classes when using CSS Modules ([#42](https://github.com/vtex-sites/nextjs.store/pull/42))
-- `ImageGallery` now uses native scroll instead of `useSlider` ([#6](https://github.com/vtex-sites/nextjs.store/pull/6))
-
-### Removed
-
-- Removes unnecessary logic in suspense hooks ([#96](https://github.com/vtex-sites/nextjs.store/pull/96))
-- `Hero` component from `components/ui` ([#98](https://github.com/vtex-sites/nextjs.store/pull/98))
-- Unused `-default` at css variables ([#78](https://github.com/vtex-sites/nextjs.store/pull/78))
-- The `default` nomenclature from global tokens ([#51](https://github.com/vtex-sites/nextjs.store/pull/51))
-
-### Fixed
-
-- Use `SpotPrice` for low/high price on `aggretateOffer` ([#111](https://github.com/vtex-sites/nextjs.store/pull/111))
-- Fix Region Input's behavior when setting zipCode ([#108](https://github.com/vtex-sites/nextjs.store/pull/108))
-- Lighthouse complaining about missing robots.txt ([#89](https://github.com/vtex-sites/nextjs.store/pull/89))
-- Fix 404 being returned for existing pages when the server fails to fetch data ([#88](https://github.com/vtex-sites/nextjs.store/pull/88))
-- Search suggestions missing locale info ([#71](https://github.com/vtex-sites/nextjs.store/pull/71))
-- Limit custom props only for `img` and `link` tags ([#60](https://github.com/vtex-sites/nextjs.store/pull/60))
-- Warning related to `fetchPriority` prop not being recognized as `img` and `link`'s prop ([#54](https://github.com/vtex-sites/nextjs.store/pull/54))
-- Error on Storybook build when trying to import base CSS styles/mixins in CSS module files ([#53](https://github.com/vtex-sites/nextjs.store/pull/53))
-- A missing gap between the Sign In link and Cart button on desktop ([#11](https://github.com/vtex-sites/nextjs.store/pull/11)).
-- A bugged vertical gap with the `EmptyState` component inside the cart ([#11](https://github.com/vtex-sites/nextjs.store/pull/11)).
-- Fixes Storybook build removing unused imports ([#40](https://github.com/vtex-sites/nextjs.store/pull/40))
-
-## [22.19.0.beta] - 2022-05-06
-
-### Added
-
-- Applies new local tokens to `Input Text` ([#15](https://github.com/vtex-sites/nextjs.store/pull/14))
-- New items to the checklist of the `pull_request_template.md` ([#4](https://github.com/vtex-sites/nextjs.store/pull/4))
-- Integrates with search.query event api ([#2](https://www.github.com/vtex-sites/nextjs.store/pull/2))
-- Applies new local tokens to `Badge` ([#462](https://www.github.com/vtex-sites/base.store/pull/462))
-- Applies new local tokens to `Hero` ([#435](https://www.github.com/vtex-sites/base.store/pull/435))
-- Applies new local tokens to `Quantity Selector` ([#448](https://www.github.com/vtex-sites/base.store/pull/448))
-
-### Changed
-
-- Renames `Badge` component prop `interactive` to `actionable` ([#20](https://github.com/vtex-sites/nextjs.store/pull/20))
-- Accessibility tests to output what were the actual violations, not just how many ([#12](https://github.com/vtex-sites/nextjs.store/pull/12)).
-- Changed name from BaseStore to GatsbyStore ([#497](https://github.com/vtex-sites/base.store/pull/497))
-- `CHANGELOG.md` to link to PRs, removed a duplicated section, and fixed some markdown ([#13](https://github.com/vtex-sites/nextjs.store/pull/13))
-- Update Regionalization input to use the `TextInput` component ([#9](https://github.com/vtex-sites/nextjs.store/pull/9))
-- Update `RegionalizationButton` and `RegionalizationBar` to show the postal code ([#7](https://github.com/vtex-sites/nextjs.store/pull/7))
-- Migrates to Next.JS ([#475](https://www.github.com/vtex-sites/base.store/pull/475))
-- Applies new local tokens to `ProductShelf` component ([#464](https://www.github.com/vtex-sites/base.store/pull/464))
-- Adds Storybook configs ([#463](https://www.github.com/vtex-sites/base.store/pull/463))
-- Adds vtex search tracking script. With this we will populate TopSearches and Autocomplete indices ([#389](https://www.github.com/vtex-sites/base.store/pull/389))
-- Add `RegionalizationBar`, `RegionalizationButton` components and integrates it on Mobile and Desktop devices ([#424](https://www.github.com/vtex-sites/base.store/pull/424))
-- Applies new local tokens to `BannerText` ([#470](https://www.github.com/vtex-sites/base.store/pull/470))
-- Update the Incentives component to handle CMS data ([#474](https://www.github.com/vtex-sites/base.store/pull/474))
-
-### Deprecated
-
-### Removed
-
-- The GitHub Action that was running Lighthouse, as it was frequently failing and WebOps already runs it ([#484](https://www.github.com/vtex-sites/base.store/pull/484))
-- Removes CSS imports of components that are not being used ([#476](https://www.github.com/vtex-sites/base.store/pull/476))
-
-### Fixed
-
-- Fix `ImageGallerySelector` arrow toggle according to scroll position ([#43](https://github.com/vtex-sites/nextjs.store/pull/43))
-- Fixes `ProductCard` bordered variant ([#5](https://github.com/vtex-sites/nextjs.store/pull/5))
-- Fix Storybook initialization ([#492](https://www.github.com/vtex-sites/base.store/pull/492))
-- Fix styling issue on Regionalization Modal by adding the missing imports in layout.scss ([#488](https://www.github.com/vtex-sites/base.store/pull/488))
-- Fix unused CSS problem by separating imports into different files for each page ([#473](https://www.github.com/vtex-sites/base.store/pull/473))
-- Potential layout shift on Hero section fixed ([#472](https://www.github.com/vtex-sites/base.store/pull/472))
-- Fix layout section spacings style ([#469](https://www.github.com/vtex-sites/base.store/pull/469))
-
-### Security
-
-## [0.2.2] - 2022-04-07
-
-### Added
-
-- Add `InputText` component ([#440](https://www.github.com/vtex-sites/base.store/pull/440))
-
-### Changed
-
-- Enable Stylelint for some files and apply the rules after the Theme structure ([#430](https://www.github.com/vtex-sites/base.store/pull/430))
-- Upgrades to React18 ([#461](https://www.github.com/vtex-sites/base.store/pull/461))
-- Uses new Automatic JSX runtime ([#460](https://www.github.com/vtex-sites/base.store/pull/460))
-- Migrates Gatsby config files to TypeScript ([#373](https://www.github.com/vtex-sites/base.store/pull/373))
-- Migrates to Gatsby v4 ([#456](https://www.github.com/vtex-sites/base.store/pull/456))
-- Reduces the padding of `Breadcrumb`component ([#453](https://www.github.com/vtex-sites/base.store/pull/453))
-
-### Fixed
-
-- Fix `SlideOver` scroll background behavior ([#420](https://www.github.com/vtex-sites/base.store/pull/420))
-- `SearchInput` margin left on mobile ([#457](https://www.github.com/vtex-sites/base.store/pull/457))
-- Fixed BaseStore logo right margin on mobile devices ([#455](https://www.github.com/vtex-sites/base.store/pull/455))
-- Fix PLP scroll bug after applying filters for the mobile version ([#454](https://www.github.com/vtex-sites/base.store/pull/454))
-
-## [0.2.1] - 2022-04-04
-
-### Added
-
-- `RegionalizationModal` component ([#426](https://www.github.com/vtex-sites/base.store/pull/426))
-- Add preloadQuery function ([#445](https://www.github.com/vtex-sites/base.store/pull/445))
-- New file `styles/global/tokens.scss` containing all global design tokens. ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
-- Send channel string as search facet ([#428](https://www.github.com/vtex-sites/base.store/pull/428))
-- Add the brand new BaseStore logo ([#447](https://www.github.com/vtex-sites/base.store/pull/447))
-- Add `Dropdown` component in `Breadcrumb` component ([#436](https://www.github.com/vtex-sites/base.store/pull/436))
-
-### Changed
-
-- Replaces `onDismissTransition` callback by a Provider that handles opening/closing of modal/slide over's behavior ([#426](https://www.github.com/vtex-sites/base.store/pull/426))
-- `OutOfStock` integrated with regionalization ([#441](https://www.github.com/vtex-sites/base.store/pull/441))
-- Move ProductShelf and ProductTiles to the client side ([#431](https://www.github.com/vtex-sites/base.store/pull/431))
-- Drop gatsby-plugin-image in favor of custom/simpler component ([#401](https://www.github.com/vtex-sites/base.store/pull/401))
-- Replace `stylelint-config-rational-order` with `stylelint-config-recess-order` ([#415](https://www.github.com/vtex-sites/base.store/pull/415))
-- Simplify filters component by using `useReducer` instead of multiple `useState` ([#422](https://www.github.com/vtex-sites/base.store/pull/422))
-- Applies new local tokens to `ProductCard`. ([#425](https://www.github.com/vtex-sites/base.store/pull/425))
-- `OutOfStock` style and success message. ([#399](https://www.github.com/vtex-sites/base.store/pull/399))
-- Apply new local tokens to `Button` ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
-- Gather all `Button` variants in the folder (`ButtonBuy`, `ButtonLink`, `ButtonIcon`, `ButtonSignIn`) ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
-
-### Fixed
-
-- CSS Warnings ([#434](https://www.github.com/vtex-sites/base.store/pull/434))
-- Fix alert banner colors ([#442](https://www.github.com/vtex-sites/base.store/pull/442))
-
-## [0.2.0] - 2022-04-01
-
-### Added
-
-- Add hideUnavailableItems at store.config ([#400](https://www.github.com/vtex-sites/base.store/pull/400))
-- Sections component with `content-visibility: auto` ([#368](https://www.github.com/vtex-sites/base.store/pull/368))
-- Webpack Bundle analyzer ([#357](https://www.github.com/vtex-sites/base.store/pull/357))
-- `GatsbyLink` to `Link` ui component. ([#329](https://www.github.com/vtex-sites/base.store/pull/329))
-- `Skeleton` loading components. ([#317](https://www.github.com/vtex-sites/base.store/pull/317))
-- `SuggestionsTopSearch` component ([#355](https://www.github.com/vtex-sites/base.store/pull/355))
-- `PostalCodeInput` component and `usePostalCode` hook. ([#322](https://www.github.com/vtex-sites/base.store/pull/322))
-- `SuggestionProductCard` component. ([#359](https://www.github.com/vtex-sites/base.store/pull/359))
-- `EmptyState` component. ([#367](https://www.github.com/vtex-sites/base.store/pull/367))
-- `EmptyState` at the `ProductGallery` section. ([#367](https://www.github.com/vtex-sites/base.store/pull/367))
-- `IconSVG` component to load SVG Icons. ([#378](https://www.github.com/vtex-sites/base.store/pull/378))
-- `Suggestions` component. ([#372](https://www.github.com/vtex-sites/base.store/pull/372))
-- `SearchHistory` component. ([#391](https://www.github.com/vtex-sites/base.store/pull/391))
-- `Badge` interactive variation. ([#396](https://www.github.com/vtex-sites/base.store/pull/396))
-- New folder `styles/global` containing all global styles. ([#407](https://www.github.com/vtex-sites/base.store/pull/407))
-- Session mutation when the user enters a new postal code. ([#392](https://www.github.com/vtex-sites/base.store/pull/392))
-
-### Changed
-
-- Move inline styles to external stylesheet to improve TBT ([#408](https://www.github.com/vtex-sites/base.store/pull/408))
-- Changed ProductGallery and EmptyGallery styles to make the search results page ([#387](https://www.github.com/vtex-sites/base.store/pull/387))
-- Moved all icons to use Icon component ([#386](https://www.github.com/vtex-sites/base.store/pull/386))
-- Moved common/IconsSVG to ui/Icons ([#386](https://www.github.com/vtex-sites/base.store/pull/386))
-- Moved EmptyState from common to ui folder ([#386](https://www.github.com/vtex-sites/base.store/pull/386))
-- Removed fit-in property from image component ([#375](https://www.github.com/vtex-sites/base.store/pull/375))
-- Sections are now self-contained ([#371](https://www.github.com/vtex-sites/base.store/pull/371))
-- Moves icons to `/static/icons` folder ([#357](https://www.github.com/vtex-sites/base.store/pull/357))
-- Replaces page type redirects, a.k.a. `/account`, `/login` to a corresponding file in `/pages` folder ([#310](https://www.github.com/vtex-sites/base.store/pull/310))
-- Replaces `let` declarations for `useRef` for better React compatibility ([#319](https://www.github.com/vtex-sites/base.store/pull/319))
-- Refactors cart sidebar ([#325](https://www.github.com/vtex-sites/base.store/pull/325))
-- `BreadcrumbWrapper` from components/ui folder to `Breadcrumb` at components/sections ([#326](https://www.github.com/vtex-sites/base.store/pull/326))
-- Replace relative stylesheets imports with absolute path ([#349](https://www.github.com/vtex-sites/base.store/pull/349))
-- Moves some `Filter` component logic to the API ([#321](https://www.github.com/vtex-sites/base.store/pull/321))
-- `Sort` and `Button Filter` (Mobile) `Skeleton's` loading criteria ([#362](https://www.github.com/vtex-sites/base.store/pull/362))
-- Keep the latest `Filter` component state (Mobile) ([#362](https://www.github.com/vtex-sites/base.store/pull/362))
-- Implements the expanded mode of `Searchbar` in mobile devices. ([#369](https://www.github.com/vtex-sites/base.store/pull/369))
-- Updates Lighthouse and Cypress URL with valid product links ([#369](https://www.github.com/vtex-sites/base.store/pull/369))
-- `Hero` image responsive sizes for mobile and desktop. ([#363](https://www.github.com/vtex-sites/base.store/pull/363))
-- `Badge` variants names ([#381](https://www.github.com/vtex-sites/base.store/pull/381))
-- `Tiles` and `Tile` to use semantic list elements. ([#383](https://www.github.com/vtex-sites/base.store/pull/383))
-- `postalCode` from storage to Session context. ([#388](https://www.github.com/vtex-sites/base.store/pull/388))
-- Updates all tokens naming and simplifies the global styles. ([#407](https://www.github.com/vtex-sites/base.store/pull/407))
-- Changes `theme.scss` file to `global/tokens.scss`. ([#407](https://www.github.com/vtex-sites/base.store/pull/407))
-
-### Deprecated
-
-- useWindowDimensions hook ([#328](https://www.github.com/vtex-sites/base.store/pull/328))
-
-### Removed
-
-- Frontend computation in favor of backend processing ([#411](https://www.github.com/vtex-sites/base.store/pull/411))
-- Removing hooks folder and migrating these hooks to sdk ou inline them on components ([#377](https://www.github.com/vtex-sites/base.store/pull/377))
-- gatsby-plugin-offline due to CLS on recurrent users ([#348](https://www.github.com/vtex-sites/base.store/pull/348))
-- useWindowDimensions hook ([#340](https://www.github.com/vtex-sites/base.store/pull/340))
-- Removes unused ` ` component ([#345](https://www.github.com/vtex-sites/base.store/pull/345))
-- Unnecessary map at hooks ([#323](https://www.github.com/vtex-sites/base.store/pull/323))
-- API style redirects from `/_v/private/graphql` since they have no effect ([#310](https://www.github.com/vtex-sites/base.store/pull/310))
-- Display box from ` ` component ([#354](https://www.github.com/vtex-sites/base.store/pull/354))
-- `useTotalCount` hook ([#362](https://www.github.com/vtex-sites/base.store/pull/362))
-- Phosphor-react library ([#378](https://www.github.com/vtex-sites/base.store/pull/378))
-- `main::store::postalCode` value from storage. ([#388](https://www.github.com/vtex-sites/base.store/pull/388))
-
-### Fixed
-
-- Unnecessary app rerender after login feature ([#418](https://www.github.com/vtex-sites/base.store/pull/418))
-- Fix typos found across the codebase ([#412](https://www.github.com/vtex-sites/base.store/pull/412))
-- Fix border style for Product Card and its skeleton on mobile ([#379](https://www.github.com/vtex-sites/base.store/pull/379))
-- The divisor for the `Breadcrumb` component not rendering valid HTML. ([#365](https://www.github.com/vtex-sites/base.store/pull/365))
-- useBuyButton/useRemoveButton hooks with inconsistent typings/behaviors ([#360](https://www.github.com/vtex-sites/base.store/pull/360))
-- React tree re-rendering ([#328](https://www.github.com/vtex-sites/base.store/pull/328))
-- Footer rendering pipeline ([#328](https://www.github.com/vtex-sites/base.store/pull/328))
-- Scroll lock when transitioning pages on mobile via `SlideOver` component navigation ([#344](https://www.github.com/vtex-sites/base.store/pull/344))
-- Filter Button specificity on desktop ([#346](https://www.github.com/vtex-sites/base.store/pull/346))
-- Filter facets are not being selected on mobile ([#380](https://www.github.com/vtex-sites/base.store/pull/380))
-- `CartItem` image size and truncate long product's title ([#405](https://www.github.com/vtex-sites/base.store/pull/405))
-- Entrusting the definition of the cursor property to the browser ([#419](https://www.github.com/vtex-sites/base.store/pull/419))
-
-## [0.1.1] - 2022-02-07
-
-### Added
-
-- Feat: Style IconButton ([#290](https://www.github.com/vtex-sites/base.store/pull/290))
-
-### Changed
-
-- Chore: tweaks search page ([#293](https://www.github.com/vtex-sites/base.store/pull/293))
-- Extract UISelect from Sort to its own component ([#299](https://www.github.com/vtex-sites/base.store/pull/299))
-- Feat: lazy loading and improvements (CLS) ([#300](https://www.github.com/vtex-sites/base.store/pull/300))
-
-### Fixed
-
-- SonarQube warning ([#297](https://www.github.com/vtex-sites/base.store/pull/297))
-- General fixes on Beta component ([#287](https://www.github.com/vtex-sites/base.store/pull/287))
-- Fix/Adjust inappropriate rerenders ([#304](https://www.github.com/vtex-sites/base.store/pull/304))
-
-## [0.1.0] - 2022-02-01
-
-Version released for the Closed Beta
-
-### Added
-
-- This changelog
diff --git a/packages/core/README.md b/packages/core/README.md
index b652cf18bc..4f2afee9e2 100644
--- a/packages/core/README.md
+++ b/packages/core/README.md
@@ -52,7 +52,6 @@ A quick look at the top-level files and directories you'll see in a this NextJS
├── .stylelintignore
├── .gitignore
├── .eslintignore
- ├── CHANGELOG.md
├── codegen.ts
├── cypress
├── cypress.config.ts
diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md
deleted file mode 100644
index 6af6ce1347..0000000000
--- a/packages/eslint-config/CHANGELOG.md
+++ /dev/null
@@ -1,94 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/eslint-config
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/eslint-config
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/eslint-config
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
diff --git a/packages/graphql-utils/CHANGELOG.md b/packages/graphql-utils/CHANGELOG.md
deleted file mode 100644
index 994557544c..0000000000
--- a/packages/graphql-utils/CHANGELOG.md
+++ /dev/null
@@ -1,1360 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## [1.10.20](https://github.com/vtex/faststore/compare/v1.10.19...v1.10.20) (2022-07-22)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.10.4](https://github.com/vtex/faststore/compare/v1.10.3...v1.10.4) (2022-07-04)
-
-### Bug Fixes
-
-- @faststore/graphql-utils ([#1394](https://github.com/vtex/faststore/issues/1394)) ([ea4b483](https://github.com/vtex/faststore/commit/ea4b4832b25fe257d8c5c0c67bc09fb04dc693cf))
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 1.9.9 (2022-06-17)
-
-### Bug Fixes
-
-- add outdir to all tsconfig ([#1372](https://github.com/vtex/faststore/issues/1372)) ([8f847d9](https://github.com/vtex/faststore/commit/8f847d938b0ac66433a248bc77e77a21475b65db))
-- prettier format files ([#1369](https://github.com/vtex/faststore/issues/1369)) ([7f42ea9](https://github.com/vtex/faststore/commit/7f42ea913ee60333fe32434491f9be83c29a165d))
-
-## 1.9.8 (2022-06-17)
-
-### Features
-
-- lint ([#1368](https://github.com/vtex/faststore/issues/1368)) ([66ce99f](https://github.com/vtex/faststore/commit/66ce99f310ec593245e3937daea5ed813e1630e6))
-
-## 1.9.4 (2022-06-10)
-
-### Bug Fixes
-
-- codesandbox ci ([#1357](https://github.com/vtex/faststore/issues/1357)) ([db07e1f](https://github.com/vtex/faststore/commit/db07e1fb02f28b0f082c361cb2c28250a687b760))
-
-## 1.9.1 (2022-06-09)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 1.8.51 (2022-06-03)
-
-### Features
-
-- **UI:** Add Hero component ([#1336](https://github.com/vtex/faststore/issues/1336)) ([767c0cd](https://github.com/vtex/faststore/commit/767c0cdc5eaf6bd56020d64fd7718b1379c09390))
-
-## 1.8.49 (2022-05-31)
-
-### Bug Fixes
-
-- remove docs from build on codesandbox ([#1334](https://github.com/vtex/faststore/issues/1334)) ([c9eabde](https://github.com/vtex/faststore/commit/c9eabdea8d951d42a9b3898572719e1f45294b33))
-
-## 1.8.46 (2022-05-30)
-
-### Features
-
-- using cache ([#1330](https://github.com/vtex/faststore/issues/1330)) ([6f8a7a4](https://github.com/vtex/faststore/commit/6f8a7a4a593f7e82586d7e3d48f5254e011b8df6))
-
-## 1.8.45 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## [1.8.44](https://github.com/vtex/faststore/compare/v1.8.43...v1.8.44) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## [1.8.43](https://github.com/vtex/faststore/compare/v1.8.42...v1.8.43) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/graphql-utils
-
-## 1.8.42 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.41 (2022-05-30)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.40 (2022-05-30)
-
-### Bug Fixes
-
-- Cart item with additionalProperty ([#1325](https://github.com/vtex/faststore/issues/1325)) ([8fa6aa1](https://github.com/vtex/faststore/commit/8fa6aa1a88d3e3702a017e581cbcff4281c47f4f))
-
-## 1.8.39 (2022-05-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.38 (2022-05-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.37 (2022-05-27)
-
-### Bug Fixes
-
-- Increase NodeJS version ([#1323](https://github.com/vtex/faststore/issues/1323)) ([3a6fbe7](https://github.com/vtex/faststore/commit/3a6fbe7c230b7056582c783464bfb45cc5717bed))
-
-## 1.8.36 (2022-05-26)
-
-### Bug Fixes
-
-- Top searches ([#1321](https://github.com/vtex/faststore/issues/1321)) ([e2ab99d](https://github.com/vtex/faststore/commit/e2ab99d4f443e013f3fd024fc83bb612fcb27f41))
-
-## 1.8.35 (2022-05-26)
-
-### Features
-
-- Add OutOfStock component ([#1314](https://github.com/vtex/faststore/issues/1314)) ([37eac86](https://github.com/vtex/faststore/commit/37eac86ede448ef68aef426f65f2d224694b2cfc))
-
-## 1.8.34 (2022-05-25)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.33 (2022-05-24)
-
-### Features
-
-- useStorage update onFocus ([#1316](https://github.com/vtex/faststore/issues/1316)) ([c9874d4](https://github.com/vtex/faststore/commit/c9874d46a16a09159e6e1bd4da4e61ec25bd62d2))
-
-## 1.8.32 (2022-05-23)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.31 (2022-05-20)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.30 (2022-05-20)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.29 (2022-05-19)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.28 (2022-05-19)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.27 (2022-05-19)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.26 (2022-05-18)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.25 (2022-05-18)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.24 (2022-05-18)
-
-### Bug Fixes
-
-- Breadcrumb broken links ([#1306](https://github.com/vtex/faststore/issues/1306)) ([e1d74d4](https://github.com/vtex/faststore/commit/e1d74d49dc3f7cf90caa80e480a01346934c0d43))
-
-## 1.8.23 (2022-05-17)
-
-### Features
-
-- Sync Cart with Checkout ([#1299](https://github.com/vtex/faststore/issues/1299)) ([62e8f56](https://github.com/vtex/faststore/commit/62e8f56b31c6bb6cf7260749a90ebef8aba9982b))
-
-## 1.8.22 (2022-05-17)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.21 (2022-05-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.20 (2022-05-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.19 (2022-05-14)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.18 (2022-05-14)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.17 (2022-05-13)
-
-### Features
-
-- **UI:** Add `ProductCard` component ([#1272](https://github.com/vtex/faststore/issues/1272)) ([ea62210](https://github.com/vtex/faststore/commit/ea6221080da8b3538551f7a77df61a14d8de297d))
-
-## 1.8.16 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.15 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.14 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.13 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.12 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.11 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.10 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.9 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.8 (2022-05-11)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.7 (2022-05-11)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.6 (2022-05-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.5 (2022-05-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.4 (2022-05-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.2 (2022-05-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.8.1 (2022-05-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.55 (2022-05-06)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.54 (2022-05-06)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.53 (2022-05-06)
-
-### Bug Fixes
-
-- suggestions api url ([#1273](https://github.com/vtex/faststore/issues/1273)) ([6f8a961](https://github.com/vtex/faststore/commit/6f8a9613e4627f91815e669a007ec4ff4c54ffe5))
-
-## 1.7.52 (2022-05-06)
-
-### Bug Fixes
-
-- Release workflow ([#1271](https://github.com/vtex/faststore/issues/1271)) ([3b995a8](https://github.com/vtex/faststore/commit/3b995a82c956c13c4d6f9453ac4f44195c5ef543))
-
-## 1.7.51 (2022-05-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.50 (2022-05-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.49 (2022-05-02)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.48 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.47 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.46 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.45 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.44 (2022-04-28)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.43 (2022-04-28)
-
-### Bug Fixes
-
-- api schema ([#1254](https://github.com/vtex/faststore/issues/1254)) ([c901b3d](https://github.com/vtex/faststore/commit/c901b3db8e002558e14101339c817ca87db8f949))
-
-## 1.7.42 (2022-04-28)
-
-### Features
-
-- search suggestions ([#1198](https://github.com/vtex/faststore/issues/1198)) ([2b19413](https://github.com/vtex/faststore/commit/2b19413dd11249e4d967ac1c4c1aabdc3a8ec1bf))
-
-## 1.7.41 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.40 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.39 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.38 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.37 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.36 (2022-04-27)
-
-### Bug Fixes
-
-- **api:** Remove circular dependencies ([#1243](https://github.com/vtex/faststore/issues/1243)) ([e988621](https://github.com/vtex/faststore/commit/e988621c77b946e397ecc33b82be65b04fa119ec))
-
-## 1.7.35 (2022-04-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.34 (2022-04-25)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.33 (2022-04-25)
-
-### Bug Fixes
-
-- **api:** SearchResult send events ([#1242](https://github.com/vtex/faststore/issues/1242)) ([9cc7cc4](https://github.com/vtex/faststore/commit/9cc7cc4d55802ef0dc75e22d58c46da899674555))
-
-## 1.7.32 (2022-04-23)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.31 (2022-04-22)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.30 (2022-04-22)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.29 (2022-04-22)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.28 (2022-04-20)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.27 (2022-04-20)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.26 (2022-04-19)
-
-### Reverts
-
-- Revert "feat: Add url to events (#1174)" (#1228) ([67ec438](https://github.com/vtex/faststore/commit/67ec4386b876a4de08bfd96df5147efa958d5496)), closes [#1174](https://github.com/vtex/faststore/issues/1174) [#1228](https://github.com/vtex/faststore/issues/1228)
-
-## 1.7.25 (2022-04-19)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.24 (2022-04-18)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.23 (2022-04-18)
-
-### Features
-
-- Add url to events ([#1174](https://github.com/vtex/faststore/issues/1174)) ([0e2befe](https://github.com/vtex/faststore/commit/0e2befe3cb5dc99521a470c4096e31237b93a9c0))
-
-## 1.7.22 (2022-04-13)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.21 (2022-04-12)
-
-### Features
-
-- AggregateRating (Stars) molecule ([#1037](https://github.com/vtex/faststore/issues/1037)) ([23f2fad](https://github.com/vtex/faststore/commit/23f2fad6fd4d58ea369a54a0b6600207016be17e))
-
-## 1.7.20 (2022-04-11)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.19 (2022-04-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.18 (2022-04-08)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.17 (2022-04-08)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.16 (2022-04-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.15 (2022-04-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.14 (2022-04-07)
-
-### Bug Fixes
-
-- Uses catalog slugify ([#1214](https://github.com/vtex/faststore/issues/1214)) ([0b38efc](https://github.com/vtex/faststore/commit/0b38efc96ecab8920cf15f01c29e7f9d5becba3d))
-
-## 1.7.13 (2022-04-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.12 (2022-04-06)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.11 (2022-04-06)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.10 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.9 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.8 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.7 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.6 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.5 (2022-04-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.4 (2022-04-01)
-
-### Bug Fixes
-
-- release notes images ([#1207](https://github.com/vtex/faststore/issues/1207)) ([279e019](https://github.com/vtex/faststore/commit/279e019bad25581712f73c8fe7a433200d711780))
-
-## 1.7.3 (2022-04-01)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.2 (2022-04-01)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.7.1 (2022-04-01)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.29 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown render in SSR ([#1202](https://github.com/vtex/faststore/issues/1202)) ([60f65b0](https://github.com/vtex/faststore/commit/60f65b0864c2fb59dff61e914c69a326b5229984))
-
-## 1.6.28 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown menu position with scroll ([#1199](https://github.com/vtex/faststore/issues/1199)) ([98a228e](https://github.com/vtex/faststore/commit/98a228e364ed26e480936406c1988026f9ebaffc))
-
-## 1.6.27 (2022-03-31)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.26 (2022-03-31)
-
-### Features
-
-- **api:** Handle channel as facet for search and product queries ([#1197](https://github.com/vtex/faststore/issues/1197)) ([00556b1](https://github.com/vtex/faststore/commit/00556b199a48617ff89b1a6b951a0c958f5aa018))
-
-## 1.6.25 (2022-03-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.24 (2022-03-29)
-
-### Bug Fixes
-
-- fix dropdown click bug ([#1196](https://github.com/vtex/faststore/issues/1196)) ([55202ea](https://github.com/vtex/faststore/commit/55202ead64933b71688ac7399211cc2f086596f2))
-
-## 1.6.23 (2022-03-28)
-
-### Bug Fixes
-
-- fix breadcrumb component bug ([#1193](https://github.com/vtex/faststore/issues/1193)) ([f36ba81](https://github.com/vtex/faststore/commit/f36ba814ed679523d8c1f030c31a086a9e5bb190))
-
-## 1.6.22 (2022-03-25)
-
-### Features
-
-- **sdk:** Improve useStorage and Optimistic revalidate effect ([#1186](https://github.com/vtex/faststore/issues/1186)) ([08c616b](https://github.com/vtex/faststore/commit/08c616be4c6bc5a215da7ab0c37ff2731aa09f9a))
-
-## 1.6.21 (2022-03-25)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.20 (2022-03-24)
-
-### Bug Fixes
-
-- fix dropdown component bug ([#1192](https://github.com/vtex/faststore/issues/1192)) ([f188ac0](https://github.com/vtex/faststore/commit/f188ac0c59db5a0ef7a95eb2412d0bbcd024ae36))
-
-## 1.6.19 (2022-03-24)
-
-### Features
-
-- Add exports to dropdown ([#1188](https://github.com/vtex/faststore/issues/1188)) ([f24359a](https://github.com/vtex/faststore/commit/f24359a34439e0ec8d3069483c31a6f62fa6535d))
-
-## 1.6.18 (2022-03-24)
-
-### Features
-
-- **api:** Add session mutation ([#1176](https://github.com/vtex/faststore/issues/1176)) ([0306167](https://github.com/vtex/faststore/commit/030616739cc62d9b5aa55cdf532ee6dea0bd793c))
-
-## 1.6.17 (2022-03-23)
-
-### Features
-
-- **UI:** Add dropdown component ([#1178](https://github.com/vtex/faststore/issues/1178)) ([e5153a6](https://github.com/vtex/faststore/commit/e5153a674c37bd2a8b4c65ae6f56eb5cabaf3fc8))
-
-## 1.6.16 (2022-03-23)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.15 (2022-03-22)
-
-### Bug Fixes
-
-- Fix some typos ([#1183](https://github.com/vtex/faststore/issues/1183)) ([97fffb0](https://github.com/vtex/faststore/commit/97fffb02d9cc72f07926bc1a9bc684a99d623765))
-
-## 1.6.14 (2022-03-21)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.13 (2022-03-18)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.12 (2022-03-18)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.11 (2022-03-17)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.10 (2022-03-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.9 (2022-03-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.8 (2022-03-15)
-
-### Features
-
-- Add Person Query ([#1139](https://github.com/vtex/faststore/issues/1139)) ([9ec28c2](https://github.com/vtex/faststore/commit/9ec28c21cc6412c5366d1a1c71ef043603cd50c7))
-
-## 1.6.7 (2022-03-14)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.6 (2022-03-14)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.5 (2022-03-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.4 (2022-03-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.3 (2022-03-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.2 (2022-03-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.6.1 (2022-03-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.20 (2022-02-25)
-
-### Bug Fixes
-
-- Cart item availability ([#1160](https://github.com/vtex/faststore/issues/1160)) ([fd1be18](https://github.com/vtex/faststore/commit/fd1be18b09e8e5141a2a899e786e7caf08b3ff62))
-
-## 1.5.19 (2022-02-24)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.18 (2022-02-23)
-
-### Bug Fixes
-
-- **ui:** Use valid HTML for the Breadcrumb's divider ([#1143](https://github.com/vtex/faststore/issues/1143)) ([b40c3b1](https://github.com/vtex/faststore/commit/b40c3b1405e6aa9a0f2006de9f37a903e40a2103))
-
-## 1.5.17 (2022-02-22)
-
-### Features
-
-- Moves some Filter logic to api ([#1154](https://github.com/vtex/faststore/issues/1154)) ([5a591f7](https://github.com/vtex/faststore/commit/5a591f7b42e947577597cc82d8df6a15d2994780))
-
-## 1.5.16 (2022-02-22)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.15 (2022-02-22)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.14 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580))
-
-## 1.5.13 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124))
-
-## 1.5.12 (2022-02-21)
-
-### Bug Fixes
-
-- allCollections query pagination and pagetype timeout errors ([#1140](https://github.com/vtex/faststore/issues/1140)) ([0150222](https://github.com/vtex/faststore/commit/01502220fb903c62f0b33b9a703fb45daafae141))
-
-## 1.5.11 (2022-02-18)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** remove trailing slash from incoming requests ([#1145](https://github.com/vtex/faststore/issues/1145)) ([db6f1e1](https://github.com/vtex/faststore/commit/db6f1e173ec43747bf9cfa244b81d86db8a25ce3))
-
-## 1.5.10 (2022-02-17)
-
-### Features
-
-- **api:** Add additional property ([#1107](https://github.com/vtex/faststore/issues/1107)) ([bbcfc4a](https://github.com/vtex/faststore/commit/bbcfc4af68148adb54d66a3f1d28a9817ad2956c))
-
-## 1.5.9 (2022-02-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.8 (2022-02-15)
-
-### Bug Fixes
-
-- **api:** PDP and PLP breadcrumb list item's URL paths ([#1148](https://github.com/vtex/faststore/issues/1148)) ([ea1790a](https://github.com/vtex/faststore/commit/ea1790a0069b5e19f656d7df0051f391c3c3c611))
-
-## 1.5.7 (2022-02-15)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.6 (2022-02-15)
-
-### Features
-
-- Add budgets lighthouse config ([#1150](https://github.com/vtex/faststore/issues/1150)) ([60de848](https://github.com/vtex/faststore/commit/60de84897cb25fe775a3197adf8035610882ced8))
-
-## 1.5.5 (2022-02-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.4 (2022-02-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.3 (2022-02-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.2 (2022-02-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.5.1 (2022-02-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.27 (2022-02-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.26 (2022-02-02)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.25 (2022-02-02)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.24 (2022-02-02)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.23 (2022-02-01)
-
-### Bug Fixes
-
-- unfiltered allCollections query ([#1131](https://github.com/vtex/faststore/issues/1131)) ([4a1744a](https://github.com/vtex/faststore/commit/4a1744ad267517bfb6d3b7d7747725da0533d13f))
-
-## 1.4.22 (2022-01-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.21 (2022-01-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.20 (2022-01-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.19 (2022-01-24)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.18 (2022-01-17)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.17 (2022-01-13)
-
-### Bug Fixes
-
-- replaceAll crashing build with env vars ([#1109](https://github.com/vtex/faststore/issues/1109)) ([801b62e](https://github.com/vtex/faststore/commit/801b62e118238b6828d8cdaa2aff96d6c40278a8))
-
-## 1.4.16 (2022-01-11)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.15 (2022-01-11)
-
-### Bug Fixes
-
-- **api:** Breadcrumb data on collection pages ([#1104](https://github.com/vtex/faststore/issues/1104)) ([25d3c2b](https://github.com/vtex/faststore/commit/25d3c2bd07158ffca75bfe377a5b932c8fb36ae5))
-
-## 1.4.14 (2022-01-07)
-
-### Features
-
-- add item generics to analytics types for easy customization ([#1101](https://github.com/vtex/faststore/issues/1101)) ([51e9d96](https://github.com/vtex/faststore/commit/51e9d96b82062113a96a95159963ff85a22086fc))
-
-## 1.4.13 (2022-01-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.12 (2022-01-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.11 (2022-01-06)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.10 (2022-01-06)
-
-### Bug Fixes
-
-- **api:** Sku loader ([#1100](https://github.com/vtex/faststore/issues/1100)) ([82d029f](https://github.com/vtex/faststore/commit/82d029fbb4fd7613c80d099587b00812c410e448))
-
-## 1.4.9 (2022-01-06)
-
-### Features
-
-- add headers to nginx via env vars ([#1049](https://github.com/vtex/faststore/issues/1049)) ([3553372](https://github.com/vtex/faststore/commit/355337273ce03660db9fd14482818cc24c99f4e2))
-
-## 1.4.8 (2022-01-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.7 (2022-01-05)
-
-### Bug Fixes
-
-- fix accessibility on storybook ([#1096](https://github.com/vtex/faststore/issues/1096)) ([55805b1](https://github.com/vtex/faststore/commit/55805b1b2cffd111ef64857321c20e0a001a93b2))
-
-## 1.4.6 (2022-01-05)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.5 (2022-01-04)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.4 (2022-01-04)
-
-### Bug Fixes
-
-- adjust data attributes pattern on multiple components ([#1093](https://github.com/vtex/faststore/issues/1093)) ([ca9172f](https://github.com/vtex/faststore/commit/ca9172fb353cfce7011f9144c1e94ed7e6b73f5f))
-
-## 1.4.3 (2022-01-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.4.2 (2022-01-03)
-
-### Bug Fixes
-
-- **ui:** removing aria-labelledby from payment methods component ([#1092](https://github.com/vtex/faststore/issues/1092)) ([bf4c7a9](https://github.com/vtex/faststore/commit/bf4c7a981c379ffb1777a2fd8cae787f735f7d2d))
-
-## 1.4.1 (2022-01-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.46 (2021-12-23)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.45 (2021-12-21)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.44 (2021-12-21)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.43 (2021-12-20)
-
-### Features
-
-- QuantitySelector component ([#1083](https://github.com/vtex/faststore/issues/1083)) ([6ade6c0](https://github.com/vtex/faststore/commit/6ade6c02b06fdb74ba2cd2978d8ac4bda35672d2))
-
-## 1.3.42 (2021-12-20)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.41 (2021-12-20)
-
-### Features
-
-- **ui:** Incentive atom ([#1064](https://github.com/vtex/faststore/issues/1064)) ([1b136c7](https://github.com/vtex/faststore/commit/1b136c7d7fc8f2b99259ef1908286713697e03da))
-
-## 1.3.40 (2021-12-18)
-
-### Features
-
-- **ui:** Link atom ([#1067](https://github.com/vtex/faststore/issues/1067)) ([c49b2dd](https://github.com/vtex/faststore/commit/c49b2ddc31ba4184bed19a8934fbf4d5f0b47a5f))
-
-## 1.3.39 (2021-12-17)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.38 (2021-12-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.37 (2021-12-15)
-
-### Features
-
-- **ui:** Card component ([#1079](https://github.com/vtex/faststore/issues/1079)) ([7f10a5d](https://github.com/vtex/faststore/commit/7f10a5dcec21f7c9d59ba645755fe298e96269df))
-
-## 1.3.36 (2021-12-15)
-
-### Bug Fixes
-
-- expose JS files only ([#1081](https://github.com/vtex/faststore/issues/1081)) ([e363c12](https://github.com/vtex/faststore/commit/e363c120f22b10da81ceb3e2d8fcc58c1b4665af))
-
-## 1.3.35 (2021-12-14)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.34 (2021-12-11)
-
-### Bug Fixes
-
-- **docs:** Fix algolia search ([#1078](https://github.com/vtex/faststore/issues/1078)) ([986074f](https://github.com/vtex/faststore/commit/986074f061365d812650a82748ca5a9fc1dac6d5))
-
-## 1.3.33 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.32 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.31 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.30 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.29 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.28 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.27 (2021-12-10)
-
-### Bug Fixes
-
-- Add Banner Components exportation ([#1072](https://github.com/vtex/faststore/issues/1072)) ([4024104](https://github.com/vtex/faststore/commit/4024104f9804c8762037f03d986a4334af819b3c))
-
-## 1.3.26 (2021-12-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.25 (2021-12-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.24 (2021-12-09)
-
-### Bug Fixes
-
-- fix UI storybook imports ([#1069](https://github.com/vtex/faststore/issues/1069)) ([e4a2402](https://github.com/vtex/faststore/commit/e4a2402235c60488fde7021bf3200d967af3cb83))
-
-## 1.3.23 (2021-12-09)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.22 (2021-12-07)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.21 (2021-12-07)
-
-### Features
-
-- add docs ([#1058](https://github.com/vtex/faststore/issues/1058)) ([35f3e62](https://github.com/vtex/faststore/commit/35f3e62ae09c350632479742c9ce2c22e8862b23))
-
-## 1.3.20 (2021-12-07)
-
-### Features
-
-- **store-ui:** Banner component ([#1048](https://github.com/vtex/faststore/issues/1048)) ([b65d8e5](https://github.com/vtex/faststore/commit/b65d8e574598f8bf8494aac478e4bec4d774ec86))
-
-## 1.3.19 (2021-12-07)
-
-### Features
-
-- **ui:** PaymentMethods Component ([#1024](https://github.com/vtex/faststore/issues/1024)) ([f093025](https://github.com/vtex/faststore/commit/f093025c5b010b01f16349e2460611792cfff67f))
-
-## 1.3.18 (2021-12-06)
-
-### Features
-
-- **store-ui:** Alert molecule ([#1020](https://github.com/vtex/faststore/issues/1020)) ([7764e0d](https://github.com/vtex/faststore/commit/7764e0d08270a3bb836038c4a9cd27e5cbef9667))
-
-## 1.3.17 (2021-12-06)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.16 (2021-12-06)
-
-### Bug Fixes
-
-- add fallback to prevent null facets attribute StoreSearchResult query ([#1056](https://github.com/vtex/faststore/issues/1056)) ([ae1483f](https://github.com/vtex/faststore/commit/ae1483fdb901328a7a7348746fd241b9ce7ea1da))
-
-## 1.3.15 (2021-12-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.14 (2021-12-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.13 (2021-12-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.12 (2021-12-02)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.11 (2021-12-02)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.10 (2021-12-01)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.9 (2021-12-01)
-
-### Bug Fixes
-
-- **api:** Throws NotFoundError when collection is not found ([#1047](https://github.com/vtex/faststore/issues/1047)) ([9535ec3](https://github.com/vtex/faststore/commit/9535ec3d67a64f98b4d4e914e7bae81e06935e2a))
-
-## 1.3.8 (2021-12-01)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.7 (2021-12-01)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.6 (2021-11-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.5 (2021-11-25)
-
-### Features
-
-- **ui:** RadioGroup Component ([#1033](https://github.com/vtex/faststore/issues/1033)) ([60f306d](https://github.com/vtex/faststore/commit/60f306d97257a8cc65ec67bf1f1cc16376ad1654))
-
-## 1.3.4 (2021-11-23)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.3 (2021-11-23)
-
-### Features
-
-- **gatsby-plugin-nginx:** support to augment the generateRewrites ([#1017](https://github.com/vtex/faststore/issues/1017)) ([46587b0](https://github.com/vtex/faststore/commit/46587b0280d7f8dd733a0dca29909f041c944897))
-
-## 1.3.2 (2021-11-22)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.3.1 (2021-11-18)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.37 (2021-11-17)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.36 (2021-11-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.35 (2021-11-16)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.34 (2021-11-16)
-
-### Bug Fixes
-
-- Filter collection slugs in api ([#1022](https://github.com/vtex/faststore/issues/1022)) ([cdcfcff](https://github.com/vtex/faststore/commit/cdcfcff642561dd73b1f85557e101271d10ca930))
-
-## 1.2.33 (2021-11-12)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.32 (2021-11-11)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.31 (2021-11-04)
-
-### Features
-
-- **store-ui:** Breadcrumb improvements ([#1010](https://github.com/vtex/faststore/issues/1010)) ([8b4bf37](https://github.com/vtex/faststore/commit/8b4bf37316d6057683680de36493b63709bb1012))
-
-## 1.2.30 (2021-11-03)
-
-### Bug Fixes
-
-- Channel simulation ([#1014](https://github.com/vtex/faststore/issues/1014)) ([b45406b](https://github.com/vtex/faststore/commit/b45406b2b7ee8deb2b6e256629ba6df89d1b5940))
-
-## 1.2.29 (2021-11-03)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.28 (2021-10-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.27 (2021-10-29)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.26 (2021-10-29)
-
-### Bug Fixes
-
-- **store-ui:** Remove circular dependency ([#1011](https://github.com/vtex/faststore/issues/1011)) ([b9f08c9](https://github.com/vtex/faststore/commit/b9f08c95ae33bdbb09ffc044d6ad831fd6608144))
-
-## 1.2.25 (2021-10-28)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.24 (2021-10-28)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.23 (2021-10-27)
-
-### Features
-
-- **store-ui:** Add carousel tablist keyboard behavior ([#996](https://github.com/vtex/faststore/issues/996)) ([9081584](https://github.com/vtex/faststore/commit/908158460028009aaaa4ebbcd22eefab59e9bff8))
-
-## 1.2.22 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.21 (2021-10-26)
-
-### Features
-
-- **store-ui:** Form molecule ([#1004](https://github.com/vtex/faststore/issues/1004)) ([c584ef6](https://github.com/vtex/faststore/commit/c584ef693d111ede70d27730ecb3cce613b9aba3))
-
-## 1.2.20 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.19 (2021-10-25)
-
-**Note:** Version bump only for package @vtex/graphql-utils
-
-## 1.2.18 (2021-10-25)
-
-### Features
-
-- **store-ui:** Breadcrumb molecule ([#986](https://github.com/vtex/faststore/issues/986)) ([325c738](https://github.com/vtex/faststore/commit/325c7387089d2f2c7152191b54fc3cb4918f1c68))
-
-## 1.2.17 (2021-10-21)
-
-### Features
-
-- **store-ui:** Loading Button molecule ([#962](https://github.com/vtex/faststore/issues/962)) ([6083ea0](https://github.com/vtex/faststore/commit/6083ea0273646a09e66ceedfab4b17c3960ac9fc)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.2.16 (2021-10-21)
-
-### Features
-
-- **store-ui:** Label atom ([#1001](https://github.com/vtex/faststore/issues/1001)) ([3306ea6](https://github.com/vtex/faststore/commit/3306ea6b9b48996574eac4b8c1b737dff94a438e))
-
-## 1.2.15 (2021-10-21)
-
-### Bug Fixes
-
-- **store-ui:** Fix search-input a11y ([#1000](https://github.com/vtex/faststore/issues/1000)) ([f052f46](https://github.com/vtex/faststore/commit/f052f465e21aa4e2ca047327eeb0610b9b979f10))
-
-## 1.2.14 (2021-10-20)
-
-### Features
-
-- graphql-utils ([#998](https://github.com/vtex/faststore/issues/998)) ([bddf043](https://github.com/vtex/faststore/commit/bddf04308826369f86322851b554cc58ab5b2161))
diff --git a/packages/lighthouse/CHANGELOG.md b/packages/lighthouse/CHANGELOG.md
deleted file mode 100644
index 739aeba186..0000000000
--- a/packages/lighthouse/CHANGELOG.md
+++ /dev/null
@@ -1,1911 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## [2.0.167-alpha.0](https://github.com/vtex/faststore/compare/v2.0.166-alpha.0...v2.0.167-alpha.0) (2023-05-29)
-
-### Chores
-
-- relax bf-cache rule to use warn instead of error ([#1801](https://github.com/vtex/faststore/issues/1801)) ([30c0ce9](https://github.com/vtex/faststore/commit/30c0ce9dc022db5c17a7ddd081d2d291c082bb75))
-
-## [2.0.132-alpha.0](https://github.com/vtex/faststore/compare/v2.0.131-alpha.0...v2.0.132-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Lighthouse Checks 🟢 ([#1737](https://github.com/vtex/faststore/issues/1737)) ([b862703](https://github.com/vtex/faststore/commit/b862703ce991065f92765f4cecc88c9946b3d702)), closes [/github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js#L25](https://github.com/vtex//github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js/issues/L25)
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.67-alpha.0](https://github.com/vtex/faststore/compare/v2.0.66-alpha.0...v2.0.67-alpha.0) (2023-02-14)
-
-### Features
-
-- CLI makes WebOps Evergreen + Vercel ([#1618](https://github.com/vtex/faststore/issues/1618)) ([c8c9083](https://github.com/vtex/faststore/commit/c8c908321f56e7ca570cd15e3ed7a145197a6d38)), closes [/github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts#L23](https://github.com/vtex//github.com/vtex/vtex-cicd-platform/blob/main/images/faststore-ci-cd/src/plugins/nextjs12/mod.ts/issues/L23) [/github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts#L29](https://github.com/vtex//github.com/vtex/faststore/blob/main/packages/cli/src/commands/dev.ts/issues/L29)
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.10.4](https://github.com/vtex/faststore/compare/v1.10.3...v1.10.4) (2022-07-04)
-
-### Bug Fixes
-
-- @faststore/graphql-utils ([#1394](https://github.com/vtex/faststore/issues/1394)) ([ea4b483](https://github.com/vtex/faststore/commit/ea4b4832b25fe257d8c5c0c67bc09fb04dc693cf))
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## [1.9.10](https://github.com/vtex/faststore/compare/v1.9.9...v1.9.10) (2022-06-18)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 1.9.9 (2022-06-17)
-
-### Bug Fixes
-
-- prettier format files ([#1369](https://github.com/vtex/faststore/issues/1369)) ([7f42ea9](https://github.com/vtex/faststore/commit/7f42ea913ee60333fe32434491f9be83c29a165d))
-
-## 1.9.8 (2022-06-17)
-
-### Features
-
-- lint ([#1368](https://github.com/vtex/faststore/issues/1368)) ([66ce99f](https://github.com/vtex/faststore/commit/66ce99f310ec593245e3937daea5ed813e1630e6))
-
-## 1.9.4 (2022-06-10)
-
-### Bug Fixes
-
-- codesandbox ci ([#1357](https://github.com/vtex/faststore/issues/1357)) ([db07e1f](https://github.com/vtex/faststore/commit/db07e1fb02f28b0f082c361cb2c28250a687b760))
-
-## 1.9.1 (2022-06-09)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 1.8.51 (2022-06-03)
-
-### Features
-
-- **UI:** Add Hero component ([#1336](https://github.com/vtex/faststore/issues/1336)) ([767c0cd](https://github.com/vtex/faststore/commit/767c0cdc5eaf6bd56020d64fd7718b1379c09390))
-
-## 1.8.49 (2022-05-31)
-
-### Bug Fixes
-
-- remove docs from build on codesandbox ([#1334](https://github.com/vtex/faststore/issues/1334)) ([c9eabde](https://github.com/vtex/faststore/commit/c9eabdea8d951d42a9b3898572719e1f45294b33))
-
-## 1.8.46 (2022-05-30)
-
-### Features
-
-- using cache ([#1330](https://github.com/vtex/faststore/issues/1330)) ([6f8a7a4](https://github.com/vtex/faststore/commit/6f8a7a4a593f7e82586d7e3d48f5254e011b8df6))
-
-## 1.8.45 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## [1.8.44](https://github.com/vtex/faststore/compare/v1.8.43...v1.8.44) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## [1.8.43](https://github.com/vtex/faststore/compare/v1.8.42...v1.8.43) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/lighthouse
-
-## 1.8.42 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.41 (2022-05-30)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.40 (2022-05-30)
-
-### Bug Fixes
-
-- Cart item with additionalProperty ([#1325](https://github.com/vtex/faststore/issues/1325)) ([8fa6aa1](https://github.com/vtex/faststore/commit/8fa6aa1a88d3e3702a017e581cbcff4281c47f4f))
-
-## 1.8.39 (2022-05-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.38 (2022-05-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.37 (2022-05-27)
-
-### Bug Fixes
-
-- Increase NodeJS version ([#1323](https://github.com/vtex/faststore/issues/1323)) ([3a6fbe7](https://github.com/vtex/faststore/commit/3a6fbe7c230b7056582c783464bfb45cc5717bed))
-
-## 1.8.36 (2022-05-26)
-
-### Bug Fixes
-
-- Top searches ([#1321](https://github.com/vtex/faststore/issues/1321)) ([e2ab99d](https://github.com/vtex/faststore/commit/e2ab99d4f443e013f3fd024fc83bb612fcb27f41))
-
-## 1.8.35 (2022-05-26)
-
-### Features
-
-- Add OutOfStock component ([#1314](https://github.com/vtex/faststore/issues/1314)) ([37eac86](https://github.com/vtex/faststore/commit/37eac86ede448ef68aef426f65f2d224694b2cfc))
-
-## 1.8.34 (2022-05-25)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.33 (2022-05-24)
-
-### Features
-
-- useStorage update onFocus ([#1316](https://github.com/vtex/faststore/issues/1316)) ([c9874d4](https://github.com/vtex/faststore/commit/c9874d46a16a09159e6e1bd4da4e61ec25bd62d2))
-
-## 1.8.32 (2022-05-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.31 (2022-05-20)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.30 (2022-05-20)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.29 (2022-05-19)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.28 (2022-05-19)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.27 (2022-05-19)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.26 (2022-05-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.25 (2022-05-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.24 (2022-05-18)
-
-### Bug Fixes
-
-- Breadcrumb broken links ([#1306](https://github.com/vtex/faststore/issues/1306)) ([e1d74d4](https://github.com/vtex/faststore/commit/e1d74d49dc3f7cf90caa80e480a01346934c0d43))
-
-## 1.8.23 (2022-05-17)
-
-### Features
-
-- Sync Cart with Checkout ([#1299](https://github.com/vtex/faststore/issues/1299)) ([62e8f56](https://github.com/vtex/faststore/commit/62e8f56b31c6bb6cf7260749a90ebef8aba9982b))
-
-## 1.8.22 (2022-05-17)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.21 (2022-05-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.20 (2022-05-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.19 (2022-05-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.18 (2022-05-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.17 (2022-05-13)
-
-### Features
-
-- **UI:** Add `ProductCard` component ([#1272](https://github.com/vtex/faststore/issues/1272)) ([ea62210](https://github.com/vtex/faststore/commit/ea6221080da8b3538551f7a77df61a14d8de297d))
-
-## 1.8.16 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.15 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.14 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.13 (2022-05-13)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.12 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.11 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.10 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.9 (2022-05-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.8 (2022-05-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.7 (2022-05-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.6 (2022-05-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.5 (2022-05-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.4 (2022-05-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.2 (2022-05-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.8.1 (2022-05-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.55 (2022-05-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.54 (2022-05-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.53 (2022-05-06)
-
-### Bug Fixes
-
-- suggestions api url ([#1273](https://github.com/vtex/faststore/issues/1273)) ([6f8a961](https://github.com/vtex/faststore/commit/6f8a9613e4627f91815e669a007ec4ff4c54ffe5))
-
-## 1.7.52 (2022-05-06)
-
-### Bug Fixes
-
-- Release workflow ([#1271](https://github.com/vtex/faststore/issues/1271)) ([3b995a8](https://github.com/vtex/faststore/commit/3b995a82c956c13c4d6f9453ac4f44195c5ef543))
-
-## 1.7.51 (2022-05-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.50 (2022-05-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.49 (2022-05-02)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.48 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.47 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.46 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.45 (2022-04-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.44 (2022-04-28)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.43 (2022-04-28)
-
-### Bug Fixes
-
-- api schema ([#1254](https://github.com/vtex/faststore/issues/1254)) ([c901b3d](https://github.com/vtex/faststore/commit/c901b3db8e002558e14101339c817ca87db8f949))
-
-## 1.7.42 (2022-04-28)
-
-### Features
-
-- search suggestions ([#1198](https://github.com/vtex/faststore/issues/1198)) ([2b19413](https://github.com/vtex/faststore/commit/2b19413dd11249e4d967ac1c4c1aabdc3a8ec1bf))
-
-## 1.7.41 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.40 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.39 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.38 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.37 (2022-04-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.36 (2022-04-27)
-
-### Bug Fixes
-
-- **api:** Remove circular dependencies ([#1243](https://github.com/vtex/faststore/issues/1243)) ([e988621](https://github.com/vtex/faststore/commit/e988621c77b946e397ecc33b82be65b04fa119ec))
-
-## 1.7.35 (2022-04-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.34 (2022-04-25)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.33 (2022-04-25)
-
-### Bug Fixes
-
-- **api:** SearchResult send events ([#1242](https://github.com/vtex/faststore/issues/1242)) ([9cc7cc4](https://github.com/vtex/faststore/commit/9cc7cc4d55802ef0dc75e22d58c46da899674555))
-
-## 1.7.32 (2022-04-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.31 (2022-04-22)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.30 (2022-04-22)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.29 (2022-04-22)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.28 (2022-04-20)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.27 (2022-04-20)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.26 (2022-04-19)
-
-### Reverts
-
-- Revert "feat: Add url to events (#1174)" (#1228) ([67ec438](https://github.com/vtex/faststore/commit/67ec4386b876a4de08bfd96df5147efa958d5496)), closes [#1174](https://github.com/vtex/faststore/issues/1174) [#1228](https://github.com/vtex/faststore/issues/1228)
-
-## 1.7.25 (2022-04-19)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.24 (2022-04-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.23 (2022-04-18)
-
-### Features
-
-- Add url to events ([#1174](https://github.com/vtex/faststore/issues/1174)) ([0e2befe](https://github.com/vtex/faststore/commit/0e2befe3cb5dc99521a470c4096e31237b93a9c0))
-
-## 1.7.22 (2022-04-13)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.21 (2022-04-12)
-
-### Features
-
-- AggregateRating (Stars) molecule ([#1037](https://github.com/vtex/faststore/issues/1037)) ([23f2fad](https://github.com/vtex/faststore/commit/23f2fad6fd4d58ea369a54a0b6600207016be17e))
-
-## 1.7.20 (2022-04-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.19 (2022-04-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.18 (2022-04-08)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.17 (2022-04-08)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.16 (2022-04-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.15 (2022-04-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.14 (2022-04-07)
-
-### Bug Fixes
-
-- Uses catalog slugify ([#1214](https://github.com/vtex/faststore/issues/1214)) ([0b38efc](https://github.com/vtex/faststore/commit/0b38efc96ecab8920cf15f01c29e7f9d5becba3d))
-
-## 1.7.13 (2022-04-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.12 (2022-04-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.11 (2022-04-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.10 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.9 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.8 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.7 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.6 (2022-04-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.5 (2022-04-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.4 (2022-04-01)
-
-### Bug Fixes
-
-- release notes images ([#1207](https://github.com/vtex/faststore/issues/1207)) ([279e019](https://github.com/vtex/faststore/commit/279e019bad25581712f73c8fe7a433200d711780))
-
-## 1.7.3 (2022-04-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.2 (2022-04-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.7.1 (2022-04-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.29 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown render in SSR ([#1202](https://github.com/vtex/faststore/issues/1202)) ([60f65b0](https://github.com/vtex/faststore/commit/60f65b0864c2fb59dff61e914c69a326b5229984))
-
-## 1.6.28 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown menu position with scroll ([#1199](https://github.com/vtex/faststore/issues/1199)) ([98a228e](https://github.com/vtex/faststore/commit/98a228e364ed26e480936406c1988026f9ebaffc))
-
-## 1.6.27 (2022-03-31)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.26 (2022-03-31)
-
-### Features
-
-- **api:** Handle channel as facet for search and product queries ([#1197](https://github.com/vtex/faststore/issues/1197)) ([00556b1](https://github.com/vtex/faststore/commit/00556b199a48617ff89b1a6b951a0c958f5aa018))
-
-## 1.6.25 (2022-03-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.24 (2022-03-29)
-
-### Bug Fixes
-
-- fix dropdown click bug ([#1196](https://github.com/vtex/faststore/issues/1196)) ([55202ea](https://github.com/vtex/faststore/commit/55202ead64933b71688ac7399211cc2f086596f2))
-
-## 1.6.23 (2022-03-28)
-
-### Bug Fixes
-
-- fix breadcrumb component bug ([#1193](https://github.com/vtex/faststore/issues/1193)) ([f36ba81](https://github.com/vtex/faststore/commit/f36ba814ed679523d8c1f030c31a086a9e5bb190))
-
-## 1.6.22 (2022-03-25)
-
-### Features
-
-- **sdk:** Improve useStorage and Optimistic revalidate effect ([#1186](https://github.com/vtex/faststore/issues/1186)) ([08c616b](https://github.com/vtex/faststore/commit/08c616be4c6bc5a215da7ab0c37ff2731aa09f9a))
-
-## 1.6.21 (2022-03-25)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.20 (2022-03-24)
-
-### Bug Fixes
-
-- fix dropdown component bug ([#1192](https://github.com/vtex/faststore/issues/1192)) ([f188ac0](https://github.com/vtex/faststore/commit/f188ac0c59db5a0ef7a95eb2412d0bbcd024ae36))
-
-## 1.6.19 (2022-03-24)
-
-### Features
-
-- Add exports to dropdown ([#1188](https://github.com/vtex/faststore/issues/1188)) ([f24359a](https://github.com/vtex/faststore/commit/f24359a34439e0ec8d3069483c31a6f62fa6535d))
-
-## 1.6.18 (2022-03-24)
-
-### Features
-
-- **api:** Add session mutation ([#1176](https://github.com/vtex/faststore/issues/1176)) ([0306167](https://github.com/vtex/faststore/commit/030616739cc62d9b5aa55cdf532ee6dea0bd793c))
-
-## 1.6.17 (2022-03-23)
-
-### Features
-
-- **UI:** Add dropdown component ([#1178](https://github.com/vtex/faststore/issues/1178)) ([e5153a6](https://github.com/vtex/faststore/commit/e5153a674c37bd2a8b4c65ae6f56eb5cabaf3fc8))
-
-## 1.6.16 (2022-03-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.15 (2022-03-22)
-
-### Bug Fixes
-
-- Fix some typos ([#1183](https://github.com/vtex/faststore/issues/1183)) ([97fffb0](https://github.com/vtex/faststore/commit/97fffb02d9cc72f07926bc1a9bc684a99d623765))
-
-## 1.6.14 (2022-03-21)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.13 (2022-03-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.12 (2022-03-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.11 (2022-03-17)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.10 (2022-03-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.9 (2022-03-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.8 (2022-03-15)
-
-### Features
-
-- Add Person Query ([#1139](https://github.com/vtex/faststore/issues/1139)) ([9ec28c2](https://github.com/vtex/faststore/commit/9ec28c21cc6412c5366d1a1c71ef043603cd50c7))
-
-## 1.6.7 (2022-03-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.6 (2022-03-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.5 (2022-03-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.4 (2022-03-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.3 (2022-03-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.2 (2022-03-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.6.1 (2022-03-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.20 (2022-02-25)
-
-### Bug Fixes
-
-- Cart item availability ([#1160](https://github.com/vtex/faststore/issues/1160)) ([fd1be18](https://github.com/vtex/faststore/commit/fd1be18b09e8e5141a2a899e786e7caf08b3ff62))
-
-## 1.5.19 (2022-02-24)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.18 (2022-02-23)
-
-### Bug Fixes
-
-- **ui:** Use valid HTML for the Breadcrumb's divider ([#1143](https://github.com/vtex/faststore/issues/1143)) ([b40c3b1](https://github.com/vtex/faststore/commit/b40c3b1405e6aa9a0f2006de9f37a903e40a2103))
-
-## 1.5.17 (2022-02-22)
-
-### Features
-
-- Moves some Filter logic to api ([#1154](https://github.com/vtex/faststore/issues/1154)) ([5a591f7](https://github.com/vtex/faststore/commit/5a591f7b42e947577597cc82d8df6a15d2994780))
-
-## 1.5.16 (2022-02-22)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.15 (2022-02-22)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.14 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580))
-
-## 1.5.13 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124))
-
-## 1.5.12 (2022-02-21)
-
-### Bug Fixes
-
-- allCollections query pagination and pagetype timeout errors ([#1140](https://github.com/vtex/faststore/issues/1140)) ([0150222](https://github.com/vtex/faststore/commit/01502220fb903c62f0b33b9a703fb45daafae141))
-
-## 1.5.11 (2022-02-18)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** remove trailing slash from incoming requests ([#1145](https://github.com/vtex/faststore/issues/1145)) ([db6f1e1](https://github.com/vtex/faststore/commit/db6f1e173ec43747bf9cfa244b81d86db8a25ce3))
-
-## 1.5.10 (2022-02-17)
-
-### Features
-
-- **api:** Add additional property ([#1107](https://github.com/vtex/faststore/issues/1107)) ([bbcfc4a](https://github.com/vtex/faststore/commit/bbcfc4af68148adb54d66a3f1d28a9817ad2956c))
-
-## 1.5.9 (2022-02-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.8 (2022-02-15)
-
-### Bug Fixes
-
-- **api:** PDP and PLP breadcrumb list item's URL paths ([#1148](https://github.com/vtex/faststore/issues/1148)) ([ea1790a](https://github.com/vtex/faststore/commit/ea1790a0069b5e19f656d7df0051f391c3c3c611))
-
-## 1.5.7 (2022-02-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.6 (2022-02-15)
-
-### Features
-
-- Add budgets lighthouse config ([#1150](https://github.com/vtex/faststore/issues/1150)) ([60de848](https://github.com/vtex/faststore/commit/60de84897cb25fe775a3197adf8035610882ced8))
-
-## 1.5.5 (2022-02-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.4 (2022-02-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.3 (2022-02-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.2 (2022-02-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.5.1 (2022-02-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.27 (2022-02-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.26 (2022-02-02)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.25 (2022-02-02)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.24 (2022-02-02)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.23 (2022-02-01)
-
-### Bug Fixes
-
-- unfiltered allCollections query ([#1131](https://github.com/vtex/faststore/issues/1131)) ([4a1744a](https://github.com/vtex/faststore/commit/4a1744ad267517bfb6d3b7d7747725da0533d13f))
-
-## 1.4.22 (2022-01-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.21 (2022-01-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.20 (2022-01-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.19 (2022-01-24)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.18 (2022-01-17)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.17 (2022-01-13)
-
-### Bug Fixes
-
-- replaceAll crashing build with env vars ([#1109](https://github.com/vtex/faststore/issues/1109)) ([801b62e](https://github.com/vtex/faststore/commit/801b62e118238b6828d8cdaa2aff96d6c40278a8))
-
-## 1.4.16 (2022-01-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.15 (2022-01-11)
-
-### Bug Fixes
-
-- **api:** Breadcrumb data on collection pages ([#1104](https://github.com/vtex/faststore/issues/1104)) ([25d3c2b](https://github.com/vtex/faststore/commit/25d3c2bd07158ffca75bfe377a5b932c8fb36ae5))
-
-## 1.4.14 (2022-01-07)
-
-### Features
-
-- add item generics to analytics types for easy customization ([#1101](https://github.com/vtex/faststore/issues/1101)) ([51e9d96](https://github.com/vtex/faststore/commit/51e9d96b82062113a96a95159963ff85a22086fc))
-
-## 1.4.13 (2022-01-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.12 (2022-01-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.11 (2022-01-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.10 (2022-01-06)
-
-### Bug Fixes
-
-- **api:** Sku loader ([#1100](https://github.com/vtex/faststore/issues/1100)) ([82d029f](https://github.com/vtex/faststore/commit/82d029fbb4fd7613c80d099587b00812c410e448))
-
-## 1.4.9 (2022-01-06)
-
-### Features
-
-- add headers to nginx via env vars ([#1049](https://github.com/vtex/faststore/issues/1049)) ([3553372](https://github.com/vtex/faststore/commit/355337273ce03660db9fd14482818cc24c99f4e2))
-
-## 1.4.8 (2022-01-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.7 (2022-01-05)
-
-### Bug Fixes
-
-- fix accessibility on storybook ([#1096](https://github.com/vtex/faststore/issues/1096)) ([55805b1](https://github.com/vtex/faststore/commit/55805b1b2cffd111ef64857321c20e0a001a93b2))
-
-## 1.4.6 (2022-01-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.5 (2022-01-04)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.4 (2022-01-04)
-
-### Bug Fixes
-
-- adjust data attributes pattern on multiple components ([#1093](https://github.com/vtex/faststore/issues/1093)) ([ca9172f](https://github.com/vtex/faststore/commit/ca9172fb353cfce7011f9144c1e94ed7e6b73f5f))
-
-## 1.4.3 (2022-01-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.4.2 (2022-01-03)
-
-### Bug Fixes
-
-- **ui:** removing aria-labelledby from payment methods component ([#1092](https://github.com/vtex/faststore/issues/1092)) ([bf4c7a9](https://github.com/vtex/faststore/commit/bf4c7a981c379ffb1777a2fd8cae787f735f7d2d))
-
-## 1.4.1 (2022-01-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.46 (2021-12-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.45 (2021-12-21)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.44 (2021-12-21)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.43 (2021-12-20)
-
-### Features
-
-- QuantitySelector component ([#1083](https://github.com/vtex/faststore/issues/1083)) ([6ade6c0](https://github.com/vtex/faststore/commit/6ade6c02b06fdb74ba2cd2978d8ac4bda35672d2))
-
-## 1.3.42 (2021-12-20)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.41 (2021-12-20)
-
-### Features
-
-- **ui:** Incentive atom ([#1064](https://github.com/vtex/faststore/issues/1064)) ([1b136c7](https://github.com/vtex/faststore/commit/1b136c7d7fc8f2b99259ef1908286713697e03da))
-
-## 1.3.40 (2021-12-18)
-
-### Features
-
-- **ui:** Link atom ([#1067](https://github.com/vtex/faststore/issues/1067)) ([c49b2dd](https://github.com/vtex/faststore/commit/c49b2ddc31ba4184bed19a8934fbf4d5f0b47a5f))
-
-## 1.3.39 (2021-12-17)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.38 (2021-12-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.37 (2021-12-15)
-
-### Features
-
-- **ui:** Card component ([#1079](https://github.com/vtex/faststore/issues/1079)) ([7f10a5d](https://github.com/vtex/faststore/commit/7f10a5dcec21f7c9d59ba645755fe298e96269df))
-
-## 1.3.36 (2021-12-15)
-
-### Bug Fixes
-
-- expose JS files only ([#1081](https://github.com/vtex/faststore/issues/1081)) ([e363c12](https://github.com/vtex/faststore/commit/e363c120f22b10da81ceb3e2d8fcc58c1b4665af))
-
-## 1.3.35 (2021-12-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.34 (2021-12-11)
-
-### Bug Fixes
-
-- **docs:** Fix algolia search ([#1078](https://github.com/vtex/faststore/issues/1078)) ([986074f](https://github.com/vtex/faststore/commit/986074f061365d812650a82748ca5a9fc1dac6d5))
-
-## 1.3.33 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.32 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.31 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.30 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.29 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.28 (2021-12-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.27 (2021-12-10)
-
-### Bug Fixes
-
-- Add Banner Components exportation ([#1072](https://github.com/vtex/faststore/issues/1072)) ([4024104](https://github.com/vtex/faststore/commit/4024104f9804c8762037f03d986a4334af819b3c))
-
-## 1.3.26 (2021-12-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.25 (2021-12-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.24 (2021-12-09)
-
-### Bug Fixes
-
-- fix UI storybook imports ([#1069](https://github.com/vtex/faststore/issues/1069)) ([e4a2402](https://github.com/vtex/faststore/commit/e4a2402235c60488fde7021bf3200d967af3cb83))
-
-## 1.3.23 (2021-12-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.22 (2021-12-07)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.21 (2021-12-07)
-
-### Features
-
-- add docs ([#1058](https://github.com/vtex/faststore/issues/1058)) ([35f3e62](https://github.com/vtex/faststore/commit/35f3e62ae09c350632479742c9ce2c22e8862b23))
-
-## 1.3.20 (2021-12-07)
-
-### Features
-
-- **store-ui:** Banner component ([#1048](https://github.com/vtex/faststore/issues/1048)) ([b65d8e5](https://github.com/vtex/faststore/commit/b65d8e574598f8bf8494aac478e4bec4d774ec86))
-
-## 1.3.19 (2021-12-07)
-
-### Features
-
-- **ui:** PaymentMethods Component ([#1024](https://github.com/vtex/faststore/issues/1024)) ([f093025](https://github.com/vtex/faststore/commit/f093025c5b010b01f16349e2460611792cfff67f))
-
-## 1.3.18 (2021-12-06)
-
-### Features
-
-- **store-ui:** Alert molecule ([#1020](https://github.com/vtex/faststore/issues/1020)) ([7764e0d](https://github.com/vtex/faststore/commit/7764e0d08270a3bb836038c4a9cd27e5cbef9667))
-
-## 1.3.17 (2021-12-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.16 (2021-12-06)
-
-### Bug Fixes
-
-- add fallback to prevent null facets attribute StoreSearchResult query ([#1056](https://github.com/vtex/faststore/issues/1056)) ([ae1483f](https://github.com/vtex/faststore/commit/ae1483fdb901328a7a7348746fd241b9ce7ea1da))
-
-## 1.3.15 (2021-12-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.14 (2021-12-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.13 (2021-12-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.12 (2021-12-02)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.11 (2021-12-02)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.10 (2021-12-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.9 (2021-12-01)
-
-### Bug Fixes
-
-- **api:** Throws NotFoundError when collection is not found ([#1047](https://github.com/vtex/faststore/issues/1047)) ([9535ec3](https://github.com/vtex/faststore/commit/9535ec3d67a64f98b4d4e914e7bae81e06935e2a))
-
-## 1.3.8 (2021-12-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.7 (2021-12-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.6 (2021-11-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.5 (2021-11-25)
-
-### Features
-
-- **ui:** RadioGroup Component ([#1033](https://github.com/vtex/faststore/issues/1033)) ([60f306d](https://github.com/vtex/faststore/commit/60f306d97257a8cc65ec67bf1f1cc16376ad1654))
-
-## 1.3.4 (2021-11-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.3 (2021-11-23)
-
-### Features
-
-- **gatsby-plugin-nginx:** support to augment the generateRewrites ([#1017](https://github.com/vtex/faststore/issues/1017)) ([46587b0](https://github.com/vtex/faststore/commit/46587b0280d7f8dd733a0dca29909f041c944897))
-
-## 1.3.2 (2021-11-22)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.3.1 (2021-11-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.37 (2021-11-17)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.36 (2021-11-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.35 (2021-11-16)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.34 (2021-11-16)
-
-### Bug Fixes
-
-- Filter collection slugs in api ([#1022](https://github.com/vtex/faststore/issues/1022)) ([cdcfcff](https://github.com/vtex/faststore/commit/cdcfcff642561dd73b1f85557e101271d10ca930))
-
-## 1.2.33 (2021-11-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.32 (2021-11-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.31 (2021-11-04)
-
-### Features
-
-- **store-ui:** Breadcrumb improvements ([#1010](https://github.com/vtex/faststore/issues/1010)) ([8b4bf37](https://github.com/vtex/faststore/commit/8b4bf37316d6057683680de36493b63709bb1012))
-
-## 1.2.30 (2021-11-03)
-
-### Bug Fixes
-
-- Channel simulation ([#1014](https://github.com/vtex/faststore/issues/1014)) ([b45406b](https://github.com/vtex/faststore/commit/b45406b2b7ee8deb2b6e256629ba6df89d1b5940))
-
-## 1.2.29 (2021-11-03)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.28 (2021-10-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.27 (2021-10-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.26 (2021-10-29)
-
-### Bug Fixes
-
-- **store-ui:** Remove circular dependency ([#1011](https://github.com/vtex/faststore/issues/1011)) ([b9f08c9](https://github.com/vtex/faststore/commit/b9f08c95ae33bdbb09ffc044d6ad831fd6608144))
-
-## 1.2.25 (2021-10-28)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.24 (2021-10-28)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.23 (2021-10-27)
-
-### Features
-
-- **store-ui:** Add carousel tablist keyboard behavior ([#996](https://github.com/vtex/faststore/issues/996)) ([9081584](https://github.com/vtex/faststore/commit/908158460028009aaaa4ebbcd22eefab59e9bff8))
-
-## 1.2.22 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.21 (2021-10-26)
-
-### Features
-
-- **store-ui:** Form molecule ([#1004](https://github.com/vtex/faststore/issues/1004)) ([c584ef6](https://github.com/vtex/faststore/commit/c584ef693d111ede70d27730ecb3cce613b9aba3))
-
-## 1.2.20 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.19 (2021-10-25)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.18 (2021-10-25)
-
-### Features
-
-- **store-ui:** Breadcrumb molecule ([#986](https://github.com/vtex/faststore/issues/986)) ([325c738](https://github.com/vtex/faststore/commit/325c7387089d2f2c7152191b54fc3cb4918f1c68))
-
-## 1.2.17 (2021-10-21)
-
-### Features
-
-- **store-ui:** Loading Button molecule ([#962](https://github.com/vtex/faststore/issues/962)) ([6083ea0](https://github.com/vtex/faststore/commit/6083ea0273646a09e66ceedfab4b17c3960ac9fc)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.2.16 (2021-10-21)
-
-### Features
-
-- **store-ui:** Label atom ([#1001](https://github.com/vtex/faststore/issues/1001)) ([3306ea6](https://github.com/vtex/faststore/commit/3306ea6b9b48996574eac4b8c1b737dff94a438e))
-
-## 1.2.15 (2021-10-21)
-
-### Bug Fixes
-
-- **store-ui:** Fix search-input a11y ([#1000](https://github.com/vtex/faststore/issues/1000)) ([f052f46](https://github.com/vtex/faststore/commit/f052f465e21aa4e2ca047327eeb0610b9b979f10))
-
-## 1.2.14 (2021-10-20)
-
-### Features
-
-- graphql-utils ([#998](https://github.com/vtex/faststore/issues/998)) ([bddf043](https://github.com/vtex/faststore/commit/bddf04308826369f86322851b554cc58ab5b2161))
-
-## 1.2.13 (2021-10-20)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.12 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.11 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.10 (2021-10-18)
-
-### Bug Fixes
-
-- **store-ui:** Component Architecture doc's code snippets ([#997](https://github.com/vtex/faststore/issues/997)) ([7f0d5f3](https://github.com/vtex/faststore/commit/7f0d5f307014f794063dd8d94d873478803888c0))
-
-## 1.2.9 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.8 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.7 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.6 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.5 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.4 (2021-10-14)
-
-### Features
-
-- **store-ui:** Accordion molecule ([#985](https://github.com/vtex/faststore/issues/985)) ([a35fb51](https://github.com/vtex/faststore/commit/a35fb51b675e41af6070da8b521a3a4da25a0d65))
-
-## 1.2.3 (2021-10-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.2 (2021-10-13)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.2.1 (2021-10-08)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.1.18 (2021-10-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.1.17 (2021-10-05)
-
-### Features
-
-- **store-api:** Add channel support for products ([#968](https://github.com/vtex/faststore/issues/968)) ([923d343](https://github.com/vtex/faststore/commit/923d343bcde8fbebfff9d32ba52ac26cd0504484))
-
-## 1.1.16 (2021-10-04)
-
-### Features
-
-- **store-api:** Add cart to store-api ([#963](https://github.com/vtex/faststore/issues/963)) ([0607d82](https://github.com/vtex/faststore/commit/0607d82f9f17de0b4045a7efbe99004d43e87056))
-
-## 1.1.15 (2021-10-01)
-
-### Features
-
-- Configure storybook theme ([#979](https://github.com/vtex/faststore/issues/979)) ([736811f](https://github.com/vtex/faststore/commit/736811f6381b4fd5f3f6d976198262216fe3ebcb))
-
-## 1.1.14 (2021-09-28)
-
-### Features
-
-- **store-ui:** Add Modal molecule ([#957](https://github.com/vtex/faststore/issues/957)) ([530b308](https://github.com/vtex/faststore/commit/530b3085a5707be459b37757844ce2e52b2f2981))
-
-## 1.1.13 (2021-09-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.1.12 (2021-09-22)
-
-### Bug Fixes
-
-- users were unable to develop a store in an account without CMS pages ([#969](https://github.com/vtex/faststore/issues/969)) ([7b28a4e](https://github.com/vtex/faststore/commit/7b28a4e0da1edec7e843a614339909c6565b220a))
-
-## 1.1.11 (2021-09-17)
-
-### Features
-
-- **store-ui:** Spinner atom ([#961](https://github.com/vtex/faststore/issues/961)) ([59034b7](https://github.com/vtex/faststore/commit/59034b726ac83c79f591cd24739a8c15316c92b3)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.1.10 (2021-09-16)
-
-### Features
-
-- **store-api:** Add codegen ([#960](https://github.com/vtex/faststore/issues/960)) ([5231e6c](https://github.com/vtex/faststore/commit/5231e6c455be73b9d870627188c07a420651ed44))
-
-## 1.1.9 (2021-09-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.1.8 (2021-09-14)
-
-### Features
-
-- **store-api:** Store API TypeDefs ([#942](https://github.com/vtex/faststore/issues/942)) ([b440dc9](https://github.com/vtex/faststore/commit/b440dc9f023da82b5c443c465375e74f909d1b8d))
-
-## 1.1.7 (2021-09-13)
-
-### Features
-
-- **store-ui:** Add Skeleton Atom ([#911](https://github.com/vtex/faststore/issues/911)) ([ef25cde](https://github.com/vtex/faststore/commit/ef25cdea6f6e344b4005ecd2ec0c80d959df35b0))
-
-## 1.1.6 (2021-09-09)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.1.5 (2021-09-09)
-
-### Features
-
-- **store-sdk:** custom events, tests and docs ([#937](https://github.com/vtex/faststore/issues/937)) ([c268542](https://github.com/vtex/faststore/commit/c2685425b8a2b6c40ce2f79a5a0afc2b2022760d))
-
-## 1.1.4 (2021-09-09)
-
-### Features
-
-- support lambdas ([#933](https://github.com/vtex/faststore/issues/933)) ([0f14557](https://github.com/vtex/faststore/commit/0f14557f7b98635bc82ede499b12cc28f2f51b6e))
-
-## 1.1.3 (2021-09-08)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.1.2 (2021-09-06)
-
-### Features
-
-- **store-ui:** adding list atom ([#918](https://github.com/vtex/faststore/issues/918)) ([72c3b2e](https://github.com/vtex/faststore/commit/72c3b2eeac85c784bbee310898b24823c2c18c3a))
-
-## 1.1.1 (2021-09-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## [1.0.3](https://github.com/vtex/faststore/compare/v1.1.0...v1.0.3) (2021-09-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.0.2 (2021-09-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 1.0.1 (2021-08-31)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.36 (2021-08-31)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.35 (2021-08-30)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.34 (2021-08-30)
-
-### Features
-
-- **store-ui:** price range ([#924](https://github.com/vtex/faststore/issues/924)) ([e5c5d9a](https://github.com/vtex/faststore/commit/e5c5d9aade59d91aead75af6a09d7db3cc67348e))
-
-## 0.373.33 (2021-08-30)
-
-### Features
-
-- **store-ui:** slider ([#917](https://github.com/vtex/faststore/issues/917)) ([15a5f82](https://github.com/vtex/faststore/commit/15a5f826f3ad0054934c5092a2def4cd8d2a7c3c))
-
-## 0.373.32 (2021-08-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.31 (2021-08-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.30 (2021-08-27)
-
-### Bug Fixes
-
-- move pixel back to gatsby-theme-store ([#922](https://github.com/vtex/faststore/issues/922)) ([58de70d](https://github.com/vtex/faststore/commit/58de70d943aec36883384a0d6545ad7ab7d8f6bb))
-
-## 0.373.29 (2021-08-26)
-
-### Bug Fixes
-
-- **gatsby-plugin-cms:** null cms nodes were preventing stores from building ([0270037](https://github.com/vtex/faststore/commit/027003711c00854fc6679b6d469a2be13a3d0437))
-
-## 0.373.28 (2021-08-26)
-
-### Features
-
-- **store-ui:** Add IconButton Molecule ([#900](https://github.com/vtex/faststore/issues/900)) ([0114409](https://github.com/vtex/faststore/commit/0114409d7efb8e5146d2b17b5fc5500ceb16b7bf))
-
-## 0.373.27 (2021-08-24)
-
-### Features
-
-- **store-ui:** Create Badge component ([#894](https://github.com/vtex/faststore/issues/894)) ([1438be3](https://github.com/vtex/faststore/commit/1438be37e9670028b263b2331bb7671cebcf4392))
-
-## 0.373.26 (2021-08-24)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.25 (2021-08-24)
-
-### Bug Fixes
-
-- **gatsby-plugin-graphql:** Export schema types ([#916](https://github.com/vtex/faststore/issues/916)) ([65d43d3](https://github.com/vtex/faststore/commit/65d43d3191422ef14988dabe0aa8383daf74b471))
-
-## 0.373.24 (2021-08-23)
-
-### Features
-
-- **store-ui:** radio component ([#906](https://github.com/vtex/faststore/issues/906)) ([06ef1dd](https://github.com/vtex/faststore/commit/06ef1dd3aa0cda304f4341697859c9b0fc16cfc2))
-
-## 0.373.23 (2021-08-23)
-
-### Features
-
-- **store-ui:** Adding select atom ([#876](https://github.com/vtex/faststore/issues/876)) ([3276269](https://github.com/vtex/faststore/commit/3276269813b6208b88d7178293b9550b2b05cc77))
-
-## 0.373.22 (2021-08-23)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.21 (2021-08-20)
-
-### Bug Fixes
-
-- **store-ui:** Remove unnecessary ID and improve a11y ([#915](https://github.com/vtex/faststore/issues/915)) ([7ee629d](https://github.com/vtex/faststore/commit/7ee629d6b738ed67332000e47ebdb9fcb5dc2883))
-
-## 0.373.20 (2021-08-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.19 (2021-08-18)
-
-### Features
-
-- **store-sdk:** Add Session to store-sdk ([#896](https://github.com/vtex/faststore/issues/896)) ([6a7f1b5](https://github.com/vtex/faststore/commit/6a7f1b5458bdb44aff2760bcd32ddf8888c05740))
-
-## 0.373.18 (2021-08-18)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.17 (2021-08-18)
-
-### Features
-
-- **store-ui:** Overlay Atom Component ([#890](https://github.com/vtex/faststore/issues/890)) ([a0757bc](https://github.com/vtex/faststore/commit/a0757bcf1155084f5b66f4625f47c8efa18285b3))
-
-## 0.373.16 (2021-08-17)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.15 (2021-08-16)
-
-### Features
-
-- **store-ui:** Create Carousel component and useSlider hook ([#815](https://github.com/vtex/faststore/issues/815)) ([f46108c](https://github.com/vtex/faststore/commit/f46108c038402f003c7157833efb052554d339d4))
-
-## 0.373.14 (2021-08-16)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Spread routes support ([#895](https://github.com/vtex/faststore/issues/895)) ([6bb2331](https://github.com/vtex/faststore/commit/6bb2331b8961245e8abf5f44fb2814f9562d1f3d))
-
-## 0.373.13 (2021-08-13)
-
-### Features
-
-- **store-ui:** Basic CSS theme and theme-addon for Storybook ([#828](https://github.com/vtex/faststore/issues/828)) ([e7338ad](https://github.com/vtex/faststore/commit/e7338adda76a090b0cd55c72a2e0867c92e15fb0))
-
-## 0.373.12 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.11 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.10 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.9 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.8 (2021-08-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.7 (2021-08-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.6 (2021-08-11)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.5 (2021-08-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.4 (2021-08-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.3 (2021-08-10)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.2 (2021-08-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.373.1 (2021-08-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.22 (2021-07-30)
-
-### Features
-
-- **collections:** Source collections from category tree ([#871](https://github.com/vtex/faststore/issues/871)) ([e4ca79a](https://github.com/vtex/faststore/commit/e4ca79a810ca89f609082b994a9ad069e9d64579))
-
-## 0.372.21 (2021-07-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.20 (2021-07-29)
-
-### Features
-
-- **gatsby-theme-store:** fix product click event ([#866](https://github.com/vtex/faststore/issues/866)) ([eeb4df2](https://github.com/vtex/faststore/commit/eeb4df2308a8113256c8c716574ef213d1da9468))
-
-## 0.372.19 (2021-07-29)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** useBuyButton only redirects users to the checkout when product is added successfully ([#823](https://github.com/vtex/faststore/issues/823)) ([304178e](https://github.com/vtex/faststore/commit/304178e05e2c396407f47afc76ba2e9b959f6147))
-
-## 0.372.18 (2021-07-27)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.17 (2021-07-22)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Fix proxy pass when toPath has port numbers on it ([#830](https://github.com/vtex/faststore/issues/830)) ([574f9bd](https://github.com/vtex/faststore/commit/574f9bd575fff7878106ef0f05145fd7f759a827))
-
-## 0.372.16 (2021-07-19)
-
-### Bug Fixes
-
-- **store-ui:** Fix bullets iterator ([#824](https://github.com/vtex/faststore/issues/824)) ([74034a6](https://github.com/vtex/faststore/commit/74034a667a6b4f40602ec179575bcedaf18c4af4))
-
-## 0.372.15 (2021-07-15)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.14 (2021-07-15)
-
-### Features
-
-- **store-ui:** update accordion version ([#820](https://github.com/vtex/faststore/issues/820)) ([624060a](https://github.com/vtex/faststore/commit/624060a1a88740794f82bb4d5782f896dc80695f))
-
-## 0.372.13 (2021-07-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.12 (2021-07-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.11 (2021-07-14)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.10 (2021-07-13)
-
-### Features
-
-- **seo:** Add next/prev links in search page's infinite scroll. ([#811](https://github.com/vtex/faststore/issues/811)) ([89fa673](https://github.com/vtex/faststore/commit/89fa6738034e290c6806a55db21209925cf50783))
-
-## 0.372.9 (2021-07-12)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.8 (2021-07-12)
-
-### Bug Fixes
-
-- **contributing:** updating documentation ([#816](https://github.com/vtex/faststore/issues/816)) ([7923668](https://github.com/vtex/faststore/commit/7923668033da7ea7243e72f54225f6e029626e64))
-
-## 0.372.7 (2021-07-09)
-
-### Features
-
-- **store-ui:** Adding data-testid to our components ([#530](https://github.com/vtex/faststore/issues/530)) ([eed2760](https://github.com/vtex/faststore/commit/eed2760438b3f83fd997ebb76e2794cfd56449aa))
-
-## 0.372.6 (2021-07-09)
-
-### Features
-
-- **store-ui:** Checkbox atom component ([#813](https://github.com/vtex/faststore/issues/813)) ([36834fa](https://github.com/vtex/faststore/commit/36834fa572305ca26c1fea8e60e011ff768bc13e))
-
-## 0.372.5 (2021-07-09)
-
-### Bug Fixes
-
-- **seo:** Fix undefined host in canonical tags of product pages ([#814](https://github.com/vtex/faststore/issues/814)) ([3ba980d](https://github.com/vtex/faststore/commit/3ba980d4a9bec1cb9cc8b6b51140e9418247ac6a))
-
-## 0.372.4 (2021-07-08)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.372.3 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** Move auth pages to stores ([#809](https://github.com/vtex/faststore/issues/809)) ([8abbe7f](https://github.com/vtex/faststore/commit/8abbe7fcb455fc1449960ef26a02df36a0d4c8dd))
-
-## 0.372.2 (2021-07-06)
-
-### Bug Fixes
-
-- **gatsby-plugin-thumbor:** Remove cookie on redirect ([#810](https://github.com/vtex/faststore/issues/810)) ([9a2f7fc](https://github.com/vtex/faststore/commit/9a2f7fcd3410ef606843c03552857f7e09f1528b))
-
-## 0.372.1 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** product view ([#803](https://github.com/vtex/faststore/issues/803)) ([082d3f9](https://github.com/vtex/faststore/commit/082d3f9b1ffac15f444b9a7aacc62f21dc331237))
-
-## 0.371.38 (2021-07-06)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.37 (2021-07-05)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** set isDisposable to true on setRegionMutation, fixing zip code persistence ([#802](https://github.com/vtex/faststore/issues/802)) ([#802](https://github.com/vtex/faststore/issues/802)) ([46f65f8](https://github.com/vtex/faststore/commit/46f65f89270cd8004283c14d8988a9490b513228))
-
-## 0.371.36 (2021-07-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.35 (2021-07-05)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.34 (2021-07-05)
-
-### Features
-
-- move status pages ([#807](https://github.com/vtex/faststore/issues/807)) ([4c5cf62](https://github.com/vtex/faststore/commit/4c5cf6282f18f797a52b06ba8d6770cf7b6c2533))
-
-## 0.371.33 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** complex plp navigation ([#749](https://github.com/vtex/faststore/issues/749)) ([849f079](https://github.com/vtex/faststore/commit/849f079a29550e9106d4aa00254cd81060022634))
-
-## 0.371.32 (2021-07-01)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.31 (2021-07-01)
-
-### Features
-
-- **store-ui:** components migration to .tsx + .mdx and update storybook version to v6.3 ([#782](https://github.com/vtex/faststore/issues/782)) ([9c8da3c](https://github.com/vtex/faststore/commit/9c8da3cc050e30916303b495b00532bde6c6328d))
-
-## 0.371.30 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-source-vtex:** page size ([#799](https://github.com/vtex/faststore/issues/799)) ([03b4b61](https://github.com/vtex/faststore/commit/03b4b61d8de5e5554b729e2ef41f0dfd7eca558d))
-
-## 0.371.29 (2021-06-30)
-
-### Features
-
-- Use Gatsby's file system routing API for product pages ([#795](https://github.com/vtex/faststore/issues/795)) ([c9b8eed](https://github.com/vtex/faststore/commit/c9b8eed75834738e9b869780790c772947ec65c3))
-
-## 0.371.28 (2021-06-30)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.27 (2021-06-30)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.26 (2021-06-29)
-
-**Note:** Version bump only for package @vtex/lighthouse-config
-
-## 0.371.25 (2021-06-29)
-
-### Features
-
-- product page incremental builds ([#793](https://github.com/vtex/faststore/issues/793)) ([8ab8bf0](https://github.com/vtex/faststore/commit/8ab8bf0b4a5b24d5e3a24ddc0bf1e449beb0aa88))
-
-## 0.371.24 (2021-06-25)
-
-### Features
-
-- add changelog with conventional commits ([#790](https://github.com/vtex/faststore/issues/790)) ([d8dfb0f](https://github.com/vtex/faststore/commit/d8dfb0fc075c9111bd30b8c0200166e715be44d7))
diff --git a/packages/sdk/CHANGELOG.md b/packages/sdk/CHANGELOG.md
deleted file mode 100644
index 1e779b2921..0000000000
--- a/packages/sdk/CHANGELOG.md
+++ /dev/null
@@ -1,1928 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## [2.0.162-alpha.0](https://github.com/vtex/faststore/compare/v2.0.161-alpha.0...v2.0.162-alpha.0) (2023-05-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## [2.0.158-alpha.0](https://github.com/vtex/faststore/compare/v2.0.157-alpha.0...v2.0.158-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## [2.0.156-alpha.0](https://github.com/vtex/faststore/compare/v2.0.155-alpha.0...v2.0.156-alpha.0) (2023-05-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## [2.0.118-alpha.0](https://github.com/vtex/faststore/compare/v2.0.117-alpha.0...v2.0.118-alpha.0) (2023-04-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-### Chores
-
-- remove docs ([#1584](https://github.com/vtex/faststore/issues/1584)) ([8d3cf8d](https://github.com/vtex/faststore/commit/8d3cf8d7ae0968136d1dd484299b17cc218f6e23))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-## [1.10.32](https://github.com/vtex/faststore/compare/v1.10.31...v1.10.32) (2022-08-02)
-
-### Features
-
-- useEffect is not for effects ([#1392](https://github.com/vtex/faststore/issues/1392)) ([caa85f6](https://github.com/vtex/faststore/commit/caa85f643832001b59f2095b2ecc50b7dadfabab))
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## [1.9.11](https://github.com/vtex/faststore/compare/v1.9.10...v1.9.11) (2022-06-19)
-
-### Features
-
-- Price range filter on PLP ([#1364](https://github.com/vtex/faststore/issues/1364)) ([a4c3fa7](https://github.com/vtex/faststore/commit/a4c3fa79c32d1db7bc737f5221479e6db1488866))
-
-## [1.9.10](https://github.com/vtex/faststore/compare/v1.9.9...v1.9.10) (2022-06-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.9.9 (2022-06-17)
-
-### Bug Fixes
-
-- add outdir to all tsconfig ([#1372](https://github.com/vtex/faststore/issues/1372)) ([8f847d9](https://github.com/vtex/faststore/commit/8f847d938b0ac66433a248bc77e77a21475b65db))
-- prettier format files ([#1369](https://github.com/vtex/faststore/issues/1369)) ([7f42ea9](https://github.com/vtex/faststore/commit/7f42ea913ee60333fe32434491f9be83c29a165d))
-
-## 1.9.8 (2022-06-17)
-
-### Features
-
-- lint ([#1368](https://github.com/vtex/faststore/issues/1368)) ([66ce99f](https://github.com/vtex/faststore/commit/66ce99f310ec593245e3937daea5ed813e1630e6))
-
-## 1.9.4 (2022-06-10)
-
-### Bug Fixes
-
-- codesandbox ci ([#1357](https://github.com/vtex/faststore/issues/1357)) ([db07e1f](https://github.com/vtex/faststore/commit/db07e1fb02f28b0f082c361cb2c28250a687b760))
-
-## [1.9.2](https://github.com/vtex/faststore/compare/v1.9.1...v1.9.2) (2022-06-09)
-
-### Bug Fixes
-
-- some ts errors ([#1352](https://github.com/vtex/faststore/issues/1352)) ([5268188](https://github.com/vtex/faststore/commit/5268188fa984df4ce775c996934a0462a76244ce))
-
-## 1.9.1 (2022-06-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.51 (2022-06-03)
-
-### Features
-
-- **UI:** Add Hero component ([#1336](https://github.com/vtex/faststore/issues/1336)) ([767c0cd](https://github.com/vtex/faststore/commit/767c0cdc5eaf6bd56020d64fd7718b1379c09390))
-
-## 1.8.49 (2022-05-31)
-
-### Bug Fixes
-
-- remove docs from build on codesandbox ([#1334](https://github.com/vtex/faststore/issues/1334)) ([c9eabde](https://github.com/vtex/faststore/commit/c9eabdea8d951d42a9b3898572719e1f45294b33))
-
-## [1.8.47](https://github.com/vtex/faststore/compare/v1.8.46...v1.8.47) (2022-05-30)
-
-### Bug Fixes
-
-- Circular dependency ([#1333](https://github.com/vtex/faststore/issues/1333)) ([d38941a](https://github.com/vtex/faststore/commit/d38941a2896f8922dafb7b5d2ea4eb85fae4b84d))
-
-## 1.8.46 (2022-05-30)
-
-### Features
-
-- using cache ([#1330](https://github.com/vtex/faststore/issues/1330)) ([6f8a7a4](https://github.com/vtex/faststore/commit/6f8a7a4a593f7e82586d7e3d48f5254e011b8df6))
-
-## 1.8.45 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## [1.8.44](https://github.com/vtex/faststore/compare/v1.8.43...v1.8.44) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.42 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.41 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.40 (2022-05-30)
-
-### Bug Fixes
-
-- Cart item with additionalProperty ([#1325](https://github.com/vtex/faststore/issues/1325)) ([8fa6aa1](https://github.com/vtex/faststore/commit/8fa6aa1a88d3e3702a017e581cbcff4281c47f4f))
-
-## 1.8.39 (2022-05-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.38 (2022-05-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.37 (2022-05-27)
-
-### Bug Fixes
-
-- Increase NodeJS version ([#1323](https://github.com/vtex/faststore/issues/1323)) ([3a6fbe7](https://github.com/vtex/faststore/commit/3a6fbe7c230b7056582c783464bfb45cc5717bed))
-
-## 1.8.36 (2022-05-26)
-
-### Bug Fixes
-
-- Top searches ([#1321](https://github.com/vtex/faststore/issues/1321)) ([e2ab99d](https://github.com/vtex/faststore/commit/e2ab99d4f443e013f3fd024fc83bb612fcb27f41))
-
-## 1.8.35 (2022-05-26)
-
-### Features
-
-- Add OutOfStock component ([#1314](https://github.com/vtex/faststore/issues/1314)) ([37eac86](https://github.com/vtex/faststore/commit/37eac86ede448ef68aef426f65f2d224694b2cfc))
-
-## 1.8.34 (2022-05-25)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.33 (2022-05-24)
-
-### Features
-
-- useStorage update onFocus ([#1316](https://github.com/vtex/faststore/issues/1316)) ([c9874d4](https://github.com/vtex/faststore/commit/c9874d46a16a09159e6e1bd4da4e61ec25bd62d2))
-
-## 1.8.32 (2022-05-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.31 (2022-05-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.30 (2022-05-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.29 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.28 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.27 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.26 (2022-05-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.25 (2022-05-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.24 (2022-05-18)
-
-### Bug Fixes
-
-- Breadcrumb broken links ([#1306](https://github.com/vtex/faststore/issues/1306)) ([e1d74d4](https://github.com/vtex/faststore/commit/e1d74d49dc3f7cf90caa80e480a01346934c0d43))
-
-## 1.8.23 (2022-05-17)
-
-### Features
-
-- Sync Cart with Checkout ([#1299](https://github.com/vtex/faststore/issues/1299)) ([62e8f56](https://github.com/vtex/faststore/commit/62e8f56b31c6bb6cf7260749a90ebef8aba9982b))
-
-## 1.8.22 (2022-05-17)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.21 (2022-05-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.20 (2022-05-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.19 (2022-05-14)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.18 (2022-05-14)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.17 (2022-05-13)
-
-### Features
-
-- **UI:** Add `ProductCard` component ([#1272](https://github.com/vtex/faststore/issues/1272)) ([ea62210](https://github.com/vtex/faststore/commit/ea6221080da8b3538551f7a77df61a14d8de297d))
-
-## 1.8.16 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.15 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.14 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.13 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.12 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.11 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.10 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.9 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.8 (2022-05-11)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.7 (2022-05-11)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.6 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.5 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.4 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.2 (2022-05-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.8.1 (2022-05-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.55 (2022-05-06)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.54 (2022-05-06)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.53 (2022-05-06)
-
-### Bug Fixes
-
-- suggestions api url ([#1273](https://github.com/vtex/faststore/issues/1273)) ([6f8a961](https://github.com/vtex/faststore/commit/6f8a9613e4627f91815e669a007ec4ff4c54ffe5))
-
-## 1.7.52 (2022-05-06)
-
-### Bug Fixes
-
-- Release workflow ([#1271](https://github.com/vtex/faststore/issues/1271)) ([3b995a8](https://github.com/vtex/faststore/commit/3b995a82c956c13c4d6f9453ac4f44195c5ef543))
-
-## 1.7.51 (2022-05-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.50 (2022-05-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.49 (2022-05-02)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.48 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.47 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.46 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.45 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.44 (2022-04-28)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.43 (2022-04-28)
-
-### Bug Fixes
-
-- api schema ([#1254](https://github.com/vtex/faststore/issues/1254)) ([c901b3d](https://github.com/vtex/faststore/commit/c901b3db8e002558e14101339c817ca87db8f949))
-
-## 1.7.42 (2022-04-28)
-
-### Features
-
-- search suggestions ([#1198](https://github.com/vtex/faststore/issues/1198)) ([2b19413](https://github.com/vtex/faststore/commit/2b19413dd11249e4d967ac1c4c1aabdc3a8ec1bf))
-
-## 1.7.41 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.40 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.39 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.38 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.37 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.36 (2022-04-27)
-
-### Bug Fixes
-
-- **api:** Remove circular dependencies ([#1243](https://github.com/vtex/faststore/issues/1243)) ([e988621](https://github.com/vtex/faststore/commit/e988621c77b946e397ecc33b82be65b04fa119ec))
-
-## 1.7.35 (2022-04-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.34 (2022-04-25)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.33 (2022-04-25)
-
-### Bug Fixes
-
-- **api:** SearchResult send events ([#1242](https://github.com/vtex/faststore/issues/1242)) ([9cc7cc4](https://github.com/vtex/faststore/commit/9cc7cc4d55802ef0dc75e22d58c46da899674555))
-
-## 1.7.32 (2022-04-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.31 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.30 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.29 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.28 (2022-04-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.27 (2022-04-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.26 (2022-04-19)
-
-### Reverts
-
-- Revert "feat: Add url to events (#1174)" (#1228) ([67ec438](https://github.com/vtex/faststore/commit/67ec4386b876a4de08bfd96df5147efa958d5496)), closes [#1174](https://github.com/vtex/faststore/issues/1174) [#1228](https://github.com/vtex/faststore/issues/1228)
-
-## 1.7.25 (2022-04-19)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.24 (2022-04-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.23 (2022-04-18)
-
-### Features
-
-- Add url to events ([#1174](https://github.com/vtex/faststore/issues/1174)) ([0e2befe](https://github.com/vtex/faststore/commit/0e2befe3cb5dc99521a470c4096e31237b93a9c0))
-
-## 1.7.22 (2022-04-13)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.21 (2022-04-12)
-
-### Features
-
-- AggregateRating (Stars) molecule ([#1037](https://github.com/vtex/faststore/issues/1037)) ([23f2fad](https://github.com/vtex/faststore/commit/23f2fad6fd4d58ea369a54a0b6600207016be17e))
-
-## 1.7.20 (2022-04-11)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.19 (2022-04-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.18 (2022-04-08)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.17 (2022-04-08)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.16 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.15 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.14 (2022-04-07)
-
-### Bug Fixes
-
-- Uses catalog slugify ([#1214](https://github.com/vtex/faststore/issues/1214)) ([0b38efc](https://github.com/vtex/faststore/commit/0b38efc96ecab8920cf15f01c29e7f9d5becba3d))
-
-## 1.7.13 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.12 (2022-04-06)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.11 (2022-04-06)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.10 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.9 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.8 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.7 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.6 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.5 (2022-04-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.4 (2022-04-01)
-
-### Bug Fixes
-
-- release notes images ([#1207](https://github.com/vtex/faststore/issues/1207)) ([279e019](https://github.com/vtex/faststore/commit/279e019bad25581712f73c8fe7a433200d711780))
-
-## 1.7.3 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.2 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.7.1 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.29 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown render in SSR ([#1202](https://github.com/vtex/faststore/issues/1202)) ([60f65b0](https://github.com/vtex/faststore/commit/60f65b0864c2fb59dff61e914c69a326b5229984))
-
-## 1.6.28 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown menu position with scroll ([#1199](https://github.com/vtex/faststore/issues/1199)) ([98a228e](https://github.com/vtex/faststore/commit/98a228e364ed26e480936406c1988026f9ebaffc))
-
-## 1.6.27 (2022-03-31)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.26 (2022-03-31)
-
-### Features
-
-- **api:** Handle channel as facet for search and product queries ([#1197](https://github.com/vtex/faststore/issues/1197)) ([00556b1](https://github.com/vtex/faststore/commit/00556b199a48617ff89b1a6b951a0c958f5aa018))
-
-## 1.6.25 (2022-03-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.24 (2022-03-29)
-
-### Bug Fixes
-
-- fix dropdown click bug ([#1196](https://github.com/vtex/faststore/issues/1196)) ([55202ea](https://github.com/vtex/faststore/commit/55202ead64933b71688ac7399211cc2f086596f2))
-
-## 1.6.23 (2022-03-28)
-
-### Bug Fixes
-
-- fix breadcrumb component bug ([#1193](https://github.com/vtex/faststore/issues/1193)) ([f36ba81](https://github.com/vtex/faststore/commit/f36ba814ed679523d8c1f030c31a086a9e5bb190))
-
-## 1.6.22 (2022-03-25)
-
-### Features
-
-- **sdk:** Improve useStorage and Optimistic revalidate effect ([#1186](https://github.com/vtex/faststore/issues/1186)) ([08c616b](https://github.com/vtex/faststore/commit/08c616be4c6bc5a215da7ab0c37ff2731aa09f9a))
-
-## 1.6.21 (2022-03-25)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.20 (2022-03-24)
-
-### Bug Fixes
-
-- fix dropdown component bug ([#1192](https://github.com/vtex/faststore/issues/1192)) ([f188ac0](https://github.com/vtex/faststore/commit/f188ac0c59db5a0ef7a95eb2412d0bbcd024ae36))
-
-## 1.6.19 (2022-03-24)
-
-### Features
-
-- Add exports to dropdown ([#1188](https://github.com/vtex/faststore/issues/1188)) ([f24359a](https://github.com/vtex/faststore/commit/f24359a34439e0ec8d3069483c31a6f62fa6535d))
-
-## 1.6.18 (2022-03-24)
-
-### Features
-
-- **api:** Add session mutation ([#1176](https://github.com/vtex/faststore/issues/1176)) ([0306167](https://github.com/vtex/faststore/commit/030616739cc62d9b5aa55cdf532ee6dea0bd793c))
-
-## 1.6.17 (2022-03-23)
-
-### Features
-
-- **UI:** Add dropdown component ([#1178](https://github.com/vtex/faststore/issues/1178)) ([e5153a6](https://github.com/vtex/faststore/commit/e5153a674c37bd2a8b4c65ae6f56eb5cabaf3fc8))
-
-## 1.6.16 (2022-03-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.15 (2022-03-22)
-
-### Bug Fixes
-
-- Fix some typos ([#1183](https://github.com/vtex/faststore/issues/1183)) ([97fffb0](https://github.com/vtex/faststore/commit/97fffb02d9cc72f07926bc1a9bc684a99d623765))
-
-## 1.6.14 (2022-03-21)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.13 (2022-03-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.12 (2022-03-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.11 (2022-03-17)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.10 (2022-03-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.9 (2022-03-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.8 (2022-03-15)
-
-### Features
-
-- Add Person Query ([#1139](https://github.com/vtex/faststore/issues/1139)) ([9ec28c2](https://github.com/vtex/faststore/commit/9ec28c21cc6412c5366d1a1c71ef043603cd50c7))
-
-## 1.6.7 (2022-03-14)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.6 (2022-03-14)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.5 (2022-03-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.4 (2022-03-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.3 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.2 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.6.1 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.20 (2022-02-25)
-
-### Bug Fixes
-
-- Cart item availability ([#1160](https://github.com/vtex/faststore/issues/1160)) ([fd1be18](https://github.com/vtex/faststore/commit/fd1be18b09e8e5141a2a899e786e7caf08b3ff62))
-
-## 1.5.19 (2022-02-24)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.18 (2022-02-23)
-
-### Bug Fixes
-
-- **ui:** Use valid HTML for the Breadcrumb's divider ([#1143](https://github.com/vtex/faststore/issues/1143)) ([b40c3b1](https://github.com/vtex/faststore/commit/b40c3b1405e6aa9a0f2006de9f37a903e40a2103))
-
-## 1.5.17 (2022-02-22)
-
-### Features
-
-- Moves some Filter logic to api ([#1154](https://github.com/vtex/faststore/issues/1154)) ([5a591f7](https://github.com/vtex/faststore/commit/5a591f7b42e947577597cc82d8df6a15d2994780))
-
-## 1.5.16 (2022-02-22)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.15 (2022-02-22)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.14 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580))
-
-## 1.5.13 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124))
-
-## 1.5.12 (2022-02-21)
-
-### Bug Fixes
-
-- allCollections query pagination and pagetype timeout errors ([#1140](https://github.com/vtex/faststore/issues/1140)) ([0150222](https://github.com/vtex/faststore/commit/01502220fb903c62f0b33b9a703fb45daafae141))
-
-## 1.5.11 (2022-02-18)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** remove trailing slash from incoming requests ([#1145](https://github.com/vtex/faststore/issues/1145)) ([db6f1e1](https://github.com/vtex/faststore/commit/db6f1e173ec43747bf9cfa244b81d86db8a25ce3))
-
-## 1.5.10 (2022-02-17)
-
-### Features
-
-- **api:** Add additional property ([#1107](https://github.com/vtex/faststore/issues/1107)) ([bbcfc4a](https://github.com/vtex/faststore/commit/bbcfc4af68148adb54d66a3f1d28a9817ad2956c))
-
-## 1.5.9 (2022-02-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.8 (2022-02-15)
-
-### Bug Fixes
-
-- **api:** PDP and PLP breadcrumb list item's URL paths ([#1148](https://github.com/vtex/faststore/issues/1148)) ([ea1790a](https://github.com/vtex/faststore/commit/ea1790a0069b5e19f656d7df0051f391c3c3c611))
-
-## 1.5.7 (2022-02-15)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.6 (2022-02-15)
-
-### Features
-
-- Add budgets lighthouse config ([#1150](https://github.com/vtex/faststore/issues/1150)) ([60de848](https://github.com/vtex/faststore/commit/60de84897cb25fe775a3197adf8035610882ced8))
-
-## 1.5.5 (2022-02-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.4 (2022-02-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.3 (2022-02-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.2 (2022-02-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.5.1 (2022-02-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.27 (2022-02-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.26 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.25 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.24 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.23 (2022-02-01)
-
-### Bug Fixes
-
-- unfiltered allCollections query ([#1131](https://github.com/vtex/faststore/issues/1131)) ([4a1744a](https://github.com/vtex/faststore/commit/4a1744ad267517bfb6d3b7d7747725da0533d13f))
-
-## 1.4.22 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.21 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.20 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.19 (2022-01-24)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.18 (2022-01-17)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.17 (2022-01-13)
-
-### Bug Fixes
-
-- replaceAll crashing build with env vars ([#1109](https://github.com/vtex/faststore/issues/1109)) ([801b62e](https://github.com/vtex/faststore/commit/801b62e118238b6828d8cdaa2aff96d6c40278a8))
-
-## 1.4.16 (2022-01-11)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.15 (2022-01-11)
-
-### Bug Fixes
-
-- **api:** Breadcrumb data on collection pages ([#1104](https://github.com/vtex/faststore/issues/1104)) ([25d3c2b](https://github.com/vtex/faststore/commit/25d3c2bd07158ffca75bfe377a5b932c8fb36ae5))
-
-## 1.4.14 (2022-01-07)
-
-### Features
-
-- add item generics to analytics types for easy customization ([#1101](https://github.com/vtex/faststore/issues/1101)) ([51e9d96](https://github.com/vtex/faststore/commit/51e9d96b82062113a96a95159963ff85a22086fc))
-
-## 1.4.13 (2022-01-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.12 (2022-01-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.11 (2022-01-06)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.10 (2022-01-06)
-
-### Bug Fixes
-
-- **api:** Sku loader ([#1100](https://github.com/vtex/faststore/issues/1100)) ([82d029f](https://github.com/vtex/faststore/commit/82d029fbb4fd7613c80d099587b00812c410e448))
-
-## 1.4.9 (2022-01-06)
-
-### Features
-
-- add headers to nginx via env vars ([#1049](https://github.com/vtex/faststore/issues/1049)) ([3553372](https://github.com/vtex/faststore/commit/355337273ce03660db9fd14482818cc24c99f4e2))
-
-## 1.4.8 (2022-01-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.7 (2022-01-05)
-
-### Bug Fixes
-
-- fix accessibility on storybook ([#1096](https://github.com/vtex/faststore/issues/1096)) ([55805b1](https://github.com/vtex/faststore/commit/55805b1b2cffd111ef64857321c20e0a001a93b2))
-
-## 1.4.6 (2022-01-05)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.5 (2022-01-04)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.4 (2022-01-04)
-
-### Bug Fixes
-
-- adjust data attributes pattern on multiple components ([#1093](https://github.com/vtex/faststore/issues/1093)) ([ca9172f](https://github.com/vtex/faststore/commit/ca9172fb353cfce7011f9144c1e94ed7e6b73f5f))
-
-## 1.4.3 (2022-01-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.4.2 (2022-01-03)
-
-### Bug Fixes
-
-- **ui:** removing aria-labelledby from payment methods component ([#1092](https://github.com/vtex/faststore/issues/1092)) ([bf4c7a9](https://github.com/vtex/faststore/commit/bf4c7a981c379ffb1777a2fd8cae787f735f7d2d))
-
-## 1.4.1 (2022-01-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.46 (2021-12-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.45 (2021-12-21)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.44 (2021-12-21)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.43 (2021-12-20)
-
-### Features
-
-- QuantitySelector component ([#1083](https://github.com/vtex/faststore/issues/1083)) ([6ade6c0](https://github.com/vtex/faststore/commit/6ade6c02b06fdb74ba2cd2978d8ac4bda35672d2))
-
-## 1.3.42 (2021-12-20)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.41 (2021-12-20)
-
-### Features
-
-- **ui:** Incentive atom ([#1064](https://github.com/vtex/faststore/issues/1064)) ([1b136c7](https://github.com/vtex/faststore/commit/1b136c7d7fc8f2b99259ef1908286713697e03da))
-
-## 1.3.40 (2021-12-18)
-
-### Features
-
-- **ui:** Link atom ([#1067](https://github.com/vtex/faststore/issues/1067)) ([c49b2dd](https://github.com/vtex/faststore/commit/c49b2ddc31ba4184bed19a8934fbf4d5f0b47a5f))
-
-## 1.3.39 (2021-12-17)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.38 (2021-12-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.37 (2021-12-15)
-
-### Features
-
-- **ui:** Card component ([#1079](https://github.com/vtex/faststore/issues/1079)) ([7f10a5d](https://github.com/vtex/faststore/commit/7f10a5dcec21f7c9d59ba645755fe298e96269df))
-
-## 1.3.36 (2021-12-15)
-
-### Bug Fixes
-
-- expose JS files only ([#1081](https://github.com/vtex/faststore/issues/1081)) ([e363c12](https://github.com/vtex/faststore/commit/e363c120f22b10da81ceb3e2d8fcc58c1b4665af))
-
-## 1.3.35 (2021-12-14)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.34 (2021-12-11)
-
-### Bug Fixes
-
-- **docs:** Fix algolia search ([#1078](https://github.com/vtex/faststore/issues/1078)) ([986074f](https://github.com/vtex/faststore/commit/986074f061365d812650a82748ca5a9fc1dac6d5))
-
-## 1.3.33 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.32 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.31 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.30 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.29 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.28 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.27 (2021-12-10)
-
-### Bug Fixes
-
-- Add Banner Components exportation ([#1072](https://github.com/vtex/faststore/issues/1072)) ([4024104](https://github.com/vtex/faststore/commit/4024104f9804c8762037f03d986a4334af819b3c))
-
-## 1.3.26 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.25 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.24 (2021-12-09)
-
-### Bug Fixes
-
-- fix UI storybook imports ([#1069](https://github.com/vtex/faststore/issues/1069)) ([e4a2402](https://github.com/vtex/faststore/commit/e4a2402235c60488fde7021bf3200d967af3cb83))
-
-## 1.3.23 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.22 (2021-12-07)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.21 (2021-12-07)
-
-### Features
-
-- add docs ([#1058](https://github.com/vtex/faststore/issues/1058)) ([35f3e62](https://github.com/vtex/faststore/commit/35f3e62ae09c350632479742c9ce2c22e8862b23))
-
-## 1.3.20 (2021-12-07)
-
-### Features
-
-- **store-ui:** Banner component ([#1048](https://github.com/vtex/faststore/issues/1048)) ([b65d8e5](https://github.com/vtex/faststore/commit/b65d8e574598f8bf8494aac478e4bec4d774ec86))
-
-## 1.3.19 (2021-12-07)
-
-### Features
-
-- **ui:** PaymentMethods Component ([#1024](https://github.com/vtex/faststore/issues/1024)) ([f093025](https://github.com/vtex/faststore/commit/f093025c5b010b01f16349e2460611792cfff67f))
-
-## 1.3.18 (2021-12-06)
-
-### Features
-
-- **store-ui:** Alert molecule ([#1020](https://github.com/vtex/faststore/issues/1020)) ([7764e0d](https://github.com/vtex/faststore/commit/7764e0d08270a3bb836038c4a9cd27e5cbef9667))
-
-## 1.3.17 (2021-12-06)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.16 (2021-12-06)
-
-### Bug Fixes
-
-- add fallback to prevent null facets attribute StoreSearchResult query ([#1056](https://github.com/vtex/faststore/issues/1056)) ([ae1483f](https://github.com/vtex/faststore/commit/ae1483fdb901328a7a7348746fd241b9ce7ea1da))
-
-## 1.3.15 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.14 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.13 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.12 (2021-12-02)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.11 (2021-12-02)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.10 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.9 (2021-12-01)
-
-### Bug Fixes
-
-- **api:** Throws NotFoundError when collection is not found ([#1047](https://github.com/vtex/faststore/issues/1047)) ([9535ec3](https://github.com/vtex/faststore/commit/9535ec3d67a64f98b4d4e914e7bae81e06935e2a))
-
-## 1.3.8 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.7 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.6 (2021-11-26)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.5 (2021-11-25)
-
-### Features
-
-- **ui:** RadioGroup Component ([#1033](https://github.com/vtex/faststore/issues/1033)) ([60f306d](https://github.com/vtex/faststore/commit/60f306d97257a8cc65ec67bf1f1cc16376ad1654))
-
-## 1.3.4 (2021-11-23)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.3 (2021-11-23)
-
-### Features
-
-- **gatsby-plugin-nginx:** support to augment the generateRewrites ([#1017](https://github.com/vtex/faststore/issues/1017)) ([46587b0](https://github.com/vtex/faststore/commit/46587b0280d7f8dd733a0dca29909f041c944897))
-
-## 1.3.2 (2021-11-22)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.3.1 (2021-11-18)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.37 (2021-11-17)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.36 (2021-11-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.35 (2021-11-16)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.34 (2021-11-16)
-
-### Bug Fixes
-
-- Filter collection slugs in api ([#1022](https://github.com/vtex/faststore/issues/1022)) ([cdcfcff](https://github.com/vtex/faststore/commit/cdcfcff642561dd73b1f85557e101271d10ca930))
-
-## 1.2.33 (2021-11-12)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.32 (2021-11-11)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.31 (2021-11-04)
-
-### Features
-
-- **store-ui:** Breadcrumb improvements ([#1010](https://github.com/vtex/faststore/issues/1010)) ([8b4bf37](https://github.com/vtex/faststore/commit/8b4bf37316d6057683680de36493b63709bb1012))
-
-## 1.2.30 (2021-11-03)
-
-### Bug Fixes
-
-- Channel simulation ([#1014](https://github.com/vtex/faststore/issues/1014)) ([b45406b](https://github.com/vtex/faststore/commit/b45406b2b7ee8deb2b6e256629ba6df89d1b5940))
-
-## 1.2.29 (2021-11-03)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.28 (2021-10-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.27 (2021-10-29)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.26 (2021-10-29)
-
-### Bug Fixes
-
-- **store-ui:** Remove circular dependency ([#1011](https://github.com/vtex/faststore/issues/1011)) ([b9f08c9](https://github.com/vtex/faststore/commit/b9f08c95ae33bdbb09ffc044d6ad831fd6608144))
-
-## 1.2.25 (2021-10-28)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.24 (2021-10-28)
-
-**Note:** Version bump only for package @faststore/sdk
-
-## 1.2.23 (2021-10-27)
-
-### Features
-
-- **store-ui:** Add carousel tablist keyboard behavior ([#996](https://github.com/vtex/faststore/issues/996)) ([9081584](https://github.com/vtex/faststore/commit/908158460028009aaaa4ebbcd22eefab59e9bff8))
-
-## 1.2.22 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.21 (2021-10-26)
-
-### Features
-
-- **store-ui:** Form molecule ([#1004](https://github.com/vtex/faststore/issues/1004)) ([c584ef6](https://github.com/vtex/faststore/commit/c584ef693d111ede70d27730ecb3cce613b9aba3))
-
-## 1.2.20 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.19 (2021-10-25)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.18 (2021-10-25)
-
-### Features
-
-- **store-ui:** Breadcrumb molecule ([#986](https://github.com/vtex/faststore/issues/986)) ([325c738](https://github.com/vtex/faststore/commit/325c7387089d2f2c7152191b54fc3cb4918f1c68))
-
-## 1.2.17 (2021-10-21)
-
-### Features
-
-- **store-ui:** Loading Button molecule ([#962](https://github.com/vtex/faststore/issues/962)) ([6083ea0](https://github.com/vtex/faststore/commit/6083ea0273646a09e66ceedfab4b17c3960ac9fc)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.2.16 (2021-10-21)
-
-### Features
-
-- **store-ui:** Label atom ([#1001](https://github.com/vtex/faststore/issues/1001)) ([3306ea6](https://github.com/vtex/faststore/commit/3306ea6b9b48996574eac4b8c1b737dff94a438e))
-
-## 1.2.15 (2021-10-21)
-
-### Bug Fixes
-
-- **store-ui:** Fix search-input a11y ([#1000](https://github.com/vtex/faststore/issues/1000)) ([f052f46](https://github.com/vtex/faststore/commit/f052f465e21aa4e2ca047327eeb0610b9b979f10))
-
-## 1.2.14 (2021-10-20)
-
-### Features
-
-- graphql-utils ([#998](https://github.com/vtex/faststore/issues/998)) ([bddf043](https://github.com/vtex/faststore/commit/bddf04308826369f86322851b554cc58ab5b2161))
-
-## 1.2.13 (2021-10-20)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.12 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.11 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.10 (2021-10-18)
-
-### Bug Fixes
-
-- **store-ui:** Component Architecture doc's code snippets ([#997](https://github.com/vtex/faststore/issues/997)) ([7f0d5f3](https://github.com/vtex/faststore/commit/7f0d5f307014f794063dd8d94d873478803888c0))
-
-## 1.2.9 (2021-10-18)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.8 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.7 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.6 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.5 (2021-10-15)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.4 (2021-10-14)
-
-### Features
-
-- **store-ui:** Accordion molecule ([#985](https://github.com/vtex/faststore/issues/985)) ([a35fb51](https://github.com/vtex/faststore/commit/a35fb51b675e41af6070da8b521a3a4da25a0d65))
-
-## 1.2.3 (2021-10-14)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.2 (2021-10-13)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.2.1 (2021-10-08)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.1.18 (2021-10-05)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.1.17 (2021-10-05)
-
-### Features
-
-- **store-api:** Add channel support for products ([#968](https://github.com/vtex/faststore/issues/968)) ([923d343](https://github.com/vtex/faststore/commit/923d343bcde8fbebfff9d32ba52ac26cd0504484))
-
-## 1.1.16 (2021-10-04)
-
-### Features
-
-- **store-api:** Add cart to store-api ([#963](https://github.com/vtex/faststore/issues/963)) ([0607d82](https://github.com/vtex/faststore/commit/0607d82f9f17de0b4045a7efbe99004d43e87056))
-
-## 1.1.15 (2021-10-01)
-
-### Features
-
-- Configure storybook theme ([#979](https://github.com/vtex/faststore/issues/979)) ([736811f](https://github.com/vtex/faststore/commit/736811f6381b4fd5f3f6d976198262216fe3ebcb))
-
-## 1.1.14 (2021-09-28)
-
-### Features
-
-- **store-ui:** Add Modal molecule ([#957](https://github.com/vtex/faststore/issues/957)) ([530b308](https://github.com/vtex/faststore/commit/530b3085a5707be459b37757844ce2e52b2f2981))
-
-## 1.1.13 (2021-09-23)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.1.12 (2021-09-22)
-
-### Bug Fixes
-
-- users were unable to develop a store in an account without CMS pages ([#969](https://github.com/vtex/faststore/issues/969)) ([7b28a4e](https://github.com/vtex/faststore/commit/7b28a4e0da1edec7e843a614339909c6565b220a))
-
-## 1.1.11 (2021-09-17)
-
-### Features
-
-- **store-ui:** Spinner atom ([#961](https://github.com/vtex/faststore/issues/961)) ([59034b7](https://github.com/vtex/faststore/commit/59034b726ac83c79f591cd24739a8c15316c92b3)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **store-ui:** Remove deprecated folders (#927)
-
-## 1.1.10 (2021-09-16)
-
-### Features
-
-- **store-api:** Add codegen ([#960](https://github.com/vtex/faststore/issues/960)) ([5231e6c](https://github.com/vtex/faststore/commit/5231e6c455be73b9d870627188c07a420651ed44))
-
-## 1.1.9 (2021-09-15)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.1.8 (2021-09-14)
-
-### Features
-
-- **store-api:** Store API TypeDefs ([#942](https://github.com/vtex/faststore/issues/942)) ([b440dc9](https://github.com/vtex/faststore/commit/b440dc9f023da82b5c443c465375e74f909d1b8d))
-
-## 1.1.7 (2021-09-13)
-
-### Features
-
-- **store-ui:** Add Skeleton Atom ([#911](https://github.com/vtex/faststore/issues/911)) ([ef25cde](https://github.com/vtex/faststore/commit/ef25cdea6f6e344b4005ecd2ec0c80d959df35b0))
-
-## 1.1.6 (2021-09-09)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.1.5 (2021-09-09)
-
-### Features
-
-- **store-sdk:** custom events, tests and docs ([#937](https://github.com/vtex/faststore/issues/937)) ([c268542](https://github.com/vtex/faststore/commit/c2685425b8a2b6c40ce2f79a5a0afc2b2022760d))
-
-## 1.1.4 (2021-09-09)
-
-### Features
-
-- support lambdas ([#933](https://github.com/vtex/faststore/issues/933)) ([0f14557](https://github.com/vtex/faststore/commit/0f14557f7b98635bc82ede499b12cc28f2f51b6e))
-
-## 1.1.3 (2021-09-08)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.1.2 (2021-09-06)
-
-### Features
-
-- **store-ui:** adding list atom ([#918](https://github.com/vtex/faststore/issues/918)) ([72c3b2e](https://github.com/vtex/faststore/commit/72c3b2eeac85c784bbee310898b24823c2c18c3a))
-
-## 1.1.1 (2021-09-01)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## [1.0.3](https://github.com/vtex/faststore/compare/v1.1.0...v1.0.3) (2021-09-01)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.0.2 (2021-09-01)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 1.0.1 (2021-08-31)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.36 (2021-08-31)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.35 (2021-08-30)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.34 (2021-08-30)
-
-### Features
-
-- **store-ui:** price range ([#924](https://github.com/vtex/faststore/issues/924)) ([e5c5d9a](https://github.com/vtex/faststore/commit/e5c5d9aade59d91aead75af6a09d7db3cc67348e))
-
-## 0.373.33 (2021-08-30)
-
-### Features
-
-- **store-ui:** slider ([#917](https://github.com/vtex/faststore/issues/917)) ([15a5f82](https://github.com/vtex/faststore/commit/15a5f826f3ad0054934c5092a2def4cd8d2a7c3c))
-
-## 0.373.32 (2021-08-27)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.31 (2021-08-27)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.30 (2021-08-27)
-
-### Bug Fixes
-
-- move pixel back to gatsby-theme-store ([#922](https://github.com/vtex/faststore/issues/922)) ([58de70d](https://github.com/vtex/faststore/commit/58de70d943aec36883384a0d6545ad7ab7d8f6bb))
-
-## 0.373.29 (2021-08-26)
-
-### Bug Fixes
-
-- **gatsby-plugin-cms:** null cms nodes were preventing stores from building ([0270037](https://github.com/vtex/faststore/commit/027003711c00854fc6679b6d469a2be13a3d0437))
-
-## 0.373.28 (2021-08-26)
-
-### Features
-
-- **store-ui:** Add IconButton Molecule ([#900](https://github.com/vtex/faststore/issues/900)) ([0114409](https://github.com/vtex/faststore/commit/0114409d7efb8e5146d2b17b5fc5500ceb16b7bf))
-
-## 0.373.27 (2021-08-24)
-
-### Features
-
-- **store-ui:** Create Badge component ([#894](https://github.com/vtex/faststore/issues/894)) ([1438be3](https://github.com/vtex/faststore/commit/1438be37e9670028b263b2331bb7671cebcf4392))
-
-## 0.373.26 (2021-08-24)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.25 (2021-08-24)
-
-### Bug Fixes
-
-- **gatsby-plugin-graphql:** Export schema types ([#916](https://github.com/vtex/faststore/issues/916)) ([65d43d3](https://github.com/vtex/faststore/commit/65d43d3191422ef14988dabe0aa8383daf74b471))
-
-## 0.373.24 (2021-08-23)
-
-### Features
-
-- **store-ui:** radio component ([#906](https://github.com/vtex/faststore/issues/906)) ([06ef1dd](https://github.com/vtex/faststore/commit/06ef1dd3aa0cda304f4341697859c9b0fc16cfc2))
-
-## 0.373.23 (2021-08-23)
-
-### Features
-
-- **store-ui:** Adding select atom ([#876](https://github.com/vtex/faststore/issues/876)) ([3276269](https://github.com/vtex/faststore/commit/3276269813b6208b88d7178293b9550b2b05cc77))
-
-## 0.373.22 (2021-08-23)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.21 (2021-08-20)
-
-### Bug Fixes
-
-- **store-ui:** Remove unnecessary ID and improve a11y ([#915](https://github.com/vtex/faststore/issues/915)) ([7ee629d](https://github.com/vtex/faststore/commit/7ee629d6b738ed67332000e47ebdb9fcb5dc2883))
-
-## 0.373.20 (2021-08-18)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.19 (2021-08-18)
-
-### Features
-
-- **store-sdk:** Add Session to store-sdk ([#896](https://github.com/vtex/faststore/issues/896)) ([6a7f1b5](https://github.com/vtex/faststore/commit/6a7f1b5458bdb44aff2760bcd32ddf8888c05740))
-
-## 0.373.18 (2021-08-18)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.17 (2021-08-18)
-
-### Features
-
-- **store-ui:** Overlay Atom Component ([#890](https://github.com/vtex/faststore/issues/890)) ([a0757bc](https://github.com/vtex/faststore/commit/a0757bcf1155084f5b66f4625f47c8efa18285b3))
-
-## 0.373.16 (2021-08-17)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.15 (2021-08-16)
-
-### Features
-
-- **store-ui:** Create Carousel component and useSlider hook ([#815](https://github.com/vtex/faststore/issues/815)) ([f46108c](https://github.com/vtex/faststore/commit/f46108c038402f003c7157833efb052554d339d4))
-
-## 0.373.14 (2021-08-16)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Spread routes support ([#895](https://github.com/vtex/faststore/issues/895)) ([6bb2331](https://github.com/vtex/faststore/commit/6bb2331b8961245e8abf5f44fb2814f9562d1f3d))
-
-## 0.373.13 (2021-08-13)
-
-### Features
-
-- **store-ui:** Basic CSS theme and theme-addon for Storybook ([#828](https://github.com/vtex/faststore/issues/828)) ([e7338ad](https://github.com/vtex/faststore/commit/e7338adda76a090b0cd55c72a2e0867c92e15fb0))
-
-## 0.373.12 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.11 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.10 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.9 (2021-08-12)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.8 (2021-08-11)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.7 (2021-08-11)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.6 (2021-08-11)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.5 (2021-08-10)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.4 (2021-08-10)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.3 (2021-08-10)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.2 (2021-08-05)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.373.1 (2021-08-05)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.22 (2021-07-30)
-
-### Features
-
-- **collections:** Source collections from category tree ([#871](https://github.com/vtex/faststore/issues/871)) ([e4ca79a](https://github.com/vtex/faststore/commit/e4ca79a810ca89f609082b994a9ad069e9d64579))
-
-## 0.372.21 (2021-07-29)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.20 (2021-07-29)
-
-### Features
-
-- **gatsby-theme-store:** fix product click event ([#866](https://github.com/vtex/faststore/issues/866)) ([eeb4df2](https://github.com/vtex/faststore/commit/eeb4df2308a8113256c8c716574ef213d1da9468))
-
-## 0.372.19 (2021-07-29)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** useBuyButton only redirects users to the checkout when product is added successfully ([#823](https://github.com/vtex/faststore/issues/823)) ([304178e](https://github.com/vtex/faststore/commit/304178e05e2c396407f47afc76ba2e9b959f6147))
-
-## 0.372.18 (2021-07-27)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.17 (2021-07-22)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Fix proxy pass when toPath has port numbers on it ([#830](https://github.com/vtex/faststore/issues/830)) ([574f9bd](https://github.com/vtex/faststore/commit/574f9bd575fff7878106ef0f05145fd7f759a827))
-
-## 0.372.16 (2021-07-19)
-
-### Bug Fixes
-
-- **store-ui:** Fix bullets iterator ([#824](https://github.com/vtex/faststore/issues/824)) ([74034a6](https://github.com/vtex/faststore/commit/74034a667a6b4f40602ec179575bcedaf18c4af4))
-
-## 0.372.15 (2021-07-15)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.14 (2021-07-15)
-
-### Features
-
-- **store-ui:** update accordion version ([#820](https://github.com/vtex/faststore/issues/820)) ([624060a](https://github.com/vtex/faststore/commit/624060a1a88740794f82bb4d5782f896dc80695f))
-
-## 0.372.13 (2021-07-14)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.12 (2021-07-14)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.11 (2021-07-14)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.10 (2021-07-13)
-
-### Features
-
-- **seo:** Add next/prev links in search page's infinite scroll. ([#811](https://github.com/vtex/faststore/issues/811)) ([89fa673](https://github.com/vtex/faststore/commit/89fa6738034e290c6806a55db21209925cf50783))
-
-## 0.372.9 (2021-07-12)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.8 (2021-07-12)
-
-### Bug Fixes
-
-- **contributing:** updating documentation ([#816](https://github.com/vtex/faststore/issues/816)) ([7923668](https://github.com/vtex/faststore/commit/7923668033da7ea7243e72f54225f6e029626e64))
-
-## 0.372.7 (2021-07-09)
-
-### Features
-
-- **store-ui:** Adding data-testid to our components ([#530](https://github.com/vtex/faststore/issues/530)) ([eed2760](https://github.com/vtex/faststore/commit/eed2760438b3f83fd997ebb76e2794cfd56449aa))
-
-## 0.372.6 (2021-07-09)
-
-### Features
-
-- **store-ui:** Checkbox atom component ([#813](https://github.com/vtex/faststore/issues/813)) ([36834fa](https://github.com/vtex/faststore/commit/36834fa572305ca26c1fea8e60e011ff768bc13e))
-
-## 0.372.5 (2021-07-09)
-
-### Bug Fixes
-
-- **seo:** Fix undefined host in canonical tags of product pages ([#814](https://github.com/vtex/faststore/issues/814)) ([3ba980d](https://github.com/vtex/faststore/commit/3ba980d4a9bec1cb9cc8b6b51140e9418247ac6a))
-
-## 0.372.4 (2021-07-08)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.372.3 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** Move auth pages to stores ([#809](https://github.com/vtex/faststore/issues/809)) ([8abbe7f](https://github.com/vtex/faststore/commit/8abbe7fcb455fc1449960ef26a02df36a0d4c8dd))
-
-## 0.372.2 (2021-07-06)
-
-### Bug Fixes
-
-- **gatsby-plugin-thumbor:** Remove cookie on redirect ([#810](https://github.com/vtex/faststore/issues/810)) ([9a2f7fc](https://github.com/vtex/faststore/commit/9a2f7fcd3410ef606843c03552857f7e09f1528b))
-
-## 0.372.1 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** product view ([#803](https://github.com/vtex/faststore/issues/803)) ([082d3f9](https://github.com/vtex/faststore/commit/082d3f9b1ffac15f444b9a7aacc62f21dc331237))
-
-## 0.371.38 (2021-07-06)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.37 (2021-07-05)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** set isDisposable to true on setRegionMutation, fixing zip code persistence ([#802](https://github.com/vtex/faststore/issues/802)) ([#802](https://github.com/vtex/faststore/issues/802)) ([46f65f8](https://github.com/vtex/faststore/commit/46f65f89270cd8004283c14d8988a9490b513228))
-
-## 0.371.36 (2021-07-05)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.35 (2021-07-05)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.34 (2021-07-05)
-
-### Features
-
-- move status pages ([#807](https://github.com/vtex/faststore/issues/807)) ([4c5cf62](https://github.com/vtex/faststore/commit/4c5cf6282f18f797a52b06ba8d6770cf7b6c2533))
-
-## 0.371.33 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** complex plp navigation ([#749](https://github.com/vtex/faststore/issues/749)) ([849f079](https://github.com/vtex/faststore/commit/849f079a29550e9106d4aa00254cd81060022634))
-
-## 0.371.32 (2021-07-01)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.31 (2021-07-01)
-
-### Features
-
-- **store-ui:** components migration to .tsx + .mdx and update storybook version to v6.3 ([#782](https://github.com/vtex/faststore/issues/782)) ([9c8da3c](https://github.com/vtex/faststore/commit/9c8da3cc050e30916303b495b00532bde6c6328d))
-
-## 0.371.30 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-source-vtex:** page size ([#799](https://github.com/vtex/faststore/issues/799)) ([03b4b61](https://github.com/vtex/faststore/commit/03b4b61d8de5e5554b729e2ef41f0dfd7eca558d))
-
-## 0.371.29 (2021-06-30)
-
-### Features
-
-- Use Gatsby's file system routing API for product pages ([#795](https://github.com/vtex/faststore/issues/795)) ([c9b8eed](https://github.com/vtex/faststore/commit/c9b8eed75834738e9b869780790c772947ec65c3))
-
-## 0.371.28 (2021-06-30)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.27 (2021-06-30)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.26 (2021-06-29)
-
-**Note:** Version bump only for package @vtex/store-sdk
-
-## 0.371.25 (2021-06-29)
-
-### Features
-
-- product page incremental builds ([#793](https://github.com/vtex/faststore/issues/793)) ([8ab8bf0](https://github.com/vtex/faststore/commit/8ab8bf0b4a5b24d5e3a24ddc0bf1e449beb0aa88))
-
-## 0.371.24 (2021-06-25)
-
-### Features
-
-- add changelog with conventional commits ([#790](https://github.com/vtex/faststore/issues/790)) ([d8dfb0f](https://github.com/vtex/faststore/commit/d8dfb0fc075c9111bd30b8c0200166e715be44d7))
diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md
deleted file mode 100644
index a262afbf2e..0000000000
--- a/packages/shared/CHANGELOG.md
+++ /dev/null
@@ -1,167 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/shared
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/shared
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/shared
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-### Features
-
-- Add seller dimension to channel ([#1484](https://github.com/vtex/faststore/issues/1484)) ([8119629](https://github.com/vtex/faststore/commit/8119629d64cef92d707f134071bb4f26f2e5800e))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-**Note:** Version bump only for package shared
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package shared
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package shared
diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md
deleted file mode 100644
index 238a3f491d..0000000000
--- a/packages/ui/CHANGELOG.md
+++ /dev/null
@@ -1,2410 +0,0 @@
-# Change Log
-
-All notable changes to this project will be documented in this file.
-See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
-
-## [2.0.175-alpha.0](https://github.com/vtex/faststore/compare/v2.0.174-alpha.0...v2.0.175-alpha.0) (2023-06-02)
-
-### Features
-
-- Allows some section's component to be overridable ([#1768](https://github.com/vtex/faststore/issues/1768)) ([e19cba2](https://github.com/vtex/faststore/commit/e19cba222351510ffc91ba130ed61e857e9e6bb5))
-
-## 2.0.173-alpha.0 (2023-06-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [2.0.169-alpha.0](https://github.com/vtex/faststore/compare/v2.0.168-alpha.0...v2.0.169-alpha.0) (2023-05-29)
-
-### Chores
-
-- Removes imports utilities styles from core package + enable system fonts ([#1792](https://github.com/vtex/faststore/issues/1792)) ([19de095](https://github.com/vtex/faststore/commit/19de095e0e47548386afb06ef057798ca54f6294))
-
-## [2.0.160-alpha.0](https://github.com/vtex/faststore/compare/v2.0.159-alpha.0...v2.0.160-alpha.0) (2023-05-24)
-
-### Bug Fixes
-
-- Integration tests ([#1772](https://github.com/vtex/faststore/issues/1772)) ([b750bcc](https://github.com/vtex/faststore/commit/b750bcc8298e7fd467e6e92da8a9de926d7fcffe))
-
-## [2.0.154-alpha.0](https://github.com/vtex/faststore/compare/v2.0.153-alpha.0...v2.0.154-alpha.0) (2023-05-23)
-
-### Features
-
-- Adjust `ProductShelf` for CMS ([#1766](https://github.com/vtex/faststore/issues/1766)) ([1798536](https://github.com/vtex/faststore/commit/1798536f60a508997616350f0b4ac6c11878dc04))
-
-## [2.0.152-alpha.0](https://github.com/vtex/faststore/compare/v2.0.151-alpha.0...v2.0.152-alpha.0) (2023-05-23)
-
-### Features
-
-- Fix Styles ([#1775](https://github.com/vtex/faststore/issues/1775)) ([2257f6e](https://github.com/vtex/faststore/commit/2257f6e59bac2dc574cf35d71967de5282374969))
-
-## [2.0.151-alpha.0](https://github.com/vtex/faststore/compare/v2.0.150-alpha.0...v2.0.151-alpha.0) (2023-05-22)
-
-### Features
-
-- Adjust `ProductDetails` for CMS ([#1740](https://github.com/vtex/faststore/issues/1740)) ([5cbd315](https://github.com/vtex/faststore/commit/5cbd31544bf57336f6d53780142338f80b61226b))
-
-## [2.0.142-alpha.0](https://github.com/vtex/faststore/compare/v2.0.141-alpha.0...v2.0.142-alpha.0) (2023-05-16)
-
-### Features
-
-- Adjust `Navbar` for CMS ([#1756](https://github.com/vtex/faststore/issues/1756)) ([105a8b2](https://github.com/vtex/faststore/commit/105a8b2f69ffd8438532d7c9eb959ed26a567675))
-
-## [2.0.139-alpha.0](https://github.com/vtex/faststore/compare/v2.0.138-alpha.0...v2.0.139-alpha.0) (2023-05-15)
-
-### Chores
-
-- Update Badge tokens ([#1761](https://github.com/vtex/faststore/issues/1761)) ([7c1764b](https://github.com/vtex/faststore/commit/7c1764b00b434f2380335ca68c4ba90a951a3c6d))
-
-## [2.0.137-alpha.0](https://github.com/vtex/faststore/compare/v2.0.136-alpha.0...v2.0.137-alpha.0) (2023-05-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [2.0.135-alpha.0](https://github.com/vtex/faststore/compare/v2.0.134-alpha.0...v2.0.135-alpha.0) (2023-05-10)
-
-### Bug Fixes
-
-- Lighthouse Performance 🟢 ([#1751](https://github.com/vtex/faststore/issues/1751)) ([bf8de0e](https://github.com/vtex/faststore/commit/bf8de0e5a8427fbe750b561a80fd186851ffd535))
-
-## [2.0.133-alpha.0](https://github.com/vtex/faststore/compare/v2.0.132-alpha.0...v2.0.133-alpha.0) (2023-05-09)
-
-### Features
-
-- Adjust `Footer` for CMS ([#1743](https://github.com/vtex/faststore/issues/1743)) ([86dd67a](https://github.com/vtex/faststore/commit/86dd67a293dcd3a67a5b96ac45dc27d097f95381))
-
-## [2.0.132-alpha.0](https://github.com/vtex/faststore/compare/v2.0.131-alpha.0...v2.0.132-alpha.0) (2023-05-09)
-
-### Bug Fixes
-
-- Lighthouse Checks 🟢 ([#1737](https://github.com/vtex/faststore/issues/1737)) ([b862703](https://github.com/vtex/faststore/commit/b862703ce991065f92765f4cecc88c9946b3d702)), closes [/github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js#L25](https://github.com/vtex//github.com/GoogleChrome/lighthouse-ci/blob/main/packages/utils/src/presets/all.js/issues/L25)
-
-## [2.0.128-alpha.0](https://github.com/vtex/faststore/compare/v2.0.127-alpha.0...v2.0.128-alpha.0) (2023-05-04)
-
-### Features
-
-- Adds `Carousel` Component 782 ([#1735](https://github.com/vtex/faststore/issues/1735)) ([a4d5156](https://github.com/vtex/faststore/commit/a4d5156404f47ce22fe2f9b5141b446f987bccbc))
-
-## [2.0.122-alpha.0](https://github.com/vtex/faststore/compare/v2.0.121-alpha.0...v2.0.122-alpha.0) (2023-04-27)
-
-### Bug Fixes
-
-- LH Unused CSS + Organizes CMS Sections and components styles. ([#1712](https://github.com/vtex/faststore/issues/1712)) ([0ab1fa8](https://github.com/vtex/faststore/commit/0ab1fa805e41a53f21cbe26dc5143f853b64dc00))
-
-## [2.0.117-alpha.0](https://github.com/vtex/faststore/compare/v2.0.116-alpha.0...v2.0.117-alpha.0) (2023-04-26)
-
-### Features
-
-- Adds `Navbar`, `NavbarSlider` and `NavbarLinks` components ([#1728](https://github.com/vtex/faststore/issues/1728)) ([30e3f59](https://github.com/vtex/faststore/commit/30e3f59fa75abe6d4155541615c30ccf9618be42))
-
-## [2.0.114-alpha.0](https://github.com/vtex/faststore/compare/v2.0.113-alpha.0...v2.0.114-alpha.0) (2023-04-24)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [2.0.113-alpha.0](https://github.com/vtex/faststore/compare/v2.0.112-alpha.0...v2.0.113-alpha.0) (2023-04-24)
-
-### Features
-
-- Adds `Navbar` component ([#1720](https://github.com/vtex/faststore/issues/1720)) ([58aac03](https://github.com/vtex/faststore/commit/58aac0366f3a5df042cd46ce9525e5f1af7b9a38))
-
-## [2.0.111-alpha.0](https://github.com/vtex/faststore/compare/v2.0.110-alpha.0...v2.0.111-alpha.0) (2023-04-18)
-
-### Features
-
-- Adds `ProductGrid` component ([#1719](https://github.com/vtex/faststore/issues/1719)) ([9cbe71f](https://github.com/vtex/faststore/commit/9cbe71f81395297c14b258efdd336b00f6b71071))
-
-## [2.0.110-alpha.0](https://github.com/vtex/faststore/compare/v2.0.109-alpha.0...v2.0.110-alpha.0) (2023-04-18)
-
-### Features
-
-- Add `ProductShelf` component ([#1713](https://github.com/vtex/faststore/issues/1713)) ([6a387a6](https://github.com/vtex/faststore/commit/6a387a665aa8a1eb65122abcce67d82b9ead4234))
-
-## [2.0.108-alpha.0](https://github.com/vtex/faststore/compare/v2.0.107-alpha.0...v2.0.108-alpha.0) (2023-04-17)
-
-### Features
-
-- Adds `EmptyState` component ([#1716](https://github.com/vtex/faststore/issues/1716)) ([82eaf9a](https://github.com/vtex/faststore/commit/82eaf9a628f417ee58d7cacb2678f8cdd81bfaec))
-
-## [2.0.107-alpha.0](https://github.com/vtex/faststore/compare/v2.0.106-alpha.0...v2.0.107-alpha.0) (2023-04-17)
-
-### Chores
-
-- Removes `Form` component ([#1717](https://github.com/vtex/faststore/issues/1717)) ([ffe1c2e](https://github.com/vtex/faststore/commit/ffe1c2ec93f261e24bf3c5a295cf359cf53bcc63))
-
-## [2.0.106-alpha.0](https://github.com/vtex/faststore/compare/v2.0.105-alpha.0...v2.0.106-alpha.0) (2023-04-12)
-
-### Features
-
-- Adds `RegionModal` component ([#1710](https://github.com/vtex/faststore/issues/1710)) ([d3b6c36](https://github.com/vtex/faststore/commit/d3b6c36af3fe3d9c826884654c8708d4a1d14d2d))
-
-## 2.0.104-alpha.0 (2023-04-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [2.0.103-alpha.0](https://github.com/vtex/faststore/compare/v2.0.102-alpha.0...v2.0.103-alpha.0) (2023-04-06)
-
-### Features
-
-- Add `ImageGallery` components ([#1681](https://github.com/vtex/faststore/issues/1681)) ([b44101c](https://github.com/vtex/faststore/commit/b44101c932b0758f9c1b09ee001d3221c338cf93)), closes [starter.store#37](https://github.com/vtex/starter.store/issues/37)
-
-## [2.0.102-alpha.0](https://github.com/vtex/faststore/compare/v2.0.101-alpha.0...v2.0.102-alpha.0) (2023-04-06)
-
-### Features
-
-- Adds `CartSidebar` and `OrderSummary` ([#1704](https://github.com/vtex/faststore/issues/1704)) ([a16e168](https://github.com/vtex/faststore/commit/a16e1683816ef84866de4cd7f8d8a64f951b98c6))
-
-## [2.0.99-alpha.0](https://github.com/vtex/faststore/compare/v2.0.98-alpha.0...v2.0.99-alpha.0) (2023-04-04)
-
-### Features
-
-- `Icon` with svg sprites ([#1682](https://github.com/vtex/faststore/issues/1682)) ([e199db7](https://github.com/vtex/faststore/commit/e199db7819ce015cc1c986c73a4a937153ddc062))
-
-## [2.0.95-alpha.0](https://github.com/vtex/faststore/compare/v2.0.94-alpha.0...v2.0.95-alpha.0) (2023-04-01)
-
-### Features
-
-- Adds `RegionBar` component ([#1693](https://github.com/vtex/faststore/issues/1693)) ([8390d82](https://github.com/vtex/faststore/commit/8390d829d4c1cab0f56a38b59bb2e1f1ab670fb1))
-
-## [2.0.93-alpha.0](https://github.com/vtex/faststore/compare/v2.0.92-alpha.0...v2.0.93-alpha.0) (2023-03-31)
-
-### Features
-
-- Adds `ShippingSimulation` Components. ([#1689](https://github.com/vtex/faststore/issues/1689)) ([0683882](https://github.com/vtex/faststore/commit/06838820af9da08541fbc8337504b92406c958d8))
-
-## 2.0.91-alpha.0 (2023-03-30)
-
-### Bug Fixes
-
-- `PaymentMethods` Flag size ([#1690](https://github.com/vtex/faststore/issues/1690)) ([499d83b](https://github.com/vtex/faststore/commit/499d83bb9c69d964b3df963d784d84cea4b01ed3))
-
-## [2.0.90-alpha.0](https://github.com/vtex/faststore/compare/v2.0.89-alpha.0...v2.0.90-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `Filter` and `FilterSlider` Components. ([#1687](https://github.com/vtex/faststore/issues/1687)) ([a18e1af](https://github.com/vtex/faststore/commit/a18e1af9fe6037f19a558f2c49e52ba01e50e95a))
-
-## [2.0.89-alpha.0](https://github.com/vtex/faststore/compare/v2.0.88-alpha.0...v2.0.89-alpha.0) (2023-03-29)
-
-### Features
-
-- Add `OutOfStock` components ([#1685](https://github.com/vtex/faststore/issues/1685)) ([25f4442](https://github.com/vtex/faststore/commit/25f444214e234f5f0f9287ef8bc403231b2eac2b))
-
-## [2.0.88-alpha.0](https://github.com/vtex/faststore/compare/v2.0.87-alpha.0...v2.0.88-alpha.0) (2023-03-29)
-
-### Features
-
-- Adds `SearchInput`, `SearchInputField` and `SearchDropdown` components ([#1676](https://github.com/vtex/faststore/issues/1676)) ([edba839](https://github.com/vtex/faststore/commit/edba8399a27f183f2092086b3c9d69cf5c1e8f52))
-
-## [2.0.87-alpha.0](https://github.com/vtex/faststore/compare/v2.0.86-alpha.0...v2.0.87-alpha.0) (2023-03-24)
-
-### Features
-
-- Adds `SkuSelector` component ([#1677](https://github.com/vtex/faststore/issues/1677)) ([696a14e](https://github.com/vtex/faststore/commit/696a14e6d9633ececcd2818e4a32b32ce8ad2e2b))
-
-## [2.0.85-alpha.0](https://github.com/vtex/faststore/compare/v2.0.84-alpha.0...v2.0.85-alpha.0) (2023-03-22)
-
-### Features
-
-- Adds `Toast` Component ([#1672](https://github.com/vtex/faststore/issues/1672)) ([5338c46](https://github.com/vtex/faststore/commit/5338c466d9fb326c3c85acee3c1049f954afd42a))
-
-## [2.0.81-alpha.0](https://github.com/vtex/faststore/compare/v2.0.80-alpha.0...v2.0.81-alpha.0) (2023-03-16)
-
-### Features
-
-- Image using next/future/image + new Thumbor URL ([#1661](https://github.com/vtex/faststore/issues/1661)) ([8b9a33b](https://github.com/vtex/faststore/commit/8b9a33bf2ce1d671498785a9a35db881c40fcf8e))
-
-## 2.0.79-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- husky pre-commit script + Lint-stage ([#1669](https://github.com/vtex/faststore/issues/1669)) ([5a3f3c8](https://github.com/vtex/faststore/commit/5a3f3c85ddc6b76377290a930cd70ed37735d8e8))
-
-## [2.0.75-alpha.0](https://github.com/vtex/faststore/compare/v2.0.74-alpha.0...v2.0.75-alpha.0) (2023-03-15)
-
-### Features
-
-- Add `SearchSuggestions` components ([#1654](https://github.com/vtex/faststore/issues/1654)) ([5dc8077](https://github.com/vtex/faststore/commit/5dc8077421267af882d22e85ddbbb8eacf807690))
-
-## 2.0.74-alpha.0 (2023-03-15)
-
-### Bug Fixes
-
-- publish version ([#1664](https://github.com/vtex/faststore/issues/1664)) ([9e29810](https://github.com/vtex/faststore/commit/9e29810f59402b694f26846db4e45971fb2e74b8))
-
-## 2.0.73-alpha.0 (2023-03-15)
-
-### Chores
-
-- attempts to fix publish workflow ([#1662](https://github.com/vtex/faststore/issues/1662)) ([7479889](https://github.com/vtex/faststore/commit/7479889f87533f8a040e4d11cd1fc5dd5c661202))
-
-## [2.0.70-alpha.0](https://github.com/vtex/faststore/compare/v2.0.69-alpha.0...v2.0.70-alpha.0) (2023-02-16)
-
-### Features
-
-- Adds `SearchProductCard` component ([#1640](https://github.com/vtex/faststore/issues/1640)) ([e175c8c](https://github.com/vtex/faststore/commit/e175c8c49e9c4caf9bc1730df14fa19f0f062356))
-
-## [2.0.69-alpha.0](https://github.com/vtex/faststore/compare/v2.0.68-alpha.0...v2.0.69-alpha.0) (2023-02-15)
-
-### Features
-
-- Add `Breadcrumb` component ([#1635](https://github.com/vtex/faststore/issues/1635)) ([20a2f1b](https://github.com/vtex/faststore/commit/20a2f1bb3cf8551e0477b5c4641ae9af4b20a525))
-
-## 2.0.66-alpha.0 (2023-02-13)
-
-### Bug Fixes
-
-- add metadata to search query ([#1633](https://github.com/vtex/faststore/issues/1633)) ([2da7276](https://github.com/vtex/faststore/commit/2da72763301fd6c677b6d7cf9152780c739ba1c1))
-
-## 2.0.65-alpha.0 (2023-02-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [2.0.63-alpha.0](https://github.com/vtex/faststore/compare/v2.0.62-alpha.0...v2.0.63-alpha.0) (2023-02-10)
-
-### Features
-
-- Adds `ProductCard` component ([#1623](https://github.com/vtex/faststore/issues/1623)) ([80588df](https://github.com/vtex/faststore/commit/80588df4a6c088035f60d563bfe6cd35f85b4a9c))
-
-## [2.0.62-alpha.0](https://github.com/vtex/faststore/compare/v2.0.61-alpha.0...v2.0.62-alpha.0) (2023-02-07)
-
-### Features
-
-- Adds `PaymentMethods` component ([#1626](https://github.com/vtex/faststore/issues/1626)) ([b3b8925](https://github.com/vtex/faststore/commit/b3b8925ea1a51a5036b4e839df0aea577ba1d232))
-
-## [2.0.61-alpha.0](https://github.com/vtex/faststore/compare/v2.0.60-alpha.0...v2.0.61-alpha.0) (2023-02-03)
-
-### Features
-
-- Adds `CartItem` component ([#1614](https://github.com/vtex/faststore/issues/1614)) ([48e04ea](https://github.com/vtex/faststore/commit/48e04eafd752ac4e97093bd40cb92e1d6e28e032))
-
-## 2.0.60-alpha.0 (2023-02-02)
-
-### Chores
-
-- **deps:** bump http-cache-semantics from 4.1.0 to 4.1.1 ([#1625](https://github.com/vtex/faststore/issues/1625)) ([57ddc8c](https://github.com/vtex/faststore/commit/57ddc8c6eaf529c87a59e2310f3d6d637f4969b6))
-
-## [2.0.59-alpha.0](https://github.com/vtex/faststore/compare/v2.0.58-alpha.0...v2.0.59-alpha.0) (2023-02-02)
-
-### Features
-
-- Adds `ProductTitle` component ([#1620](https://github.com/vtex/faststore/issues/1620)) ([8aba709](https://github.com/vtex/faststore/commit/8aba70970b46996b37f1e8dcb28b1d14c042a04e))
-
-## [2.0.57-alpha.0](https://github.com/vtex/faststore/compare/v2.0.56-alpha.0...v2.0.57-alpha.0) (2023-01-30)
-
-### Features
-
-- Adds `Skeleton` Component ([#1616](https://github.com/vtex/faststore/issues/1616)) ([ed2f82d](https://github.com/vtex/faststore/commit/ed2f82dd2a49dcb64611fb48c9b2519633a87251)), closes [#361](https://github.com/vtex/faststore/issues/361)
-
-## [2.0.56-alpha.0](https://github.com/vtex/faststore/compare/v2.0.55-alpha.0...v2.0.56-alpha.0) (2023-01-24)
-
-### Features
-
-- Adds `Modal` component ([#1615](https://github.com/vtex/faststore/issues/1615)) ([a976d53](https://github.com/vtex/faststore/commit/a976d530ce05e2ecefa8090be1237b293a8b97cc))
-
-## [2.0.54-alpha.0](https://github.com/vtex/faststore/compare/v2.0.53-alpha.0...v2.0.54-alpha.0) (2023-01-20)
-
-### Features
-
-- Adds `Slider` & `PriceRange` component ([#1605](https://github.com/vtex/faststore/issues/1605)) ([97bf10d](https://github.com/vtex/faststore/commit/97bf10d0d34c524a316e95127e4ed8096c9fca4e))
-
-## [2.0.53-alpha.0](https://github.com/vtex/faststore/compare/v2.0.52-alpha.0...v2.0.53-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `LoadingButton` and `Loader` component ([#1611](https://github.com/vtex/faststore/issues/1611)) ([34021b2](https://github.com/vtex/faststore/commit/34021b22a489cd0b70a1ae62d1076285cb95af59))
-
-## [2.0.52-alpha.0](https://github.com/vtex/faststore/compare/v2.0.51-alpha.0...v2.0.52-alpha.0) (2023-01-19)
-
-### Features
-
-- Adds `Gift` component ([#1610](https://github.com/vtex/faststore/issues/1610)) ([baa80af](https://github.com/vtex/faststore/commit/baa80afa5dc6160086cf8ac101cc4a4290435aa8))
-
-## [2.0.50-alpha.0](https://github.com/vtex/faststore/compare/v2.0.49-alpha.0...v2.0.50-alpha.0) (2023-01-16)
-
-### Features
-
-- Adds `RadioGroup` component ([#1604](https://github.com/vtex/faststore/issues/1604)) ([10abc3a](https://github.com/vtex/faststore/commit/10abc3a8b6d8871177e1a5b7728e8724e9a99f89))
-
-## 2.0.49-alpha.0 (2023-01-13)
-
-### Bug Fixes
-
-- dependabot ([#1607](https://github.com/vtex/faststore/issues/1607)) ([352be25](https://github.com/vtex/faststore/commit/352be2574543bae6b980b6a76036d5e9f53714e2))
-
-## 2.0.48-alpha.0 (2023-01-13)
-
-### Features
-
-- Adds `Alert` Component ([#1590](https://github.com/vtex/faststore/issues/1590)) ([6e1cc00](https://github.com/vtex/faststore/commit/6e1cc004a5f3ae8674798fe6a36fd2a5d1451d7c))
-
-### Bug Fixes
-
-- ui size limit ([#1608](https://github.com/vtex/faststore/issues/1608)) ([c19360f](https://github.com/vtex/faststore/commit/c19360f4eb0e1d1f53e578e8429daa1a716d881d))
-
-## [2.0.47-alpha.0](https://github.com/vtex/faststore/compare/v2.0.46-alpha.0...v2.0.47-alpha.0) (2023-01-13)
-
-### Features
-
-- Adds `QuantitySelector` component ([#1597](https://github.com/vtex/faststore/issues/1597)) ([a587155](https://github.com/vtex/faststore/commit/a5871559a4a28754dd9868b7f85c92a5bde52917))
-
-## [2.0.44-alpha.0](https://github.com/vtex/faststore/compare/v2.0.43-alpha.0...v2.0.44-alpha.0) (2023-01-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [2.0.41-alpha.0](https://github.com/vtex/faststore/compare/v2.0.40-alpha.0...v2.0.41-alpha.0) (2023-01-10)
-
-### Features
-
-- Adds `Dropdown` component ([#1572](https://github.com/vtex/faststore/issues/1572)) ([edfe557](https://github.com/vtex/faststore/commit/edfe55797d51049b137c1d8c0d648f36d3ebf980))
-
-## [2.0.38-alpha.0](https://github.com/vtex/faststore/compare/v2.0.37-alpha.0...v2.0.38-alpha.0) (2023-01-09)
-
-### Features
-
-- Adds `Accordion` component ([#1567](https://github.com/vtex/faststore/issues/1567)) ([0173e20](https://github.com/vtex/faststore/commit/0173e20b162d53d8faae0791e08110f335c6d6f6))
-
-## 2.0.37-alpha.0 (2023-01-06)
-
-### Chores
-
-- remove styles ([#1589](https://github.com/vtex/faststore/issues/1589)) ([7a21b1c](https://github.com/vtex/faststore/commit/7a21b1cfbbd7cee190299365087984c33cc8d4e2))
-
-## [2.0.36-alpha.0](https://github.com/vtex/faststore/compare/v2.0.35-alpha.0...v2.0.36-alpha.0) (2023-01-05)
-
-### Chores
-
-- Updates `Table` Colored Variant ([#1587](https://github.com/vtex/faststore/issues/1587)) ([04050eb](https://github.com/vtex/faststore/commit/04050eb920fe08ca3b4fe30a3e17fbf9dbedff44))
-
-## [2.0.35-alpha.0](https://github.com/vtex/faststore/compare/v2.0.34-alpha.0...v2.0.35-alpha.0) (2023-01-05)
-
-### Documentation
-
-- Updates Components `mdx` files and General Adjusts ([#1575](https://github.com/vtex/faststore/issues/1575)) ([2787bd0](https://github.com/vtex/faststore/commit/2787bd0db083b66f642ac6af2f141e98de87f6fd))
-
-## 2.0.34-alpha.0 (2023-01-04)
-
-### Chores
-
-- remove storybook ([#1586](https://github.com/vtex/faststore/issues/1586)) ([82dbfb3](https://github.com/vtex/faststore/commit/82dbfb3102850bfa1115547773f84a293a055c6b))
-
-## 2.0.33-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- remove storybook from ui ([#1579](https://github.com/vtex/faststore/issues/1579)) ([682d5e4](https://github.com/vtex/faststore/commit/682d5e4290beb738685fcdc009772d04c0901278))
-
-## 2.0.32-alpha.0 (2023-01-04)
-
-### Bug Fixes
-
-- yarn lock ([#1578](https://github.com/vtex/faststore/issues/1578)) ([d07ebf2](https://github.com/vtex/faststore/commit/d07ebf26fef4518a3a1a1ffede34371d8866a07b))
-
-### Chores
-
-- remove docs ([#1584](https://github.com/vtex/faststore/issues/1584)) ([8d3cf8d](https://github.com/vtex/faststore/commit/8d3cf8d7ae0968136d1dd484299b17cc218f6e23))
-
-## 2.0.31-alpha.0 (2023-01-03)
-
-### Bug Fixes
-
-- turbo config ([0048756](https://github.com/vtex/faststore/commit/00487564d0aa2a4bee382574a40fa20431a8f0eb))
-
-### Chores
-
-- lint ([#1576](https://github.com/vtex/faststore/issues/1576)) ([a9f5e2e](https://github.com/vtex/faststore/commit/a9f5e2e921a29af898e631380736ee1211aecc0d))
-
-## 2.0.30-alpha.0 (2023-01-02)
-
-### Documentation
-
-- cms ([#1573](https://github.com/vtex/faststore/issues/1573)) ([f540edd](https://github.com/vtex/faststore/commit/f540edd5e8c7ea10e8cd26b1c6f65b10ecce67c4))
-
-## [2.0.27-alpha.0](https://github.com/vtex/faststore/compare/v2.0.26-alpha.0...v2.0.27-alpha.0) (2022-12-23)
-
-### Features
-
-- Adds `Table` component ([#1554](https://github.com/vtex/faststore/issues/1554)) ([0ed5f45](https://github.com/vtex/faststore/commit/0ed5f455fa42cf3a02ae3dd0370759782caf6cdd))
-
-## [2.0.23-alpha.0](https://github.com/vtex/faststore/compare/v2.0.22-alpha.0...v2.0.23-alpha.0) (2022-12-20)
-
-### Bug Fixes
-
-- `Hero` component ([#1563](https://github.com/vtex/faststore/issues/1563)) ([471ec14](https://github.com/vtex/faststore/commit/471ec140506c4db79d63a31acc2555a0b8ae51ed))
-
-## [2.0.19-alpha.0](https://github.com/vtex/faststore/compare/v2.0.18-alpha.0...v2.0.19-alpha.0) (2022-12-16)
-
-### Features
-
-- Adds `Hero` component ([#1556](https://github.com/vtex/faststore/issues/1556)) ([871f35c](https://github.com/vtex/faststore/commit/871f35cdcfc85d5ec0038dcc55a9aeedcc5ff546))
-
-## [2.0.17-alpha.0](https://github.com/vtex/faststore/compare/v2.0.16-alpha.0...v2.0.17-alpha.0) (2022-12-15)
-
-### Features
-
-- Create `LinkButton` component ([#1558](https://github.com/vtex/faststore/issues/1558)) ([bbbebdb](https://github.com/vtex/faststore/commit/bbbebdb081f9c40315d8b661461e3b09a34b84b6))
-
-## [2.0.16-alpha.0](https://github.com/vtex/faststore/compare/v2.0.15-alpha.0...v2.0.16-alpha.0) (2022-12-15)
-
-### Features
-
-- Adds `Toggle` & `ToggleField` & `SROnly` components ([#1555](https://github.com/vtex/faststore/issues/1555)) ([b055c0a](https://github.com/vtex/faststore/commit/b055c0aa67291ad88e865b60e96b8a898a97db14))
-
-## [2.0.15-alpha.0](https://github.com/vtex/faststore/compare/v2.0.14-alpha.0...v2.0.15-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `List` component ([#1549](https://github.com/vtex/faststore/issues/1549)) ([55858fe](https://github.com/vtex/faststore/commit/55858fe39c254786e7c7a1e1dd3da96ed3be0d16))
-
-## [2.0.14-alpha.0](https://github.com/vtex/faststore/compare/v2.0.13-alpha.0...v2.0.14-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `Link` component ([#1543](https://github.com/vtex/faststore/issues/1543)) ([9c219eb](https://github.com/vtex/faststore/commit/9c219eba996fc6fec90edd1383a4abf8dbe0a7ef))
-
-## [2.0.13-alpha.0](https://github.com/vtex/faststore/compare/v2.0.12-alpha.0...v2.0.13-alpha.0) (2022-12-14)
-
-### Features
-
-- Adds `Select` and `SelectField` components ([#1547](https://github.com/vtex/faststore/issues/1547)) ([7c4beb0](https://github.com/vtex/faststore/commit/7c4beb085c893ad540e1a4440cc7b902fa36a75c))
-
-## [2.0.10-alpha.0](https://github.com/vtex/faststore/compare/v2.0.9-alpha.0...v2.0.10-alpha.0) (2022-12-12)
-
-### Features
-
-- Adds `ButtonBuy` component ([#1551](https://github.com/vtex/faststore/issues/1551)) ([cf48bc8](https://github.com/vtex/faststore/commit/cf48bc803f0537e1a32eb87ff18e8328646939a5))
-
-## [2.0.9-alpha.0](https://github.com/vtex/faststore/compare/v2.0.8-alpha.0...v2.0.9-alpha.0) (2022-12-12)
-
-### Features
-
-- Create `Price` component ([#1548](https://github.com/vtex/faststore/issues/1548)) ([2d7418a](https://github.com/vtex/faststore/commit/2d7418ad45f42cdb0174d45d7c4de5b6d6e27f60))
-
-## [2.0.7-alpha.0](https://github.com/vtex/faststore/compare/v2.0.6-alpha.0...v2.0.7-alpha.0) (2022-12-09)
-
-### Features
-
-- Adds `DiscountBadge` component ([#1546](https://github.com/vtex/faststore/issues/1546)) ([9b2e279](https://github.com/vtex/faststore/commit/9b2e27940ffa9b52c9a62541a07e1f593a0bcfb7)), closes [#313](https://github.com/vtex/faststore/issues/313)
-
-## [2.0.6-alpha.0](https://github.com/vtex/faststore/compare/v2.0.5-alpha.0...v2.0.6-alpha.0) (2022-12-08)
-
-### Features
-
-- Adds `Input` & `InputField` components ([#1545](https://github.com/vtex/faststore/issues/1545)) ([f89ec49](https://github.com/vtex/faststore/commit/f89ec4930dbcc7179f0fac484e16b0981540b6df))
-
-## [2.0.5-alpha.0](https://github.com/vtex/faststore/compare/v2.0.4-alpha.0...v2.0.5-alpha.0) (2022-12-07)
-
-### Features
-
-- `Overlay` Component. ([#1544](https://github.com/vtex/faststore/issues/1544)) ([dad6872](https://github.com/vtex/faststore/commit/dad6872654faaa4411d1f5949e5beab609e2ca36))
-
-## [2.0.4-alpha.0](https://github.com/vtex/faststore/compare/v2.0.3-alpha.0...v2.0.4-alpha.0) (2022-12-07)
-
-### Chores
-
-- config faststore ui ([#1495](https://github.com/vtex/faststore/issues/1495)) ([ed5aa8f](https://github.com/vtex/faststore/commit/ed5aa8f83ab3d929dd47f30b1e171240e1c3c459))
-
-## 2.0.3-alpha.0 (2022-11-30)
-
-### Chores
-
-- Change from `patch` to `prepatch` release (alpha) ([#1523](https://github.com/vtex/faststore/issues/1523)) ([2f2c5b7](https://github.com/vtex/faststore/commit/2f2c5b77d2d71f887dad64a9488fabc4e6a29e07))
-
-## [1.12.23](https://github.com/vtex/faststore/compare/v1.12.22...v1.12.23) (2022-11-04)
-
-### Features
-
-- Revisit `Carousel` component ([#1476](https://github.com/vtex/faststore/issues/1476)) ([5bf8662](https://github.com/vtex/faststore/commit/5bf86628e04fd5cf47c10071e66058de035d8023))
-
-## 1.12.20 (2022-10-26)
-
-### Chores
-
-- git blame ignore modification by data-fs ([#1494](https://github.com/vtex/faststore/issues/1494)) ([783079e](https://github.com/vtex/faststore/commit/783079e7095b39270bbb60e79063b774056dc5d4))
-
-## 1.12.19 (2022-10-25)
-
-### Bug Fixes
-
-- add shared tsconfig on cli ([#1492](https://github.com/vtex/faststore/issues/1492)) ([2f0a852](https://github.com/vtex/faststore/commit/2f0a8521bf4da351eee474912ed04f3dde090306)), closes [#1493](https://github.com/vtex/faststore/issues/1493)
-- yarn ([#1490](https://github.com/vtex/faststore/issues/1490)) ([52756b1](https://github.com/vtex/faststore/commit/52756b1ec66d9b70ae4899ed373a180749f8e5cd))
-
-## [1.12.17](https://github.com/vtex/faststore/compare/v1.12.16...v1.12.17) (2022-10-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.12.13](https://github.com/vtex/faststore/compare/v1.12.12...v1.12.13) (2022-10-11)
-
-### Bug Fixes
-
-- Rename `SearchInput`'s form data-attribute ([#1485](https://github.com/vtex/faststore/issues/1485)) ([c065646](https://github.com/vtex/faststore/commit/c065646948e32d3474f13b79a50090b6ed0bda28))
-
-## [1.12.11](https://github.com/vtex/faststore/compare/v1.12.10...v1.12.11) (2022-10-06)
-
-### Bug Fixes
-
-- using data-fs instead data-store ([#1482](https://github.com/vtex/faststore/issues/1482)) ([883d4f1](https://github.com/vtex/faststore/commit/883d4f139edc10aeeea1277b17b2674c94b0f777))
-
-## [1.12.5](https://github.com/vtex/faststore/compare/v1.12.4...v1.12.5) (2022-09-22)
-
-### Bug Fixes
-
-- fixes tsconfig.json to exclude storybook types inside .d.ts file ([#1472](https://github.com/vtex/faststore/issues/1472)) ([97274b5](https://github.com/vtex/faststore/commit/97274b58b79849cb670e87052130b2ed00bb53f4))
-
-## [1.12.4](https://github.com/vtex/faststore/compare/v1.12.3...v1.12.4) (2022-09-21)
-
-### Features
-
-- **ui:** improve extensibility of table and accordion molecules ([#1470](https://github.com/vtex/faststore/issues/1470)) ([2abf78c](https://github.com/vtex/faststore/commit/2abf78c36ce446f6e5b213738a359fb1b37e98a5))
-
-## [1.11.20](https://github.com/vtex/faststore/compare/v1.11.19...v1.11.20) (2022-09-12)
-
-### Refactoring
-
-- Extract `CartItem` component from the starter ([#1461](https://github.com/vtex/faststore/issues/1461)) ([ff70925](https://github.com/vtex/faststore/commit/ff70925abc123a9b6c66de248cdaf3541da66d41))
-
-## [1.11.19](https://github.com/vtex/faststore/compare/v1.11.18...v1.11.19) (2022-09-12)
-
-### Refactoring
-
-- Extract `SkuSelector` component from the starter ([#1462](https://github.com/vtex/faststore/issues/1462)) ([98a68ea](https://github.com/vtex/faststore/commit/98a68ea40cd64e2880b3b4a3f75dbd355463369f))
-
-## [1.11.18](https://github.com/vtex/faststore/compare/v1.11.17...v1.11.18) (2022-09-12)
-
-### Features
-
-- Adds OrderSummary component to FastStore UI ([#1456](https://github.com/vtex/faststore/issues/1456)) ([f1d983c](https://github.com/vtex/faststore/commit/f1d983cf5684053ad810455d2b6f6ac77bfc7b76))
-
-## 1.11.8 (2022-09-01)
-
-### Bug Fixes
-
-- Lint issues ([#1450](https://github.com/vtex/faststore/issues/1450)) ([139de34](https://github.com/vtex/faststore/commit/139de346d5d8f094caff4cc58f340f85043e1fb4))
-
-## [1.11.2](https://github.com/vtex/faststore/compare/v1.11.1...v1.11.2) (2022-08-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.10.34 (2022-08-04)
-
-### Features
-
-- Add skuSelector-related properties to ProductGroup type ([#1407](https://github.com/vtex/faststore/issues/1407)) ([3f9f33f](https://github.com/vtex/faststore/commit/3f9f33f05b47d266465f349edb7645ad06ff7b27))
-
-## [1.10.31](https://github.com/vtex/faststore/compare/v1.10.30...v1.10.31) (2022-08-02)
-
-### Features
-
-- Add fowardRef to `ProductTitle` ([#1427](https://github.com/vtex/faststore/issues/1427)) ([5f622f3](https://github.com/vtex/faststore/commit/5f622f3a28a32228aa457c0b1bd141969f541262))
-
-## 1.10.30 (2022-08-02)
-
-### Chores
-
-- Updates documentation link ([#1424](https://github.com/vtex/faststore/issues/1424)) ([04e518a](https://github.com/vtex/faststore/commit/04e518a92038259bda212024b85c1a807ebf0e1a))
-
-## [1.10.29](https://github.com/vtex/faststore/compare/v1.10.28...v1.10.29) (2022-07-29)
-
-### Features
-
-- Add ProductTitle Molecule ([#1418](https://github.com/vtex/faststore/issues/1418)) ([184d0b9](https://github.com/vtex/faststore/commit/184d0b9399648e3cab25cd2348c17269ac549f49))
-
-## [1.10.28](https://github.com/vtex/faststore/compare/v1.10.27...v1.10.28) (2022-07-28)
-
-### Bug Fixes
-
-- `Slider` thumb elements position ([#1423](https://github.com/vtex/faststore/issues/1423)) ([1207769](https://github.com/vtex/faststore/commit/12077694cde6d55ae30f76f277d5eaed20938f15))
-
-## [1.10.24](https://github.com/vtex/faststore/compare/v1.10.23...v1.10.24) (2022-07-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.10.22](https://github.com/vtex/faststore/compare/v1.10.21...v1.10.22) (2022-07-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.10.20](https://github.com/vtex/faststore/compare/v1.10.19...v1.10.20) (2022-07-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.10.18 (2022-07-20)
-
-### Bug Fixes
-
-- Add missing Catalog pageTypes to `@faststore/api` ([#1411](https://github.com/vtex/faststore/issues/1411)) ([e74890b](https://github.com/vtex/faststore/commit/e74890b8b3d3276970ed645bfc17381fc8e1c027))
-
-## 1.10.17 (2022-07-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.10.13](https://github.com/vtex/faststore/compare/v1.10.12...v1.10.13) (2022-07-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.10.12](https://github.com/vtex/faststore/compare/v1.10.11...v1.10.12) (2022-07-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.10.7](https://github.com/vtex/faststore/compare/v1.10.6...v1.10.7) (2022-07-06)
-
-### Features
-
-- Supports update of `Slider` and `PriceRange` values ([#1380](https://github.com/vtex/faststore/issues/1380)) ([41dca35](https://github.com/vtex/faststore/commit/41dca35f0c320cf1659e8a74032cc2ee755a9f6f))
-
-## 1.10.6 (2022-07-05)
-
-### Features
-
-- Support for cross selling API ([#1396](https://github.com/vtex/faststore/issues/1396)) ([98eb7e2](https://github.com/vtex/faststore/commit/98eb7e2cc6670bcb05d00418f901e26a2e9db8f0))
-
-## [1.9.19](https://github.com/vtex/faststore/compare/v1.9.18...v1.9.19) (2022-06-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.9.14](https://github.com/vtex/faststore/compare/v1.9.13...v1.9.14) (2022-06-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.9.11](https://github.com/vtex/faststore/compare/v1.9.10...v1.9.11) (2022-06-19)
-
-### Features
-
-- Price range filter on PLP ([#1364](https://github.com/vtex/faststore/issues/1364)) ([a4c3fa7](https://github.com/vtex/faststore/commit/a4c3fa79c32d1db7bc737f5221479e6db1488866))
-
-## [1.9.10](https://github.com/vtex/faststore/compare/v1.9.9...v1.9.10) (2022-06-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.9.9 (2022-06-17)
-
-### Bug Fixes
-
-- add outdir to all tsconfig ([#1372](https://github.com/vtex/faststore/issues/1372)) ([8f847d9](https://github.com/vtex/faststore/commit/8f847d938b0ac66433a248bc77e77a21475b65db))
-- prettier format files ([#1369](https://github.com/vtex/faststore/issues/1369)) ([7f42ea9](https://github.com/vtex/faststore/commit/7f42ea913ee60333fe32434491f9be83c29a165d))
-
-## 1.9.8 (2022-06-17)
-
-### Features
-
-- lint ([#1368](https://github.com/vtex/faststore/issues/1368)) ([66ce99f](https://github.com/vtex/faststore/commit/66ce99f310ec593245e3937daea5ed813e1630e6))
-
-## 1.9.4 (2022-06-10)
-
-### Bug Fixes
-
-- codesandbox ci ([#1357](https://github.com/vtex/faststore/issues/1357)) ([db07e1f](https://github.com/vtex/faststore/commit/db07e1fb02f28b0f082c361cb2c28250a687b760))
-
-## [1.9.2](https://github.com/vtex/faststore/compare/v1.9.1...v1.9.2) (2022-06-09)
-
-### Bug Fixes
-
-- some ts errors ([#1352](https://github.com/vtex/faststore/issues/1352)) ([5268188](https://github.com/vtex/faststore/commit/5268188fa984df4ce775c996934a0462a76244ce))
-
-## 1.9.1 (2022-06-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.8.52](https://github.com/vtex/faststore/compare/v1.8.51...v1.8.52) (2022-06-03)
-
-### Features
-
-- **ui:** Fix OutOfStock nested components ([#1341](https://github.com/vtex/faststore/issues/1341)) ([0bd85a6](https://github.com/vtex/faststore/commit/0bd85a6bd334c014559eced5a617a1476bfd8171))
-
-## 1.8.51 (2022-06-03)
-
-### Features
-
-- **UI:** Add Hero component ([#1336](https://github.com/vtex/faststore/issues/1336)) ([767c0cd](https://github.com/vtex/faststore/commit/767c0cdc5eaf6bd56020d64fd7718b1379c09390))
-
-## 1.8.49 (2022-05-31)
-
-### Bug Fixes
-
-- remove docs from build on codesandbox ([#1334](https://github.com/vtex/faststore/issues/1334)) ([c9eabde](https://github.com/vtex/faststore/commit/c9eabdea8d951d42a9b3898572719e1f45294b33))
-
-## 1.8.46 (2022-05-30)
-
-### Features
-
-- using cache ([#1330](https://github.com/vtex/faststore/issues/1330)) ([6f8a7a4](https://github.com/vtex/faststore/commit/6f8a7a4a593f7e82586d7e3d48f5254e011b8df6))
-
-## 1.8.45 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.8.44](https://github.com/vtex/faststore/compare/v1.8.43...v1.8.44) (2022-05-30)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.42 (2022-05-30)
-
-### Bug Fixes
-
-- github release ([194413b](https://github.com/vtex/faststore/commit/194413ba0087c8283942108ab5fdd25964b8901b))
-
-## 1.8.41 (2022-05-30)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.40 (2022-05-30)
-
-### Bug Fixes
-
-- Cart item with additionalProperty ([#1325](https://github.com/vtex/faststore/issues/1325)) ([8fa6aa1](https://github.com/vtex/faststore/commit/8fa6aa1a88d3e3702a017e581cbcff4281c47f4f))
-
-## 1.8.39 (2022-05-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.38 (2022-05-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.37 (2022-05-27)
-
-### Bug Fixes
-
-- Increase NodeJS version ([#1323](https://github.com/vtex/faststore/issues/1323)) ([3a6fbe7](https://github.com/vtex/faststore/commit/3a6fbe7c230b7056582c783464bfb45cc5717bed))
-
-## 1.8.36 (2022-05-26)
-
-### Bug Fixes
-
-- Top searches ([#1321](https://github.com/vtex/faststore/issues/1321)) ([e2ab99d](https://github.com/vtex/faststore/commit/e2ab99d4f443e013f3fd024fc83bb612fcb27f41))
-
-## 1.8.35 (2022-05-26)
-
-### Features
-
-- Add OutOfStock component ([#1314](https://github.com/vtex/faststore/issues/1314)) ([37eac86](https://github.com/vtex/faststore/commit/37eac86ede448ef68aef426f65f2d224694b2cfc))
-
-## 1.8.34 (2022-05-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.33 (2022-05-24)
-
-### Features
-
-- useStorage update onFocus ([#1316](https://github.com/vtex/faststore/issues/1316)) ([c9874d4](https://github.com/vtex/faststore/commit/c9874d46a16a09159e6e1bd4da4e61ec25bd62d2))
-
-## 1.8.32 (2022-05-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.31 (2022-05-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.30 (2022-05-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.29 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.28 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.27 (2022-05-19)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.26 (2022-05-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.25 (2022-05-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.24 (2022-05-18)
-
-### Bug Fixes
-
-- Breadcrumb broken links ([#1306](https://github.com/vtex/faststore/issues/1306)) ([e1d74d4](https://github.com/vtex/faststore/commit/e1d74d49dc3f7cf90caa80e480a01346934c0d43))
-
-## 1.8.23 (2022-05-17)
-
-### Features
-
-- Sync Cart with Checkout ([#1299](https://github.com/vtex/faststore/issues/1299)) ([62e8f56](https://github.com/vtex/faststore/commit/62e8f56b31c6bb6cf7260749a90ebef8aba9982b))
-
-## 1.8.22 (2022-05-17)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.21 (2022-05-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.20 (2022-05-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.19 (2022-05-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.18 (2022-05-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.17 (2022-05-13)
-
-### Features
-
-- **UI:** Add `ProductCard` component ([#1272](https://github.com/vtex/faststore/issues/1272)) ([ea62210](https://github.com/vtex/faststore/commit/ea6221080da8b3538551f7a77df61a14d8de297d))
-
-## 1.8.16 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.15 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.14 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.13 (2022-05-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.12 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.11 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.10 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.9 (2022-05-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.8 (2022-05-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.7 (2022-05-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.6 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.5 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.4 (2022-05-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.2 (2022-05-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.8.1 (2022-05-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.55 (2022-05-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.54 (2022-05-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.53 (2022-05-06)
-
-### Bug Fixes
-
-- suggestions api url ([#1273](https://github.com/vtex/faststore/issues/1273)) ([6f8a961](https://github.com/vtex/faststore/commit/6f8a9613e4627f91815e669a007ec4ff4c54ffe5))
-
-## 1.7.52 (2022-05-06)
-
-### Bug Fixes
-
-- Release workflow ([#1271](https://github.com/vtex/faststore/issues/1271)) ([3b995a8](https://github.com/vtex/faststore/commit/3b995a82c956c13c4d6f9453ac4f44195c5ef543))
-
-## 1.7.51 (2022-05-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.50 (2022-05-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.49 (2022-05-02)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.48 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.47 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.46 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.45 (2022-04-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.44 (2022-04-28)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.43 (2022-04-28)
-
-### Bug Fixes
-
-- api schema ([#1254](https://github.com/vtex/faststore/issues/1254)) ([c901b3d](https://github.com/vtex/faststore/commit/c901b3db8e002558e14101339c817ca87db8f949))
-
-## 1.7.42 (2022-04-28)
-
-### Features
-
-- search suggestions ([#1198](https://github.com/vtex/faststore/issues/1198)) ([2b19413](https://github.com/vtex/faststore/commit/2b19413dd11249e4d967ac1c4c1aabdc3a8ec1bf))
-
-## 1.7.41 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.40 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.39 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.38 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.37 (2022-04-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.36 (2022-04-27)
-
-### Bug Fixes
-
-- **api:** Remove circular dependencies ([#1243](https://github.com/vtex/faststore/issues/1243)) ([e988621](https://github.com/vtex/faststore/commit/e988621c77b946e397ecc33b82be65b04fa119ec))
-
-## 1.7.35 (2022-04-26)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.34 (2022-04-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.33 (2022-04-25)
-
-### Bug Fixes
-
-- **api:** SearchResult send events ([#1242](https://github.com/vtex/faststore/issues/1242)) ([9cc7cc4](https://github.com/vtex/faststore/commit/9cc7cc4d55802ef0dc75e22d58c46da899674555))
-
-## 1.7.32 (2022-04-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.31 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.30 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.29 (2022-04-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.28 (2022-04-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.27 (2022-04-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.26 (2022-04-19)
-
-### Reverts
-
-- Revert "feat: Add url to events (#1174)" (#1228) ([67ec438](https://github.com/vtex/faststore/commit/67ec4386b876a4de08bfd96df5147efa958d5496)), closes [#1174](https://github.com/vtex/faststore/issues/1174) [#1228](https://github.com/vtex/faststore/issues/1228)
-
-## 1.7.25 (2022-04-19)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.24 (2022-04-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.23 (2022-04-18)
-
-### Features
-
-- Add url to events ([#1174](https://github.com/vtex/faststore/issues/1174)) ([0e2befe](https://github.com/vtex/faststore/commit/0e2befe3cb5dc99521a470c4096e31237b93a9c0))
-
-## 1.7.22 (2022-04-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.21 (2022-04-12)
-
-### Features
-
-- AggregateRating (Stars) molecule ([#1037](https://github.com/vtex/faststore/issues/1037)) ([23f2fad](https://github.com/vtex/faststore/commit/23f2fad6fd4d58ea369a54a0b6600207016be17e))
-
-## 1.7.20 (2022-04-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.19 (2022-04-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.18 (2022-04-08)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.17 (2022-04-08)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.16 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.15 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.14 (2022-04-07)
-
-### Bug Fixes
-
-- Uses catalog slugify ([#1214](https://github.com/vtex/faststore/issues/1214)) ([0b38efc](https://github.com/vtex/faststore/commit/0b38efc96ecab8920cf15f01c29e7f9d5becba3d))
-
-## 1.7.13 (2022-04-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.12 (2022-04-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.11 (2022-04-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.10 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.9 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.8 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.7 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.6 (2022-04-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.5 (2022-04-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.4 (2022-04-01)
-
-### Bug Fixes
-
-- release notes images ([#1207](https://github.com/vtex/faststore/issues/1207)) ([279e019](https://github.com/vtex/faststore/commit/279e019bad25581712f73c8fe7a433200d711780))
-
-## 1.7.3 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.2 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.7.1 (2022-04-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.29 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown render in SSR ([#1202](https://github.com/vtex/faststore/issues/1202)) ([60f65b0](https://github.com/vtex/faststore/commit/60f65b0864c2fb59dff61e914c69a326b5229984))
-
-## 1.6.28 (2022-03-31)
-
-### Bug Fixes
-
-- fix dropdown menu position with scroll ([#1199](https://github.com/vtex/faststore/issues/1199)) ([98a228e](https://github.com/vtex/faststore/commit/98a228e364ed26e480936406c1988026f9ebaffc))
-
-## 1.6.27 (2022-03-31)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.26 (2022-03-31)
-
-### Features
-
-- **api:** Handle channel as facet for search and product queries ([#1197](https://github.com/vtex/faststore/issues/1197)) ([00556b1](https://github.com/vtex/faststore/commit/00556b199a48617ff89b1a6b951a0c958f5aa018))
-
-## 1.6.25 (2022-03-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.24 (2022-03-29)
-
-### Bug Fixes
-
-- fix dropdown click bug ([#1196](https://github.com/vtex/faststore/issues/1196)) ([55202ea](https://github.com/vtex/faststore/commit/55202ead64933b71688ac7399211cc2f086596f2))
-
-## 1.6.23 (2022-03-28)
-
-### Bug Fixes
-
-- fix breadcrumb component bug ([#1193](https://github.com/vtex/faststore/issues/1193)) ([f36ba81](https://github.com/vtex/faststore/commit/f36ba814ed679523d8c1f030c31a086a9e5bb190))
-
-## 1.6.22 (2022-03-25)
-
-### Features
-
-- **sdk:** Improve useStorage and Optimistic revalidate effect ([#1186](https://github.com/vtex/faststore/issues/1186)) ([08c616b](https://github.com/vtex/faststore/commit/08c616be4c6bc5a215da7ab0c37ff2731aa09f9a))
-
-## 1.6.21 (2022-03-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.20 (2022-03-24)
-
-### Bug Fixes
-
-- fix dropdown component bug ([#1192](https://github.com/vtex/faststore/issues/1192)) ([f188ac0](https://github.com/vtex/faststore/commit/f188ac0c59db5a0ef7a95eb2412d0bbcd024ae36))
-
-## 1.6.19 (2022-03-24)
-
-### Features
-
-- Add exports to dropdown ([#1188](https://github.com/vtex/faststore/issues/1188)) ([f24359a](https://github.com/vtex/faststore/commit/f24359a34439e0ec8d3069483c31a6f62fa6535d))
-
-## 1.6.18 (2022-03-24)
-
-### Features
-
-- **api:** Add session mutation ([#1176](https://github.com/vtex/faststore/issues/1176)) ([0306167](https://github.com/vtex/faststore/commit/030616739cc62d9b5aa55cdf532ee6dea0bd793c))
-
-## 1.6.17 (2022-03-23)
-
-### Features
-
-- **UI:** Add dropdown component ([#1178](https://github.com/vtex/faststore/issues/1178)) ([e5153a6](https://github.com/vtex/faststore/commit/e5153a674c37bd2a8b4c65ae6f56eb5cabaf3fc8))
-
-## 1.6.16 (2022-03-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.15 (2022-03-22)
-
-### Bug Fixes
-
-- Fix some typos ([#1183](https://github.com/vtex/faststore/issues/1183)) ([97fffb0](https://github.com/vtex/faststore/commit/97fffb02d9cc72f07926bc1a9bc684a99d623765))
-
-## 1.6.14 (2022-03-21)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.13 (2022-03-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.12 (2022-03-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.11 (2022-03-17)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.10 (2022-03-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.9 (2022-03-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.8 (2022-03-15)
-
-### Features
-
-- Add Person Query ([#1139](https://github.com/vtex/faststore/issues/1139)) ([9ec28c2](https://github.com/vtex/faststore/commit/9ec28c21cc6412c5366d1a1c71ef043603cd50c7))
-
-## 1.6.7 (2022-03-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.6 (2022-03-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.5 (2022-03-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.4 (2022-03-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.3 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.2 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.6.1 (2022-03-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.20 (2022-02-25)
-
-### Bug Fixes
-
-- Cart item availability ([#1160](https://github.com/vtex/faststore/issues/1160)) ([fd1be18](https://github.com/vtex/faststore/commit/fd1be18b09e8e5141a2a899e786e7caf08b3ff62))
-
-## 1.5.19 (2022-02-24)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.18 (2022-02-23)
-
-### Bug Fixes
-
-- **ui:** Use valid HTML for the Breadcrumb's divider ([#1143](https://github.com/vtex/faststore/issues/1143)) ([b40c3b1](https://github.com/vtex/faststore/commit/b40c3b1405e6aa9a0f2006de9f37a903e40a2103))
-
-## 1.5.17 (2022-02-22)
-
-### Features
-
-- Moves some Filter logic to api ([#1154](https://github.com/vtex/faststore/issues/1154)) ([5a591f7](https://github.com/vtex/faststore/commit/5a591f7b42e947577597cc82d8df6a15d2994780))
-
-## 1.5.16 (2022-02-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.15 (2022-02-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.14 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference export ([#1155](https://github.com/vtex/faststore/issues/1155)) ([22d632d](https://github.com/vtex/faststore/commit/22d632d02657be5bef7595ad4179e5086eef7580))
-
-## 1.5.13 (2022-02-22)
-
-### Features
-
-- Ajust SearchInput reference ([#1153](https://github.com/vtex/faststore/issues/1153)) ([c2ee199](https://github.com/vtex/faststore/commit/c2ee199402bc4e9d5846dc50778778e940ac7124))
-
-## 1.5.12 (2022-02-21)
-
-### Bug Fixes
-
-- allCollections query pagination and pagetype timeout errors ([#1140](https://github.com/vtex/faststore/issues/1140)) ([0150222](https://github.com/vtex/faststore/commit/01502220fb903c62f0b33b9a703fb45daafae141))
-
-## 1.5.11 (2022-02-18)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** remove trailing slash from incoming requests ([#1145](https://github.com/vtex/faststore/issues/1145)) ([db6f1e1](https://github.com/vtex/faststore/commit/db6f1e173ec43747bf9cfa244b81d86db8a25ce3))
-
-## 1.5.10 (2022-02-17)
-
-### Features
-
-- **api:** Add additional property ([#1107](https://github.com/vtex/faststore/issues/1107)) ([bbcfc4a](https://github.com/vtex/faststore/commit/bbcfc4af68148adb54d66a3f1d28a9817ad2956c))
-
-## 1.5.9 (2022-02-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.8 (2022-02-15)
-
-### Bug Fixes
-
-- **api:** PDP and PLP breadcrumb list item's URL paths ([#1148](https://github.com/vtex/faststore/issues/1148)) ([ea1790a](https://github.com/vtex/faststore/commit/ea1790a0069b5e19f656d7df0051f391c3c3c611))
-
-## 1.5.7 (2022-02-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.6 (2022-02-15)
-
-### Features
-
-- Add budgets lighthouse config ([#1150](https://github.com/vtex/faststore/issues/1150)) ([60de848](https://github.com/vtex/faststore/commit/60de84897cb25fe775a3197adf8035610882ced8))
-
-## 1.5.5 (2022-02-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.4 (2022-02-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.3 (2022-02-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.2 (2022-02-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.5.1 (2022-02-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.27 (2022-02-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.26 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.25 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.24 (2022-02-02)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.23 (2022-02-01)
-
-### Bug Fixes
-
-- unfiltered allCollections query ([#1131](https://github.com/vtex/faststore/issues/1131)) ([4a1744a](https://github.com/vtex/faststore/commit/4a1744ad267517bfb6d3b7d7747725da0533d13f))
-
-## 1.4.22 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.21 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.20 (2022-01-26)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.19 (2022-01-24)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.18 (2022-01-17)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.17 (2022-01-13)
-
-### Bug Fixes
-
-- replaceAll crashing build with env vars ([#1109](https://github.com/vtex/faststore/issues/1109)) ([801b62e](https://github.com/vtex/faststore/commit/801b62e118238b6828d8cdaa2aff96d6c40278a8))
-
-## 1.4.16 (2022-01-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.15 (2022-01-11)
-
-### Bug Fixes
-
-- **api:** Breadcrumb data on collection pages ([#1104](https://github.com/vtex/faststore/issues/1104)) ([25d3c2b](https://github.com/vtex/faststore/commit/25d3c2bd07158ffca75bfe377a5b932c8fb36ae5))
-
-## 1.4.14 (2022-01-07)
-
-### Features
-
-- add item generics to analytics types for easy customization ([#1101](https://github.com/vtex/faststore/issues/1101)) ([51e9d96](https://github.com/vtex/faststore/commit/51e9d96b82062113a96a95159963ff85a22086fc))
-
-## 1.4.13 (2022-01-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.12 (2022-01-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.11 (2022-01-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.10 (2022-01-06)
-
-### Bug Fixes
-
-- **api:** Sku loader ([#1100](https://github.com/vtex/faststore/issues/1100)) ([82d029f](https://github.com/vtex/faststore/commit/82d029fbb4fd7613c80d099587b00812c410e448))
-
-## 1.4.9 (2022-01-06)
-
-### Features
-
-- add headers to nginx via env vars ([#1049](https://github.com/vtex/faststore/issues/1049)) ([3553372](https://github.com/vtex/faststore/commit/355337273ce03660db9fd14482818cc24c99f4e2))
-
-## 1.4.8 (2022-01-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.7 (2022-01-05)
-
-### Bug Fixes
-
-- fix accessibility on storybook ([#1096](https://github.com/vtex/faststore/issues/1096)) ([55805b1](https://github.com/vtex/faststore/commit/55805b1b2cffd111ef64857321c20e0a001a93b2))
-
-## 1.4.6 (2022-01-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.5 (2022-01-04)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.4 (2022-01-04)
-
-### Bug Fixes
-
-- adjust data attributes pattern on multiple components ([#1093](https://github.com/vtex/faststore/issues/1093)) ([ca9172f](https://github.com/vtex/faststore/commit/ca9172fb353cfce7011f9144c1e94ed7e6b73f5f))
-
-## 1.4.3 (2022-01-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.4.2 (2022-01-03)
-
-### Bug Fixes
-
-- **ui:** removing aria-labelledby from payment methods component ([#1092](https://github.com/vtex/faststore/issues/1092)) ([bf4c7a9](https://github.com/vtex/faststore/commit/bf4c7a981c379ffb1777a2fd8cae787f735f7d2d))
-
-## 1.4.1 (2022-01-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.46 (2021-12-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.45 (2021-12-21)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.44 (2021-12-21)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.43 (2021-12-20)
-
-### Features
-
-- QuantitySelector component ([#1083](https://github.com/vtex/faststore/issues/1083)) ([6ade6c0](https://github.com/vtex/faststore/commit/6ade6c02b06fdb74ba2cd2978d8ac4bda35672d2))
-
-## 1.3.42 (2021-12-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.41 (2021-12-20)
-
-### Features
-
-- **ui:** Incentive atom ([#1064](https://github.com/vtex/faststore/issues/1064)) ([1b136c7](https://github.com/vtex/faststore/commit/1b136c7d7fc8f2b99259ef1908286713697e03da))
-
-## 1.3.40 (2021-12-18)
-
-### Features
-
-- **ui:** Link atom ([#1067](https://github.com/vtex/faststore/issues/1067)) ([c49b2dd](https://github.com/vtex/faststore/commit/c49b2ddc31ba4184bed19a8934fbf4d5f0b47a5f))
-
-## 1.3.39 (2021-12-17)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.38 (2021-12-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.37 (2021-12-15)
-
-### Features
-
-- **ui:** Card component ([#1079](https://github.com/vtex/faststore/issues/1079)) ([7f10a5d](https://github.com/vtex/faststore/commit/7f10a5dcec21f7c9d59ba645755fe298e96269df))
-
-## 1.3.36 (2021-12-15)
-
-### Bug Fixes
-
-- expose JS files only ([#1081](https://github.com/vtex/faststore/issues/1081)) ([e363c12](https://github.com/vtex/faststore/commit/e363c120f22b10da81ceb3e2d8fcc58c1b4665af))
-
-## 1.3.35 (2021-12-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.34 (2021-12-11)
-
-### Bug Fixes
-
-- **docs:** Fix algolia search ([#1078](https://github.com/vtex/faststore/issues/1078)) ([986074f](https://github.com/vtex/faststore/commit/986074f061365d812650a82748ca5a9fc1dac6d5))
-
-## 1.3.33 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.32 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.31 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.30 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.29 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.28 (2021-12-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.27 (2021-12-10)
-
-### Bug Fixes
-
-- Add Banner Components exportation ([#1072](https://github.com/vtex/faststore/issues/1072)) ([4024104](https://github.com/vtex/faststore/commit/4024104f9804c8762037f03d986a4334af819b3c))
-
-## 1.3.26 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.25 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.24 (2021-12-09)
-
-### Bug Fixes
-
-- fix UI storybook imports ([#1069](https://github.com/vtex/faststore/issues/1069)) ([e4a2402](https://github.com/vtex/faststore/commit/e4a2402235c60488fde7021bf3200d967af3cb83))
-
-## 1.3.23 (2021-12-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.22 (2021-12-07)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.21 (2021-12-07)
-
-### Features
-
-- add docs ([#1058](https://github.com/vtex/faststore/issues/1058)) ([35f3e62](https://github.com/vtex/faststore/commit/35f3e62ae09c350632479742c9ce2c22e8862b23))
-
-## 1.3.20 (2021-12-07)
-
-### Features
-
-- **store-ui:** Banner component ([#1048](https://github.com/vtex/faststore/issues/1048)) ([b65d8e5](https://github.com/vtex/faststore/commit/b65d8e574598f8bf8494aac478e4bec4d774ec86))
-
-## 1.3.19 (2021-12-07)
-
-### Features
-
-- **ui:** PaymentMethods Component ([#1024](https://github.com/vtex/faststore/issues/1024)) ([f093025](https://github.com/vtex/faststore/commit/f093025c5b010b01f16349e2460611792cfff67f))
-
-## 1.3.18 (2021-12-06)
-
-### Features
-
-- **store-ui:** Alert molecule ([#1020](https://github.com/vtex/faststore/issues/1020)) ([7764e0d](https://github.com/vtex/faststore/commit/7764e0d08270a3bb836038c4a9cd27e5cbef9667))
-
-## 1.3.17 (2021-12-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.16 (2021-12-06)
-
-### Bug Fixes
-
-- add fallback to prevent null facets attribute StoreSearchResult query ([#1056](https://github.com/vtex/faststore/issues/1056)) ([ae1483f](https://github.com/vtex/faststore/commit/ae1483fdb901328a7a7348746fd241b9ce7ea1da))
-
-## 1.3.15 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.14 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.13 (2021-12-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.12 (2021-12-02)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.11 (2021-12-02)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.10 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.9 (2021-12-01)
-
-### Bug Fixes
-
-- **api:** Throws NotFoundError when collection is not found ([#1047](https://github.com/vtex/faststore/issues/1047)) ([9535ec3](https://github.com/vtex/faststore/commit/9535ec3d67a64f98b4d4e914e7bae81e06935e2a))
-
-## 1.3.8 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.7 (2021-12-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.6 (2021-11-26)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.5 (2021-11-25)
-
-### Features
-
-- **ui:** RadioGroup Component ([#1033](https://github.com/vtex/faststore/issues/1033)) ([60f306d](https://github.com/vtex/faststore/commit/60f306d97257a8cc65ec67bf1f1cc16376ad1654))
-
-## 1.3.4 (2021-11-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.3 (2021-11-23)
-
-### Features
-
-- **gatsby-plugin-nginx:** support to augment the generateRewrites ([#1017](https://github.com/vtex/faststore/issues/1017)) ([46587b0](https://github.com/vtex/faststore/commit/46587b0280d7f8dd733a0dca29909f041c944897))
-
-## 1.3.2 (2021-11-22)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.3.1 (2021-11-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.37 (2021-11-17)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.36 (2021-11-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.35 (2021-11-16)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.34 (2021-11-16)
-
-### Bug Fixes
-
-- Filter collection slugs in api ([#1022](https://github.com/vtex/faststore/issues/1022)) ([cdcfcff](https://github.com/vtex/faststore/commit/cdcfcff642561dd73b1f85557e101271d10ca930))
-
-## 1.2.33 (2021-11-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.32 (2021-11-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.31 (2021-11-04)
-
-### Features
-
-- **store-ui:** Breadcrumb improvements ([#1010](https://github.com/vtex/faststore/issues/1010)) ([8b4bf37](https://github.com/vtex/faststore/commit/8b4bf37316d6057683680de36493b63709bb1012))
-
-## 1.2.30 (2021-11-03)
-
-### Bug Fixes
-
-- Channel simulation ([#1014](https://github.com/vtex/faststore/issues/1014)) ([b45406b](https://github.com/vtex/faststore/commit/b45406b2b7ee8deb2b6e256629ba6df89d1b5940))
-
-## 1.2.29 (2021-11-03)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.28 (2021-10-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.27 (2021-10-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.26 (2021-10-29)
-
-### Bug Fixes
-
-- **store-ui:** Remove circular dependency ([#1011](https://github.com/vtex/faststore/issues/1011)) ([b9f08c9](https://github.com/vtex/faststore/commit/b9f08c95ae33bdbb09ffc044d6ad831fd6608144))
-
-## 1.2.25 (2021-10-28)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.24 (2021-10-28)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.23 (2021-10-27)
-
-### Features
-
-- **store-ui:** Add carousel tablist keyboard behavior ([#996](https://github.com/vtex/faststore/issues/996)) ([9081584](https://github.com/vtex/faststore/commit/908158460028009aaaa4ebbcd22eefab59e9bff8))
-
-## 1.2.22 (2021-10-26)
-
-**Note:** Version bump only for package @vtex/store-ui
-
-## 1.2.21 (2021-10-26)
-
-### Features
-
-- **ui:** Form molecule ([#1004](https://github.com/vtex/faststore/issues/1004)) ([c584ef6](https://github.com/vtex/faststore/commit/c584ef693d111ede70d27730ecb3cce613b9aba3))
-
-## 1.2.20 (2021-10-26)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.19 (2021-10-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.18 (2021-10-25)
-
-### Features
-
-- **ui:** Breadcrumb molecule ([#986](https://github.com/vtex/faststore/issues/986)) ([325c738](https://github.com/vtex/faststore/commit/325c7387089d2f2c7152191b54fc3cb4918f1c68))
-
-## 1.2.17 (2021-10-21)
-
-### Features
-
-- **ui:** Loading Button molecule ([#962](https://github.com/vtex/faststore/issues/962)) ([6083ea0](https://github.com/vtex/faststore/commit/6083ea0273646a09e66ceedfab4b17c3960ac9fc)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **ui:** Remove deprecated folders (#927)
-
-## 1.2.16 (2021-10-21)
-
-### Features
-
-- **ui:** Label atom ([#1001](https://github.com/vtex/faststore/issues/1001)) ([3306ea6](https://github.com/vtex/faststore/commit/3306ea6b9b48996574eac4b8c1b737dff94a438e))
-
-## 1.2.15 (2021-10-21)
-
-### Bug Fixes
-
-- **ui:** Fix search-input a11y ([#1000](https://github.com/vtex/faststore/issues/1000)) ([f052f46](https://github.com/vtex/faststore/commit/f052f465e21aa4e2ca047327eeb0610b9b979f10))
-
-## 1.2.14 (2021-10-20)
-
-### Features
-
-- graphql-utils ([#998](https://github.com/vtex/faststore/issues/998)) ([bddf043](https://github.com/vtex/faststore/commit/bddf04308826369f86322851b554cc58ab5b2161))
-
-## 1.2.13 (2021-10-20)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.12 (2021-10-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.11 (2021-10-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.10 (2021-10-18)
-
-### Bug Fixes
-
-- **ui:** Component Architecture doc's code snippets ([#997](https://github.com/vtex/faststore/issues/997)) ([7f0d5f3](https://github.com/vtex/faststore/commit/7f0d5f307014f794063dd8d94d873478803888c0))
-
-## 1.2.9 (2021-10-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.8 (2021-10-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.7 (2021-10-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.6 (2021-10-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.5 (2021-10-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.4 (2021-10-14)
-
-### Features
-
-- **ui:** Accordion molecule ([#985](https://github.com/vtex/faststore/issues/985)) ([a35fb51](https://github.com/vtex/faststore/commit/a35fb51b675e41af6070da8b521a3a4da25a0d65))
-
-## 1.2.3 (2021-10-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.2 (2021-10-13)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.2.1 (2021-10-08)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.1.18 (2021-10-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.1.17 (2021-10-05)
-
-### Features
-
-- **store-api:** Add channel support for products ([#968](https://github.com/vtex/faststore/issues/968)) ([923d343](https://github.com/vtex/faststore/commit/923d343bcde8fbebfff9d32ba52ac26cd0504484))
-
-## 1.1.16 (2021-10-04)
-
-### Features
-
-- **store-api:** Add cart to store-api ([#963](https://github.com/vtex/faststore/issues/963)) ([0607d82](https://github.com/vtex/faststore/commit/0607d82f9f17de0b4045a7efbe99004d43e87056))
-
-## 1.1.15 (2021-10-01)
-
-### Features
-
-- Configure storybook theme ([#979](https://github.com/vtex/faststore/issues/979)) ([736811f](https://github.com/vtex/faststore/commit/736811f6381b4fd5f3f6d976198262216fe3ebcb))
-
-## 1.1.14 (2021-09-28)
-
-### Features
-
-- **ui:** Add Modal molecule ([#957](https://github.com/vtex/faststore/issues/957)) ([530b308](https://github.com/vtex/faststore/commit/530b3085a5707be459b37757844ce2e52b2f2981))
-
-## 1.1.13 (2021-09-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.1.12 (2021-09-22)
-
-### Bug Fixes
-
-- users were unable to develop a store in an account without CMS pages ([#969](https://github.com/vtex/faststore/issues/969)) ([7b28a4e](https://github.com/vtex/faststore/commit/7b28a4e0da1edec7e843a614339909c6565b220a))
-
-## 1.1.11 (2021-09-17)
-
-### Features
-
-- **ui:** Spinner atom ([#961](https://github.com/vtex/faststore/issues/961)) ([59034b7](https://github.com/vtex/faststore/commit/59034b726ac83c79f591cd24739a8c15316c92b3)), closes [#918](https://github.com/vtex/faststore/issues/918) [#911](https://github.com/vtex/faststore/issues/911)
-
-### BREAKING CHANGES
-
-- **ui:** Remove deprecated folders (#927)
-
-## 1.1.10 (2021-09-16)
-
-### Features
-
-- **store-api:** Add codegen ([#960](https://github.com/vtex/faststore/issues/960)) ([5231e6c](https://github.com/vtex/faststore/commit/5231e6c455be73b9d870627188c07a420651ed44))
-
-## 1.1.9 (2021-09-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.1.8 (2021-09-14)
-
-### Features
-
-- **store-api:** Store API TypeDefs ([#942](https://github.com/vtex/faststore/issues/942)) ([b440dc9](https://github.com/vtex/faststore/commit/b440dc9f023da82b5c443c465375e74f909d1b8d))
-
-## 1.1.7 (2021-09-13)
-
-### Features
-
-- **ui:** Add Skeleton Atom ([#911](https://github.com/vtex/faststore/issues/911)) ([ef25cde](https://github.com/vtex/faststore/commit/ef25cdea6f6e344b4005ecd2ec0c80d959df35b0))
-
-## 1.1.6 (2021-09-09)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.1.5 (2021-09-09)
-
-### Features
-
-- **store-sdk:** custom events, tests and docs ([#937](https://github.com/vtex/faststore/issues/937)) ([c268542](https://github.com/vtex/faststore/commit/c2685425b8a2b6c40ce2f79a5a0afc2b2022760d))
-
-## 1.1.4 (2021-09-09)
-
-### Features
-
-- support lambdas ([#933](https://github.com/vtex/faststore/issues/933)) ([0f14557](https://github.com/vtex/faststore/commit/0f14557f7b98635bc82ede499b12cc28f2f51b6e))
-
-## 1.1.3 (2021-09-08)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.1.2 (2021-09-06)
-
-### Features
-
-- **ui:** adding list atom ([#918](https://github.com/vtex/faststore/issues/918)) ([72c3b2e](https://github.com/vtex/faststore/commit/72c3b2eeac85c784bbee310898b24823c2c18c3a))
-
-## 1.1.1 (2021-09-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## [1.0.3](https://github.com/vtex/faststore/compare/v1.1.0...v1.0.3) (2021-09-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.0.2 (2021-09-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 1.0.1 (2021-08-31)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.36 (2021-08-31)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.35 (2021-08-30)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.34 (2021-08-30)
-
-### Features
-
-- **ui:** price range ([#924](https://github.com/vtex/faststore/issues/924)) ([e5c5d9a](https://github.com/vtex/faststore/commit/e5c5d9aade59d91aead75af6a09d7db3cc67348e))
-
-## 0.373.33 (2021-08-30)
-
-### Features
-
-- **ui:** slider ([#917](https://github.com/vtex/faststore/issues/917)) ([15a5f82](https://github.com/vtex/faststore/commit/15a5f826f3ad0054934c5092a2def4cd8d2a7c3c))
-
-## 0.373.32 (2021-08-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.31 (2021-08-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.30 (2021-08-27)
-
-### Bug Fixes
-
-- move pixel back to gatsby-theme-store ([#922](https://github.com/vtex/faststore/issues/922)) ([58de70d](https://github.com/vtex/faststore/commit/58de70d943aec36883384a0d6545ad7ab7d8f6bb))
-
-## 0.373.29 (2021-08-26)
-
-### Bug Fixes
-
-- **gatsby-plugin-cms:** null cms nodes were preventing stores from building ([0270037](https://github.com/vtex/faststore/commit/027003711c00854fc6679b6d469a2be13a3d0437))
-
-## 0.373.28 (2021-08-26)
-
-### Features
-
-- **ui:** Add IconButton Molecule ([#900](https://github.com/vtex/faststore/issues/900)) ([0114409](https://github.com/vtex/faststore/commit/0114409d7efb8e5146d2b17b5fc5500ceb16b7bf))
-
-## 0.373.27 (2021-08-24)
-
-### Features
-
-- **ui:** Create Badge component ([#894](https://github.com/vtex/faststore/issues/894)) ([1438be3](https://github.com/vtex/faststore/commit/1438be37e9670028b263b2331bb7671cebcf4392))
-
-## 0.373.26 (2021-08-24)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.25 (2021-08-24)
-
-### Bug Fixes
-
-- **gatsby-plugin-graphql:** Export schema types ([#916](https://github.com/vtex/faststore/issues/916)) ([65d43d3](https://github.com/vtex/faststore/commit/65d43d3191422ef14988dabe0aa8383daf74b471))
-
-## 0.373.24 (2021-08-23)
-
-### Features
-
-- **ui:** radio component ([#906](https://github.com/vtex/faststore/issues/906)) ([06ef1dd](https://github.com/vtex/faststore/commit/06ef1dd3aa0cda304f4341697859c9b0fc16cfc2))
-
-## 0.373.23 (2021-08-23)
-
-### Features
-
-- **ui:** Adding select atom ([#876](https://github.com/vtex/faststore/issues/876)) ([3276269](https://github.com/vtex/faststore/commit/3276269813b6208b88d7178293b9550b2b05cc77))
-
-## 0.373.22 (2021-08-23)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.21 (2021-08-20)
-
-### Bug Fixes
-
-- **ui:** Remove unnecessary ID and improve a11y ([#915](https://github.com/vtex/faststore/issues/915)) ([7ee629d](https://github.com/vtex/faststore/commit/7ee629d6b738ed67332000e47ebdb9fcb5dc2883))
-
-## 0.373.20 (2021-08-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.19 (2021-08-18)
-
-### Features
-
-- **store-sdk:** Add Session to store-sdk ([#896](https://github.com/vtex/faststore/issues/896)) ([6a7f1b5](https://github.com/vtex/faststore/commit/6a7f1b5458bdb44aff2760bcd32ddf8888c05740))
-
-## 0.373.18 (2021-08-18)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.17 (2021-08-18)
-
-### Features
-
-- **ui:** Overlay Atom Component ([#890](https://github.com/vtex/faststore/issues/890)) ([a0757bc](https://github.com/vtex/faststore/commit/a0757bcf1155084f5b66f4625f47c8efa18285b3))
-
-## 0.373.16 (2021-08-17)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.15 (2021-08-16)
-
-### Features
-
-- **ui:** Create Carousel component and useSlider hook ([#815](https://github.com/vtex/faststore/issues/815)) ([f46108c](https://github.com/vtex/faststore/commit/f46108c038402f003c7157833efb052554d339d4))
-
-## 0.373.14 (2021-08-16)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Spread routes support ([#895](https://github.com/vtex/faststore/issues/895)) ([6bb2331](https://github.com/vtex/faststore/commit/6bb2331b8961245e8abf5f44fb2814f9562d1f3d))
-
-## 0.373.13 (2021-08-13)
-
-### Features
-
-- **ui:** Basic CSS theme and theme-addon for Storybook ([#828](https://github.com/vtex/faststore/issues/828)) ([e7338ad](https://github.com/vtex/faststore/commit/e7338adda76a090b0cd55c72a2e0867c92e15fb0))
-
-## 0.373.12 (2021-08-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.11 (2021-08-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.10 (2021-08-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.9 (2021-08-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.8 (2021-08-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.7 (2021-08-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.6 (2021-08-11)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.5 (2021-08-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.4 (2021-08-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.3 (2021-08-10)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.2 (2021-08-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.373.1 (2021-08-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.22 (2021-07-30)
-
-### Features
-
-- **collections:** Source collections from category tree ([#871](https://github.com/vtex/faststore/issues/871)) ([e4ca79a](https://github.com/vtex/faststore/commit/e4ca79a810ca89f609082b994a9ad069e9d64579))
-
-## 0.372.21 (2021-07-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.20 (2021-07-29)
-
-### Features
-
-- **gatsby-theme-store:** fix product click event ([#866](https://github.com/vtex/faststore/issues/866)) ([eeb4df2](https://github.com/vtex/faststore/commit/eeb4df2308a8113256c8c716574ef213d1da9468))
-
-## 0.372.19 (2021-07-29)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** useBuyButton only redirects users to the checkout when product is added successfully ([#823](https://github.com/vtex/faststore/issues/823)) ([304178e](https://github.com/vtex/faststore/commit/304178e05e2c396407f47afc76ba2e9b959f6147))
-
-## 0.372.18 (2021-07-27)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.17 (2021-07-22)
-
-### Bug Fixes
-
-- **gatsby-plugin-nginx:** Fix proxy pass when toPath has port numbers on it ([#830](https://github.com/vtex/faststore/issues/830)) ([574f9bd](https://github.com/vtex/faststore/commit/574f9bd575fff7878106ef0f05145fd7f759a827))
-
-## 0.372.16 (2021-07-19)
-
-### Bug Fixes
-
-- **ui:** Fix bullets iterator ([#824](https://github.com/vtex/faststore/issues/824)) ([74034a6](https://github.com/vtex/faststore/commit/74034a667a6b4f40602ec179575bcedaf18c4af4))
-
-## 0.372.15 (2021-07-15)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.14 (2021-07-15)
-
-### Features
-
-- **ui:** update accordion version ([#820](https://github.com/vtex/faststore/issues/820)) ([624060a](https://github.com/vtex/faststore/commit/624060a1a88740794f82bb4d5782f896dc80695f))
-
-## 0.372.13 (2021-07-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.12 (2021-07-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.11 (2021-07-14)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.10 (2021-07-13)
-
-### Features
-
-- **seo:** Add next/prev links in search page's infinite scroll. ([#811](https://github.com/vtex/faststore/issues/811)) ([89fa673](https://github.com/vtex/faststore/commit/89fa6738034e290c6806a55db21209925cf50783))
-
-## 0.372.9 (2021-07-12)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.8 (2021-07-12)
-
-### Bug Fixes
-
-- **contributing:** updating documentation ([#816](https://github.com/vtex/faststore/issues/816)) ([7923668](https://github.com/vtex/faststore/commit/7923668033da7ea7243e72f54225f6e029626e64))
-
-## 0.372.7 (2021-07-09)
-
-### Features
-
-- **ui:** Adding data-testid to our components ([#530](https://github.com/vtex/faststore/issues/530)) ([eed2760](https://github.com/vtex/faststore/commit/eed2760438b3f83fd997ebb76e2794cfd56449aa))
-
-## 0.372.6 (2021-07-09)
-
-### Features
-
-- **ui:** Checkbox atom component ([#813](https://github.com/vtex/faststore/issues/813)) ([36834fa](https://github.com/vtex/faststore/commit/36834fa572305ca26c1fea8e60e011ff768bc13e))
-
-## 0.372.5 (2021-07-09)
-
-### Bug Fixes
-
-- **seo:** Fix undefined host in canonical tags of product pages ([#814](https://github.com/vtex/faststore/issues/814)) ([3ba980d](https://github.com/vtex/faststore/commit/3ba980d4a9bec1cb9cc8b6b51140e9418247ac6a))
-
-## 0.372.4 (2021-07-08)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.372.3 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** Move auth pages to stores ([#809](https://github.com/vtex/faststore/issues/809)) ([8abbe7f](https://github.com/vtex/faststore/commit/8abbe7fcb455fc1449960ef26a02df36a0d4c8dd))
-
-## 0.372.2 (2021-07-06)
-
-### Bug Fixes
-
-- **gatsby-plugin-thumbor:** Remove cookie on redirect ([#810](https://github.com/vtex/faststore/issues/810)) ([9a2f7fc](https://github.com/vtex/faststore/commit/9a2f7fcd3410ef606843c03552857f7e09f1528b))
-
-## 0.372.1 (2021-07-06)
-
-### Features
-
-- **gatsby-theme-store:** product view ([#803](https://github.com/vtex/faststore/issues/803)) ([082d3f9](https://github.com/vtex/faststore/commit/082d3f9b1ffac15f444b9a7aacc62f21dc331237))
-
-## 0.371.38 (2021-07-06)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.37 (2021-07-05)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** set isDisposable to true on setRegionMutation, fixing zip code persistence ([#802](https://github.com/vtex/faststore/issues/802)) ([#802](https://github.com/vtex/faststore/issues/802)) ([46f65f8](https://github.com/vtex/faststore/commit/46f65f89270cd8004283c14d8988a9490b513228))
-
-## 0.371.36 (2021-07-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.35 (2021-07-05)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.34 (2021-07-05)
-
-### Features
-
-- move status pages ([#807](https://github.com/vtex/faststore/issues/807)) ([4c5cf62](https://github.com/vtex/faststore/commit/4c5cf6282f18f797a52b06ba8d6770cf7b6c2533))
-
-## 0.371.33 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-theme-store:** complex plp navigation ([#749](https://github.com/vtex/faststore/issues/749)) ([849f079](https://github.com/vtex/faststore/commit/849f079a29550e9106d4aa00254cd81060022634))
-
-## 0.371.32 (2021-07-01)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.31 (2021-07-01)
-
-### Features
-
-- **ui:** components migration to .tsx + .mdx and update storybook version to v6.3 ([#782](https://github.com/vtex/faststore/issues/782)) ([9c8da3c](https://github.com/vtex/faststore/commit/9c8da3cc050e30916303b495b00532bde6c6328d))
-
-## 0.371.30 (2021-07-01)
-
-### Bug Fixes
-
-- **gatsby-source-vtex:** page size ([#799](https://github.com/vtex/faststore/issues/799)) ([03b4b61](https://github.com/vtex/faststore/commit/03b4b61d8de5e5554b729e2ef41f0dfd7eca558d))
-
-## 0.371.29 (2021-06-30)
-
-### Features
-
-- Use Gatsby's file system routing API for product pages ([#795](https://github.com/vtex/faststore/issues/795)) ([c9b8eed](https://github.com/vtex/faststore/commit/c9b8eed75834738e9b869780790c772947ec65c3))
-
-## 0.371.28 (2021-06-30)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.27 (2021-06-30)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.26 (2021-06-29)
-
-**Note:** Version bump only for package @faststore/ui
-
-## 0.371.25 (2021-06-29)
-
-### Features
-
-- product page incremental builds ([#793](https://github.com/vtex/faststore/issues/793)) ([8ab8bf0](https://github.com/vtex/faststore/commit/8ab8bf0b4a5b24d5e3a24ddc0bf1e449beb0aa88))
-
-## 0.371.24 (2021-06-25)
-
-### Features
-
-- add changelog with conventional commits ([#790](https://github.com/vtex/faststore/issues/790)) ([d8dfb0f](https://github.com/vtex/faststore/commit/d8dfb0fc075c9111bd30b8c0200166e715be44d7))
-
-# [0.373.0-alpha.5](https://github.com/vtex/faststore/compare/v0.373.0-alpha.3...v0.373.0-alpha.5) (2021-06-25)
-
-### Bug Fixes
-
-- jsx typings ([99e572a](https://github.com/vtex/faststore/commit/99e572aa91c66c8285f89e969ef612e01a0f0baf))
-
-# [0.373.0-alpha.3](https://github.com/vtex/faststore/compare/v0.373.0-alpha.2...v0.373.0-alpha.3) (2021-06-25)
-
-**Note:** Version bump only for package @faststore/ui
-
-# [0.373.0-alpha.2](https://github.com/vtex/faststore/compare/v0.373.0-alpha.1...v0.373.0-alpha.2) (2021-06-25)
-
-**Note:** Version bump only for package @faststore/ui
diff --git a/yarn.lock b/yarn.lock
index d7aaa23093..6d6505bf4d 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6437,15 +6437,6 @@ conventional-changelog-angular@7.0.0:
dependencies:
compare-func "^2.0.0"
-conventional-changelog-conventionalcommits@^5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz"
- integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==
- dependencies:
- compare-func "^2.0.0"
- lodash "^4.17.15"
- q "^1.5.1"
-
conventional-changelog-core@5.0.1:
version "5.0.1"
resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz"
@@ -12160,7 +12151,7 @@ lodash.truncate@^4.4.2:
resolved "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"
integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==
-lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0, lodash@~4.17.0:
+lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0, lodash@~4.17.0:
version "4.17.21"
resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -15271,11 +15262,6 @@ pvutils@^1.1.3:
resolved "https://registry.npmjs.org/pvutils/-/pvutils-1.1.3.tgz"
integrity sha512-pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ==
-q@^1.5.1:
- version "1.5.1"
- resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz"
- integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
-
qs@6.11.0:
version "6.11.0"
resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz"
From 611283638dc01f55a65d0b5fd01e4a0163d53f4b Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Fri, 18 Oct 2024 13:35:38 +0000
Subject: [PATCH 103/154] [no ci] Release: 3.0.135
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 16 ++++++++--------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 46 insertions(+), 46 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index f447b003ec..4f415a69d0 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.134",
+ "version": "3.0.135",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.134",
- "@faststore/sdk": "^3.0.131",
- "@faststore/ui": "^3.0.134",
+ "@faststore/api": "^3.0.135",
+ "@faststore/sdk": "^3.0.135",
+ "@faststore/ui": "^3.0.135",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.134",
+ "@faststore/eslint-config": "^3.0.135",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 88bc8c1878..334a4a3c49 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.134",
+ "version": "3.0.135",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index ebba71e39c..261db31d76 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.134",
+ "version": "3.0.135",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^5.0.2",
- "@faststore/eslint-config": "^3.0.134",
- "@faststore/shared": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.135",
+ "@faststore/shared": "^3.0.135",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 91b440fd22..0e8d72cd15 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.134 linux-x64 node-v18.20.4
+@faststore/cli/3.0.135 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -125,7 +125,7 @@ FLAGS
-d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +159,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +171,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.134/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 14464bd1ce..05ccf84b38 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.134",
+ "version": "3.0.135",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.134",
+ "@faststore/core": "^3.0.135",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -32,8 +32,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.134",
- "@faststore/shared": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.135",
+ "@faststore/shared": "^3.0.135",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 9d0d8ff823..5a9f00be4f 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.134",
+ "version": "3.0.135",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.134",
- "@faststore/shared": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.135",
+ "@faststore/shared": "^3.0.135",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
"@types/jest-axe": "^3.5.9",
diff --git a/packages/core/package.json b/packages/core/package.json
index 93f6038ac4..c76a861a6d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.134",
+ "version": "3.0.135",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.134",
- "@faststore/components": "^3.0.134",
- "@faststore/graphql-utils": "^3.0.134",
- "@faststore/lighthouse": "^3.0.134",
- "@faststore/sdk": "^3.0.131",
- "@faststore/ui": "^3.0.134",
+ "@faststore/api": "^3.0.135",
+ "@faststore/components": "^3.0.135",
+ "@faststore/graphql-utils": "^3.0.135",
+ "@faststore/lighthouse": "^3.0.135",
+ "@faststore/sdk": "^3.0.135",
+ "@faststore/ui": "^3.0.135",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.6",
"@graphql-codegen/typescript": "4.0.7",
@@ -87,7 +87,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.134",
+ "@faststore/eslint-config": "^3.0.135",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index f33f6fafcf..e7d27689b4 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.134",
+ "version": "3.0.135",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index 5d3d17d1ff..56a276164d 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.134",
+ "version": "3.0.135",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.134",
- "@faststore/shared": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.135",
+ "@faststore/shared": "^3.0.135",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index f4238a43e9..7ff3b54295 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.134",
+ "version": "3.0.135",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.134",
- "@faststore/shared": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.135",
+ "@faststore/shared": "^3.0.135",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 17770eca0c..36f8c3e82f 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.131",
+ "version": "3.0.135",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.131",
+ "@faststore/shared": "^3.0.135",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 2aad3f9a41..8b6371b7cd 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.131",
+ "version": "3.0.135",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 18c113d5c0..e9b0af74a9 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.134",
+ "version": "3.0.135",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.134",
+ "@faststore/components": "^3.0.135",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.134",
- "@faststore/shared": "^3.0.131",
+ "@faststore/eslint-config": "^3.0.135",
+ "@faststore/shared": "^3.0.135",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From 1ca4ffc35fc8f19224a796925d51e7966d1b54f7 Mon Sep 17 00:00:00 2001
From: Guilherme Carvalho <77246+gvc@users.noreply.github.com>
Date: Thu, 24 Oct 2024 09:15:08 -0300
Subject: [PATCH 104/154] Decrease FastStore CLI verbosity (#2516)
## What's the purpose of this pull request?
To decrease accidental verbosity of FastStore commands.
## How it works?
Created a logger object that's equal to `console` but overrides the
`log` function to check if the `DISCOVERY_DEBUG` flag is enabled.
## How to test it?
Install the CLI version on a test store and see how much less output is
being generated. :)
### Starters Deploy Preview
---------
Co-authored-by: Emerson Laurentino
---
packages/cli/src/commands/dev.ts | 22 +++++-
packages/cli/src/commands/generate-graphql.ts | 11 +--
packages/cli/src/utils/dependencies.ts | 3 +-
packages/cli/src/utils/generate.ts | 74 ++++++++++---------
packages/cli/src/utils/logger.ts | 12 +++
packages/cli/src/utils/runCommandSync.ts | 39 ++++------
turbo.json | 3 +-
7 files changed, 92 insertions(+), 72 deletions(-)
create mode 100644 packages/cli/src/utils/logger.ts
diff --git a/packages/cli/src/commands/dev.ts b/packages/cli/src/commands/dev.ts
index dd0dfe6fbd..d51f3dbb17 100644
--- a/packages/cli/src/commands/dev.ts
+++ b/packages/cli/src/commands/dev.ts
@@ -9,6 +9,7 @@ import path from 'path';
import { withBasePath } from '../utils/directory';
import { generate } from '../utils/generate';
import { getPreferredPackageManager } from '../utils/commands';
+import { logger } from '../utils/logger';
import { runCommandSync } from '../utils/runCommandSync';
@@ -45,28 +46,41 @@ async function storeDev(rootDir: string, tmpDir: string, coreDir: string, port:
errorMessage:
'GraphQL was not optimized and TS files were not updated. Changes in the GraphQL layer did not take effect',
throws: 'error',
- debug: true,
cwd: tmpDir,
})
const { success } = copyGenerated(path.join(tmpDir, '@generated'), path.join(coreDir, '@generated'))
if (!success) {
- console.log(`${chalk.yellow('warn')} - Failed to copy @generated schema back to node_modules, autocomplete and DX might be impacted.`)
- console.log(`Attempted to copy from ${path.join(tmpDir, '@generated')} to ${path.join(coreDir, '@generated')}`)
+ logger.log(`${chalk.yellow('warn')} - Failed to copy @generated schema back to node_modules, autocomplete and DX might be impacted.`)
+ logger.log(`Attempted to copy from ${path.join(tmpDir, '@generated')} to ${path.join(coreDir, '@generated')}`)
}
const devProcess = spawn(`${packageManager} dev-only --port ${port}`, {
shell: true,
cwd: tmpDir,
signal: devAbortController.signal,
- stdio: 'inherit',
+ stdio: ['inherit', 'pipe', 'inherit'],
env: {
...process.env,
...envVars,
}
})
+ let nextStdout = ''
+ devProcess.stdout.on('data', function (chunk) {
+ nextStdout += chunk
+ const lines = nextStdout.split('\n')
+ while(lines.length > 1) {
+ const line = lines.shift()
+ console.log('[DISCOVERY] ', line)
+ }
+ nextStdout = lines.shift() || ''
+ })
+ devProcess.stdout.on('end', function () {
+ console.log('[DISCOVERY] ', nextStdout)
+ })
+
devProcess.on('close', () => {
devAbortController.abort()
})
diff --git a/packages/cli/src/commands/generate-graphql.ts b/packages/cli/src/commands/generate-graphql.ts
index 8a5257bc80..7b16fc82c6 100644
--- a/packages/cli/src/commands/generate-graphql.ts
+++ b/packages/cli/src/commands/generate-graphql.ts
@@ -5,10 +5,10 @@ import { existsSync } from 'fs-extra'
import { withBasePath } from '../utils/directory'
import { runCommandSync } from '../utils/runCommandSync'
import { getPreferredPackageManager } from '../utils/commands'
+import { logger } from '../utils/logger';
export default class GenerateGraphql extends Command {
static flags = {
- debug: Flags.boolean({ char: 'd' }),
core: Flags.boolean({ char: 'c', hidden: true }),
}
@@ -25,13 +25,12 @@ export default class GenerateGraphql extends Command {
const basePath = args.path ?? process.cwd()
const { tmpDir, coreDir } = withBasePath(basePath)
- const debug = flags.debug ?? false
const isCore = flags.core ?? false
const packageManager = getPreferredPackageManager()
if (!isCore && !existsSync(tmpDir)) {
- console.log(
+ logger.log(
`${chalk.red(
'error'
)} - The ".faststore" directory could not be found. When running faststore dev or faststore build, the generate-graphql command is automatically executed.`
@@ -44,7 +43,6 @@ export default class GenerateGraphql extends Command {
cmd: `${packageManager} run generate:schema`,
errorMessage: `Failed to run '${packageManager} generate:schema'. Please check your setup.`,
throws: 'error',
- debug,
cwd: isCore ? undefined : tmpDir,
})
@@ -53,7 +51,6 @@ export default class GenerateGraphql extends Command {
errorMessage:
'GraphQL was not optimized and TS files were not updated. Changes in the GraphQL layer did not take effect',
throws: 'error',
- debug,
cwd: isCore ? undefined : tmpDir,
})
@@ -62,7 +59,6 @@ export default class GenerateGraphql extends Command {
errorMessage:
`Failed to format generated files. '${packageManager} format:generated' thrown errors`,
throws: 'warning',
- debug,
cwd: isCore ? undefined : tmpDir,
})
@@ -72,11 +68,10 @@ export default class GenerateGraphql extends Command {
errorMessage:
`Failed to copy back typings files. '${packageManager} generate:copy-back' thrown errors`,
throws: 'warning',
- debug,
cwd: isCore ? undefined : tmpDir,
})
- console.log(
+ logger.log(
`${chalk.green(
'success'
)} - GraphQL schema, types, and optimizations successfully generated 🎉`
diff --git a/packages/cli/src/utils/dependencies.ts b/packages/cli/src/utils/dependencies.ts
index e7c4cc4748..512f870598 100644
--- a/packages/cli/src/utils/dependencies.ts
+++ b/packages/cli/src/utils/dependencies.ts
@@ -21,7 +21,6 @@ export function installDependencies(
cmd: `${packageManager} ${installCommand} ${dependencies.join(' ')}`,
errorMessage,
throws: 'error',
- debug: false,
cwd,
})
-}
\ No newline at end of file
+}
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index f29727ab92..4ac1f496c4 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -16,6 +16,7 @@ import ora from 'ora'
import { withBasePath } from './directory'
import { installDependencies } from './dependencies'
+import { logger } from './logger'
interface GenerateOptions {
setup?: boolean
@@ -34,13 +35,13 @@ function createTmpFolder(basePath: string) {
}
mkdirsSync(tmpDir)
- console.log(
+ logger.log(
`${chalk.green('success')} - Temporary folder ${chalk.dim(
tmpFolderName
)} created`
)
} catch (err) {
- console.error(`${chalk.red('error')} - ${err}`)
+ logger.error(`${chalk.red('error')} - ${err}`)
}
}
@@ -108,9 +109,9 @@ function copyCoreFiles(basePath: string) {
filterAndCopyPackageJson(basePath)
disableTsConfigStrictRules(basePath)
- console.log(`${chalk.green('success')} - Core files copied`)
+ logger.log(`${chalk.green('success')} - Core files copied`)
} catch (e) {
- console.error(e)
+ logger.error(e)
}
}
@@ -129,10 +130,10 @@ function copyPublicFiles(basePath: string) {
return allow
},
})
- console.log(`${chalk.green('success')} - Public files copied`)
+ logger.log(`${chalk.green('success')} - Public files copied`)
}
} catch (e) {
- console.error(e)
+ logger.error(e)
}
}
@@ -162,7 +163,7 @@ async function copyCypressFiles(basePath: string) {
} else if (existsSync(userLegacyStoreConfigFile)) {
userStoreConfig = await import(path.resolve(userLegacyStoreConfigFile))
} else {
- console.info(
+ logger.info(
`${chalk.blue(
'info'
)} - No store config file was found in the root directory`
@@ -179,7 +180,7 @@ async function copyCypressFiles(basePath: string) {
dereference: true,
})
- console.log(`${chalk.green('success')} - Cypress test files copied`)
+ logger.log(`${chalk.green('success')} - Cypress test files copied`)
}
// Create default Cypress 12.x (or superior) support file
@@ -191,7 +192,7 @@ async function copyCypressFiles(basePath: string) {
)
}
} catch (e) {
- console.error(e)
+ logger.error(e)
}
}
@@ -216,16 +217,16 @@ function copyUserStarterToCustomizations(basePath: string) {
dereference: true,
})
} else {
- console.info(
+ logger.info(
`${chalk.blue(
'info'
)} - No store config file was found in the root directory`
)
}
- console.log(`${chalk.green('success')} - Starter files copied`)
+ logger.log(`${chalk.green('success')} - Starter files copied`)
} catch (err) {
- console.error(`${chalk.red('error')} - ${err}`)
+ logger.error(`${chalk.red('error')} - ${err}`)
}
}
@@ -242,7 +243,7 @@ async function createCmsWebhookUrlsJsonFile(basePath: string) {
} else if (existsSync(userLegacyStoreConfigFile)) {
userStoreConfig = await import(path.resolve(userLegacyStoreConfigFile))
} else {
- console.info(
+ logger.info(
`${chalk.blue(
'info'
)} - No store config file was found in the root directory`
@@ -257,12 +258,12 @@ async function createCmsWebhookUrlsJsonFile(basePath: string) {
try {
writeJsonSync(tmpCMSWebhookUrlsFile, { urls: webhookUrls }, { spaces: 2 })
- console.log(`${chalk.green('success')} - CMS webhook URLs file created`)
+ logger.log(`${chalk.green('success')} - CMS webhook URLs file created`)
} catch (err) {
- console.error(`${chalk.red('error')} - ${err}`)
+ logger.error(`${chalk.red('error')} - ${err}`)
}
} else {
- console.info(`${chalk.blue('info')} - No CMS webhook URLs were provided`)
+ logger.info(`${chalk.blue('info')} - No CMS webhook URLs were provided`)
}
}
@@ -281,7 +282,7 @@ async function copyTheme(basePath: string) {
} else if (existsSync(userLegacyStoreConfigFile)) {
storeConfig = await import(path.resolve(userLegacyStoreConfigFile))
} else {
- console.info(
+ logger.info(
`${chalk.blue(
'info'
)} - No store config file was found in the root directory`
@@ -296,16 +297,16 @@ async function copyTheme(basePath: string) {
if (existsSync(customTheme)) {
try {
copyFileSync(customTheme, tmpThemesCustomizationsFile)
- console.log(
+ logger.log(
`${chalk.green('success')} - ${
storeConfig.theme
} theme has been applied`
)
} catch (err) {
- console.error(`${chalk.red('error')} - ${err}`)
+ logger.error(`${chalk.red('error')} - ${err}`)
}
} else {
- console.info(
+ logger.info(
`${chalk.blue('info')} - The ${
storeConfig.theme
} theme was added to the config file but the ${
@@ -317,7 +318,7 @@ async function copyTheme(basePath: string) {
existsSync(userThemesFileDir) &&
readdirSync(userThemesFileDir).length > 0
) {
- console.info(
+ logger.info(
`${chalk.blue(
'info'
)} - The theme needs to be added to the config file to be applied. Read more: https://www.faststore.dev/docs/themes/overview`
@@ -338,9 +339,9 @@ function updateBuildTime(basePath: string) {
writeFileSync(tmpSeoConfig, config)
- console.log(`${chalk.green('success')} - Build time updated`, newBuildTime)
+ logger.log(`${chalk.green('success')} - Build time updated`, newBuildTime)
} catch (error) {
- console.error(`${chalk.red('error')} - Updating build time:`, error)
+ logger.error(`${chalk.red('error')} - Updating build time:`, error)
}
}
@@ -362,13 +363,13 @@ function checkDependencies(basePath: string, packagesToCheck: string[]) {
rootPackageJson.dependencies[packageName]
if (!coreVersion || !rootVersion) {
- console.warn(
+ logger.warn(
`${chalk.yellow(
'warning'
)} - Package ${packageName} not found in both core or root dependencies.`
)
} else if (coreVersion !== rootVersion) {
- console.warn(
+ logger.warn(
`${chalk.yellow(
'warning'
)} - Version mismatch detected for ${packageName}.
@@ -396,29 +397,34 @@ function validateAndInstallMissingDependencies(basePath: string) {
const { userDir, userStoreConfigFile } = withBasePath(basePath)
if (!existsSync(userStoreConfigFile)) {
- return
+ return
}
const userStoreConfig = require(userStoreConfigFile)
const userPackageJson = require(path.join(userDir, 'package.json'))
- const missingDependencies: Array<{ feature: string, dependencies: string[] }> = []
+ const missingDependencies: Array<{
+ feature: string
+ dependencies: string[]
+ }> = []
- if(userStoreConfig.experimental.preact) {
+ if (userStoreConfig.experimental.preact) {
missingDependencies.push({
feature: 'Preact',
- dependencies: ['preact@10.23.1', 'preact-render-to-string@6.5.8']
+ dependencies: ['preact@10.23.1', 'preact-render-to-string@6.5.8'],
})
}
-
+
missingDependencies.forEach(({ feature, dependencies }) => {
const dependenciesToInstall = dependencies.filter((dependency) => {
const dependencyName = dependency.split('@')[0]
return !userPackageJson.dependencies[dependencyName]
})
- if(dependenciesToInstall.length > 0) {
- const spinner = ora(`Installing ${feature} missing dependencies\n`).start()
+ if (dependenciesToInstall.length > 0) {
+ const spinner = ora(
+ `Installing ${feature} missing dependencies\n`
+ ).start()
installDependencies({
dependencies: dependenciesToInstall,
@@ -427,7 +433,8 @@ function validateAndInstallMissingDependencies(basePath: string) {
})
spinner.stop()
- }})
+ }
+ })
}
export async function generate(options: GenerateOptions) {
@@ -435,7 +442,6 @@ export async function generate(options: GenerateOptions) {
let setupPromise: Promise | null = null
-
validateAndInstallMissingDependencies(basePath)
if (setup) {
diff --git a/packages/cli/src/utils/logger.ts b/packages/cli/src/utils/logger.ts
new file mode 100644
index 0000000000..11c7f6a80a
--- /dev/null
+++ b/packages/cli/src/utils/logger.ts
@@ -0,0 +1,12 @@
+export const logger = new Proxy(console, {
+ get(target, prop: keyof Console) {
+ if (prop === 'log') {
+ return (...args: any[]) => {
+ if (process.env.DISCOVERY_DEBUG === 'true') {
+ target.log(...args);
+ }
+ };
+ }
+ return target[prop];
+ }
+});
diff --git a/packages/cli/src/utils/runCommandSync.ts b/packages/cli/src/utils/runCommandSync.ts
index 9d2646263f..1066036122 100644
--- a/packages/cli/src/utils/runCommandSync.ts
+++ b/packages/cli/src/utils/runCommandSync.ts
@@ -1,6 +1,7 @@
import chalk from 'chalk'
import type { ChildProcess, ExecException } from 'child_process'
import { execSync } from 'child_process'
+import { logger } from './logger'
type ExecSyncError = (ExecException & ChildProcess) | undefined
@@ -8,18 +9,16 @@ const showError = ({
message,
cmd,
error,
- debug,
}: {
message: string
cmd: string
error: ExecSyncError
- debug: boolean
}) => {
- console.log(`${chalk.red('error')} - ${message}`)
+ logger.error(`${chalk.red('error')} - ${message}`)
- if (debug && cmd && error) {
- console.log(`${chalk.magenta('DEBUG')} - $ ${cmd} error root ↓`)
- console.log(error.stdout?.toString())
+ if (cmd && error) {
+ logger.log(`${chalk.magenta('DEBUG')} - $ ${cmd} error root ↓`)
+ logger.log(error.stdout?.toString())
}
process.exit(1)
@@ -29,18 +28,16 @@ const showWarning = ({
message,
cmd,
error,
- debug,
}: {
message: string
cmd: string
error: ExecSyncError
- debug: boolean
}) => {
- console.log(`${chalk.yellow('warn')} - ${message}`)
+ logger.warn(`${chalk.yellow('warn')} - ${message}`)
- if (debug && cmd && error) {
- console.log(`${chalk.magenta('DEBUG')} - $ ${cmd} warn root ↓`)
- console.log(error.stdout?.toString())
+ if (cmd && error) {
+ logger.log(`${chalk.magenta('DEBUG')} - $ ${cmd} warn root ↓`)
+ logger.log(error.stdout?.toString())
}
}
@@ -48,19 +45,17 @@ export const runCommandSync = ({
cmd,
errorMessage,
throws,
- debug,
cwd,
}: {
cmd: string
errorMessage: string
throws: 'warning' | 'error'
- debug: boolean
cwd?: string
}) => {
+ const debug = process.env.DISCOVERY_DEBUG === 'true' ? true : false
+
try {
- if (debug) {
- console.log(`[STARTED] ${cmd}`)
- }
+ logger.log(`[STARTED] ${cmd}`)
const res = execSync(
debug ? `${cmd} --debug --verbose 2>&1` : `${cmd} 2>&1`,
@@ -69,17 +64,15 @@ export const runCommandSync = ({
cwd,
}
)
- if (debug) {
- console.log(`[STATUS] ${res.toString()}`)
- console.log(`[FINISHED] ${cmd}`)
- }
+ logger.log(`[STATUS] ${res.toString()}`)
+ logger.log(`[FINISHED] ${cmd}`)
} catch (error) {
const sanitizedError = debug ? (error as ExecSyncError) : undefined
if (throws === 'warning') {
- showWarning({ message: errorMessage, cmd, error: sanitizedError, debug })
+ showWarning({ message: errorMessage, cmd, error: sanitizedError })
} else {
- showError({ message: errorMessage, cmd, error: sanitizedError, debug })
+ showError({ message: errorMessage, cmd, error: sanitizedError })
}
}
}
diff --git a/turbo.json b/turbo.json
index 1d6c6deb1a..2d6c20c26f 100644
--- a/turbo.json
+++ b/turbo.json
@@ -4,7 +4,8 @@
"OCLIF_COMPILATION",
"NODE_ENV",
"DISABLE_3P_SCRIPTS",
- "CMS_DATA"
+ "CMS_DATA",
+ "DISCOVERY_DEBUG"
],
"tasks": {
"site#build": {
From b2aecbdf7aa2799b099a8ba5433cb5dbb64b83fb Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 24 Oct 2024 12:20:52 +0000
Subject: [PATCH 105/154] [no ci] Release: 3.0.136
---
lerna.json | 2 +-
packages/cli/README.md | 21 +++++++++------------
packages/cli/package.json | 2 +-
3 files changed, 11 insertions(+), 14 deletions(-)
diff --git a/lerna.json b/lerna.json
index 334a4a3c49..ced2329337 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.135",
+ "version": "3.0.136",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 0e8d72cd15..f31e73a7f2 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.135 linux-x64 node-v18.20.4
+@faststore/cli/3.0.136 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,22 +110,19 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
```
USAGE
- $ faststore generate-graphql [PATH] [-d]
+ $ faststore generate-graphql [PATH]
ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
-
-FLAGS
- -d, --debug
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -159,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -171,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.135/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 05ccf84b38..37030f0039 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.135",
+ "version": "3.0.136",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
From 992cab36158fe04618d5b9e4d405526cd0a95f0e Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Thu, 24 Oct 2024 16:38:03 -0300
Subject: [PATCH 106/154] chore: Applies next/dynamic for RegionModal (#2523)
## What's the purpose of this pull request?
Loads `RegionModal` using dynamic import.
## How it works?
We are aiming to optimize the performance loading components only when
they are needed, rather than at the initial page load.
## How to test it?
- Click on `Set your location` button, the `RegionModal` should appear
as expected.
---
.../region/RegionModal/RegionModal.tsx | 54 ++++++++++---------
1 file changed, 30 insertions(+), 24 deletions(-)
diff --git a/packages/core/src/components/region/RegionModal/RegionModal.tsx b/packages/core/src/components/region/RegionModal/RegionModal.tsx
index 40213fd5de..220b28efcd 100644
--- a/packages/core/src/components/region/RegionModal/RegionModal.tsx
+++ b/packages/core/src/components/region/RegionModal/RegionModal.tsx
@@ -1,15 +1,23 @@
import {
Icon,
- RegionModal as UIRegionModal,
RegionModalProps as UIRegionModalProps,
useUI,
} from '@faststore/ui'
-import { Suspense, useRef, useState } from 'react'
+import { useRef, useState } from 'react'
import { sessionStore, useSession, validateSession } from 'src/sdk/session'
+import dynamic from 'next/dynamic'
import styles from './section.module.scss'
+const UIRegionModal = dynamic(
+ () =>
+ import(/* webpackChunkName: "UIRegionModal" */ '@faststore/ui').then(
+ (mod) => mod.RegionModal
+ ),
+ { ssr: false }
+)
+
interface RegionModalProps {
title?: UIRegionModalProps['title']
description?: UIRegionModalProps['description']
@@ -88,28 +96,26 @@ function RegionModal({
return (
<>
{displayModal && (
-
- {
- errorMessage !== '' && setErrorMessage('')
- setInput(e.currentTarget.value)
- }}
- onSubmit={handleSubmit}
- fadeOutOnSubmit={true}
- onClear={() => setInput('')}
- />
-
+ {
+ errorMessage !== '' && setErrorMessage('')
+ setInput(e.currentTarget.value)
+ }}
+ onSubmit={handleSubmit}
+ fadeOutOnSubmit={true}
+ onClear={() => setInput('')}
+ />
)}
>
)
From 180d1b1e75b27d193341288397f795088f12bd8d Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 24 Oct 2024 19:44:00 +0000
Subject: [PATCH 107/154] [no ci] Release: 3.0.137
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index ced2329337..0ef18fcac3 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.136",
+ "version": "3.0.137",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index f31e73a7f2..8e8aaac64d 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.136 linux-x64 node-v18.20.4
+@faststore/cli/3.0.137 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.136/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 37030f0039..fc4862b965 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.136",
+ "version": "3.0.137",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.135",
+ "@faststore/core": "^3.0.137",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index c76a861a6d..3654f530bb 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.135",
+ "version": "3.0.137",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 04d045db49cdbc8701695fbaca558ca0b2432670 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Mon, 28 Oct 2024 11:50:35 -0300
Subject: [PATCH 108/154] Feat: adds LazyLoadingSection component - perf
(#2521)
## What's the purpose of this pull request?
Adds `LazyLoadingSection` component, it will be responsible for lazy
loading Sections that are out of the viewport.
* It achieves this by:
* 1. Using the IntersectionObserver API for Sections below the fold.
* 2. Checking the UI context for Sections that are not in the viewport,
such as the CartSidebar and RegionModal.
We will be implementing this in the `RenderSectionsBase` as part of our
upcoming tasks. This component is not being applied in isolation due to
concerns about increased Cumulative Layout Shift (CLS).
## How to test it?
1. You can use this [preview
link](https://starter-git-feat-lazy-loading-section-sfs-1508-faststore.vercel.app/),
where the `LazyLoadingSection` is temporary applied or locally add it in
`RenderSectionsBase` component.
```
```
2. Inspect the code, use the React extension for this test:
- search for `Footer`, you won't find it until you scroll the page until
the `Newsletter` section
https://github.com/user-attachments/assets/bbfffbe0-39b8-4b6b-b86d-04d4a7ab1e6b
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/586
## References
https://github.com/vtex/faststore/pull/2404
---------
Co-authored-by: Pedro Soares <32311264+pedromtec@users.noreply.github.com>
---
.../src/components/cms/RenderSections.tsx | 50 +++++++++++++++++--
.../src/components/sections/Hero/Hero.tsx | 1 +
2 files changed, 48 insertions(+), 3 deletions(-)
diff --git a/packages/core/src/components/cms/RenderSections.tsx b/packages/core/src/components/cms/RenderSections.tsx
index fdd7d9ef2d..746fd38912 100644
--- a/packages/core/src/components/cms/RenderSections.tsx
+++ b/packages/core/src/components/cms/RenderSections.tsx
@@ -1,13 +1,24 @@
-import { ComponentType, PropsWithChildren, memo, useMemo } from 'react'
+import {
+ ComponentType,
+ PropsWithChildren,
+ ReactNode,
+ memo,
+ useMemo,
+} from 'react'
-import SectionBoundary from './SectionBoundary'
import { Section } from '@vtex/client-cms'
+import SectionBoundary from './SectionBoundary'
+import ViewportObserver from './ViewportObserver'
+
+import { useUI } from '@faststore/ui'
interface Props {
components: Record>
sections: Array<{ name: string; data: any }>
}
+const SECTIONS_OUT_OF_VIEWPORT = ['CartSidebar', 'RegionModal']
+
const useDividedSections = (sections: Section[]) => {
return useMemo(() => {
const indexChildren = sections.findIndex(({ name }) => name === 'Children')
@@ -21,6 +32,39 @@ const useDividedSections = (sections: Section[]) => {
}, [sections])
}
+/**
+ * This component is responsible for lazy loading Sections that are out of the viewport.
+ * It achieves this by:
+ * 1. Using the IntersectionObserver API for Sections below the fold.
+ * 2. Checking the UI context for Sections that are not in the viewport, such as the CartSidebar and RegionModal.
+ *
+ * @param sectionName
+ * @returns
+ */
+export const LazyLoadingSection = ({
+ sectionName,
+ children,
+}: {
+ sectionName: string
+ children: ReactNode
+}) => {
+ const { cart: displayCart, modal: displayModal } = useUI()
+
+ if (SECTIONS_OUT_OF_VIEWPORT.includes(sectionName)) {
+ const shouldLoad =
+ (sectionName === 'CartSidebar' && displayCart) ||
+ (sectionName === 'RegionModal' && displayModal)
+ if (!shouldLoad) {
+ return null
+ }
+
+ return children
+ }
+ return (
+ {children}
+ )
+}
+
const RenderSectionsBase = ({ sections = [], components }: Props) => {
return (
<>
@@ -37,7 +81,7 @@ const RenderSectionsBase = ({ sections = [], components }: Props) => {
}
return (
-
+
)
diff --git a/packages/core/src/components/sections/Hero/Hero.tsx b/packages/core/src/components/sections/Hero/Hero.tsx
index c98c26116d..85987474d6 100644
--- a/packages/core/src/components/sections/Hero/Hero.tsx
+++ b/packages/core/src/components/sections/Hero/Hero.tsx
@@ -60,6 +60,7 @@ const Hero = ({
width={360}
height={240}
sizes="(max-width: 412px) 40vw, (max-width: 768px) 90vw, 50vw"
+ priority={true}
/>
Date: Mon, 28 Oct 2024 14:56:07 +0000
Subject: [PATCH 109/154] [no ci] Release: 3.0.138
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 0ef18fcac3..cd8f175408 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.137",
+ "version": "3.0.138",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 8e8aaac64d..bb1eb058bb 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.137 linux-x64 node-v18.20.4
+@faststore/cli/3.0.138 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.137/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index fc4862b965..e72fbb5f73 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.137",
+ "version": "3.0.138",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.137",
+ "@faststore/core": "^3.0.138",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 3654f530bb..452e616150 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.137",
+ "version": "3.0.138",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 6bd8093b7d88b17b59509a59ad2b6bb8aef88388 Mon Sep 17 00:00:00 2001
From: Guilherme Carvalho <77246+gvc@users.noreply.github.com>
Date: Wed, 30 Oct 2024 14:31:54 -0300
Subject: [PATCH 110/154] fix: don't move .next directory if it is in the
correct place (#2532)
## What's the purpose of this pull request?
To fix the build of accounts using the discovery-only repo.
## How it works?
Instead of blindly moving `.faststore/.next` to the same place, we first
check if we're trying to move it to the same place. If it is, we just
skipping copy altogether.
## How to test it?
Do the onboarding and change the repo to use this preview URL.
### Starters Deploy Preview
TBD
---
packages/cli/src/commands/build.ts | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/packages/cli/src/commands/build.ts b/packages/cli/src/commands/build.ts
index c2bb07bf84..d96fe93d4d 100644
--- a/packages/cli/src/commands/build.ts
+++ b/packages/cli/src/commands/build.ts
@@ -93,7 +93,13 @@ async function copyResources(basePath: string) {
if (process.env.BUILD_CONTEXT === 'vercel') {
const toDir = process.cwd()
- await copyResource(`${tmpDir}/.next`, `${toDir}/.faststore/.next`)
+ // Because of how copyResource works (delete the target directory if it exists),
+ // if we're moving something to the same place it is it will break.
+ const nextOutputDirectory = `${tmpDir}/.next`
+ const expectedOutputDirectory = `${toDir}/.faststore/.next`
+ if (nextOutputDirectory !== expectedOutputDirectory) {
+ await copyResource(nextOutputDirectory, expectedOutputDirectory)
+ }
await copyResource(`${tmpDir}/public`, `${toDir}/public`)
} else {
await copyResource(`${tmpDir}/.next`, `${userDir}/.next`)
From 7be359de7b684742964f4791bcfaa1d149decbc7 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 30 Oct 2024 17:37:10 +0000
Subject: [PATCH 111/154] [no ci] Release: 3.0.139
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 2 +-
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/lerna.json b/lerna.json
index cd8f175408..848fa9e1c7 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.138",
+ "version": "3.0.139",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index bb1eb058bb..1333a15fb1 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.138 linux-x64 node-v18.20.4
+@faststore/cli/3.0.139 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.138/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index e72fbb5f73..9513bf4124 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.138",
+ "version": "3.0.139",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
From 2308e8687d398ba1f56d1f04b08febb135271bf7 Mon Sep 17 00:00:00 2001
From: EmanuelRamos115 <162623679+EmanuelRamos115@users.noreply.github.com>
Date: Thu, 31 Oct 2024 19:48:20 -0300
Subject: [PATCH 112/154] fix: has child items logic on validate cart (bug)
(#2524)
## What's the purpose of this pull request?
Solves the bug when I have the same item with attachment without
necessarily having the same number of attachments
## How it works?
The validation done previously was always returning false, now it
returns correctly
## How to test it?
Add products with assembly, but do not add the same total amount of
assembly
## Checklist
**PR Title and Commit Messages**
- [x] PR title and commit messages follow the [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
- Available prefixes: `feat`, `fix`, `chore`, `docs`, `style`,
`refactor` and `test`
**PR Description**
- [x] Added a label according to the PR goal - `breaking change`, `bug`,
`contributing`, `performance`, `documentation`..
**Dependencies**
- [x] Committed the `yarn.lock` file when there were changes to the
packages
Co-authored-by: Emanuel Ramos <78380713+Emanuel-Ramos@users.noreply.github.com>
---
.../platforms/vtex/resolvers/validateCart.ts | 23 ++++++++++++++-----
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/packages/api/src/platforms/vtex/resolvers/validateCart.ts b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
index 4b5a96d0c6..6198e42dc8 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateCart.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
@@ -110,19 +110,27 @@ const equals = (storeOrder: IStoreOrder, orderForm: OrderForm) => {
}
function hasChildItem(items: OrderFormItem[], itemId: string) {
- return items?.some(item => item.parentItemIndex && items[item.parentItemIndex].id === itemId)
+ return items?.some(
+ (item) =>
+ item.parentItemIndex !== null &&
+ item.parentItemIndex !== undefined &&
+ items[item.parentItemIndex]?.id === itemId
+ )
}
function hasParentItem(items: OrderFormItem[], itemId: string) {
- return items?.some(item => item.id === itemId && item.parentItemIndex !== null)
+ return items?.some(
+ (item) => item.id === itemId && item.parentItemIndex !== null
+ )
}
const joinItems = (form: OrderForm) => {
const itemsById = form.items.reduce(
(acc, item, idx) => {
- const id = hasParentItem(form.items, item.id) || hasChildItem(form.items, item.id) ?
- `${getId(orderFormItemToOffer(item))}::${idx}` :
- getId(orderFormItemToOffer(item))
+ const id =
+ hasParentItem(form.items, item.id) || hasChildItem(form.items, item.id)
+ ? `${getId(orderFormItemToOffer(item))}::${idx}`
+ : getId(orderFormItemToOffer(item))
if (!acc[id]) {
acc[id] = []
@@ -388,7 +396,10 @@ export const validateCart = async (
// Update existing items
const [head, ...tail] = maybeOriginItem
- if(hasParentItem(orderForm.items, head.itemOffered.sku) || hasChildItem(orderForm.items, head.itemOffered.sku)) {
+ if (
+ hasParentItem(orderForm.items, head.itemOffered.sku) ||
+ hasChildItem(orderForm.items, head.itemOffered.sku)
+ ) {
acc.itemsToUpdate.push(head)
return acc
From 5d08521fda57ec355d8a9943235c7f4e7121ed24 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Thu, 31 Oct 2024 22:53:36 +0000
Subject: [PATCH 113/154] [no ci] Release: 3.0.140
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 4f415a69d0..207833715a 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.135",
+ "version": "3.0.140",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.135",
+ "@faststore/api": "^3.0.140",
"@faststore/sdk": "^3.0.135",
"@faststore/ui": "^3.0.135",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index 848fa9e1c7..ce5f9a3a16 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.139",
+ "version": "3.0.140",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 261db31d76..74f9e2f4a2 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.135",
+ "version": "3.0.140",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 1333a15fb1..a8d29d7c14 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.139 linux-x64 node-v18.20.4
+@faststore/cli/3.0.140 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.139/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 9513bf4124..0dde3265d6 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.139",
+ "version": "3.0.140",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.138",
+ "@faststore/core": "^3.0.140",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 452e616150..1d5b526bfe 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.138",
+ "version": "3.0.140",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.135",
+ "@faststore/api": "^3.0.140",
"@faststore/components": "^3.0.135",
"@faststore/graphql-utils": "^3.0.135",
"@faststore/lighthouse": "^3.0.135",
From c92d785bb957078e294edd9e09026794840751da Mon Sep 17 00:00:00 2001
From: Arthur Andrade
Date: Mon, 4 Nov 2024 10:08:53 -0300
Subject: [PATCH 114/154] Feat: Improve Dropdown Component (#2492)
## What's the purpose of this pull request?
Improve the Dropdown by adding new options and expanding its usability.
In this PR, properties like `asChild`, `alignment`, and `dismissOnClick`
have been added. There are no breaking changes, but properties related
to icons in `DropdownButton` and `DropdownMenuItem` were marked as
deprecated, as these functionalities can now be configured directly
within the component content.
## How does it work?
### New Hooks
As part of the refactor of the `DropdownButton` and `DropdownMenuItem`
components, new hooks were created that encapsulate logic, enabling new
components to be created with a fresh structure while maintaining
functionality. The new hooks are `useDropdownItem` and
`useDropdownTrigger`.
### Alignment Property
A new property called `align` has been added to the `DropdownMenu`. This
property allows the `DropdownMenu` to align with the `DropdownButton`
based on the desired alignment: right, left, or center.
| right | center | left |
|----------|--------|------------|
|
|
|
|
### Adjustments to the `useDropdownPosition` Hook
Some adjustments have been made to the `useDropdownPosition` hook. It
now observes changes in window resizing, fixing the alignment bug for
the Dropdown.
### Controlled Component
New functionality has been added to allow the Dropdown to be controlled
externally, enabling it to be manipulated through external states.
Example:
```jsx
const [isOpen, setIsOpen] = useState(false)
return (
{setIsOpen(false)}}>
Controlled Dropdown
A - Dropdown item as child
B - Dropdown item as child
C - Dropdown item as child
D - Dropdown item as child
```
The usage of the controlled Dropdown can be seen in the preview at:
[#controlled](https://faststore-site-git-feat-improve-dropdowneat-faststore.vercel.app/components/molecules/dropdown#controlled)
### asChild Property
Based on libraries like Radix, the DropdownButton and DropdownMenuItem
components now include the asChild property. This allows replacing the
default rendered components with custom child elements, while
maintaining behavior through prop passing. Example:
```jsx
{'Dropdown with trigger as child'}
A - Dropdown item as child
B - Dropdown item as child
C - Dropdown item as child
D - Dropdown item as child
```
The usage of the asChild property can be seen in the preview at:
[#as-child](https://faststore-site-git-feat-improve-dropdowneat-faststore.vercel.app/components/molecules/dropdown#as-child)
How to test it?
You can test it by visiting the documentation at:
https://faststore-site-git-feat-improve-dropdowneat-faststore.vercel.app/components/molecules/dropdown
References
[Dropdown
Menu](https://www.radix-ui.com/primitives/docs/components/dropdown-menu)
[B2BTEAM-1895](https://vtex-dev.atlassian.net/browse/B2BTEAM-1895)
## Checklist
You may erase this after checking them all :wink:
**PR Title and Commit Messages**
- [x] PR title and commit messages follow the [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
- Available prefixes: feat, fix, chore, docs, style, refactor and test
**PR Description**
- [x] Added a label according to the PR goal - breaking change, bug,
contributing, performance, documentation..
**Dependencies**
- [ ] Committed the yarn.lock file when there were changes to the
packages
[B2BTEAM-1895]:
https://vtex-dev.atlassian.net/browse/B2BTEAM-1895?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
---------
Co-authored-by: Fanny Chien
---
apps/site/middleware.ts | 32 +++---
.../pages/components/molecules/dropdown.mdx | 106 +++++++++++++++++-
packages/components/src/atoms/Button/index.ts | 2 +-
.../src/molecules/Dropdown/Dropdown.tsx | 45 +++++---
.../src/molecules/Dropdown/DropdownButton.tsx | 77 +++++++------
.../src/molecules/Dropdown/DropdownItem.tsx | 86 +++++++-------
.../src/molecules/Dropdown/DropdownMenu.tsx | 76 ++++++++++---
.../Dropdown/contexts/DropdownContext.ts | 20 ++--
.../molecules/Dropdown/hooks/useDropdown.ts | 6 +-
.../Dropdown/hooks/useDropdownItem.ts | 56 +++++++++
.../Dropdown/hooks/useDropdownPosition.ts | 81 +++++++++----
.../Dropdown/hooks/useDropdownTrigger.ts | 26 +++++
12 files changed, 445 insertions(+), 168 deletions(-)
create mode 100644 packages/components/src/molecules/Dropdown/hooks/useDropdownItem.ts
create mode 100644 packages/components/src/molecules/Dropdown/hooks/useDropdownTrigger.ts
diff --git a/apps/site/middleware.ts b/apps/site/middleware.ts
index 5fcf566fd4..b3167eaec0 100644
--- a/apps/site/middleware.ts
+++ b/apps/site/middleware.ts
@@ -1,21 +1,21 @@
import { NextResponse, NextRequest } from 'next/server'
export function middleware(request: NextRequest) {
- const { pathname } = new URL(request.url)
- if (pathname.startsWith('/docs')) {
- return NextResponse.redirect(
- `https://developers.vtex.com/docs/guides/faststore${pathname.replace(
- '/docs',
- ''
- )}`
- )
- }
- if (pathname.startsWith('/components')) {
- return NextResponse.redirect(
- `https://developers.vtex.com/docs/guides/faststore${pathname
- .replace('/components', '')
- .replace(/\/([^\/]*)\//, '/$1-')}`
- )
- }
+ // const { pathname } = new URL(request.url)
+ // if (pathname.startsWith('/docs')) {
+ // return NextResponse.redirect(
+ // `https://developers.vtex.com/docs/guides/faststore${pathname.replace(
+ // '/docs',
+ // ''
+ // )}`
+ // )
+ // }
+ // if (pathname.startsWith('/components')) {
+ // return NextResponse.redirect(
+ // `https://developers.vtex.com/docs/guides/faststore${pathname
+ // .replace('/components', '')
+ // .replace(/\/([^\/]*)\//, '/$1-')}`
+ // )
+ // }
return NextResponse.next()
}
diff --git a/apps/site/pages/components/molecules/dropdown.mdx b/apps/site/pages/components/molecules/dropdown.mdx
index 3945e39c96..998a53eca8 100644
--- a/apps/site/pages/components/molecules/dropdown.mdx
+++ b/apps/site/pages/components/molecules/dropdown.mdx
@@ -29,6 +29,7 @@ import { OverviewSection } from 'site/components/OverviewSection'
import path from 'path'
import { useSSG } from 'nextra/ssg'
import { getComponentPropsFrom } from 'site/components/utilities/propsSection'
+import { useState } from 'react'
export const getStaticProps = () => {
const dropdownPath = path.resolve(__filename)
@@ -88,10 +89,8 @@ Displays a set of actions/items to the user, usually used to show a menu of opti
- }>
- {'Dropdown'}
-
-
+ }>Dropdown
+
}>
{'Dropdown Item 1'}
@@ -107,7 +106,7 @@ Displays a set of actions/items to the user, usually used to show a menu of opti
}>
{'Dropdown Small'}
-
+
}>
{'Dropdown Item 1'}
@@ -186,6 +185,8 @@ Follow the instructions in the [Importing FastStore UI component styles](/docs/c
## Usage
+#### Default
+
@@ -231,6 +232,101 @@ Follow the instructions in the [Importing FastStore UI component styles](/docs/c
+#### Controlled
+
+export const ControlledDropdown = () => {
+ const [isOpen, setIsOpen] = useState(false)
+ return (
+ {setIsOpen(false)}}>
+ setIsOpen(true)}>Controlled Dropdown
+
+ A - Dropdown item
+ B - Dropdown item
+ C - Dropdown item
+ D - Dropdown item
+
+
+ )
+}
+
+
+
+
+
+
+
+
+ ```tsx
+
+ const [isOpen, setIsOpen] = useState(false)
+ return (
+ {setIsOpen(false)}}>
+ Controlled Dropdown
+
+ A - Dropdown item
+ B - Dropdown item
+ C - Dropdown item
+ D - Dropdown item
+
+
+
+ ```
+
+
+
+#### As Child
+
+
+
+
+
+
+ {'Dropdown with trigger as child'}
+
+
+
+ A - Dropdown item as child
+
+
+ B - Dropdown item as child
+
+
+ C - Dropdown item as child
+
+
+ D - Dropdown item as child
+
+
+
+
+
+
+ ```tsx
+
+
+
+ {'Dropdown with trigger as child'}
+
+
+
+ A - Dropdown item as child
+
+
+ B - Dropdown item as child
+
+
+ C - Dropdown item as child
+
+
+ D - Dropdown item as child
+
+
+
+
+ ```
+
+
+
---
## Props
diff --git a/packages/components/src/atoms/Button/index.ts b/packages/components/src/atoms/Button/index.ts
index c378f002c0..8dbc1909ca 100644
--- a/packages/components/src/atoms/Button/index.ts
+++ b/packages/components/src/atoms/Button/index.ts
@@ -1,2 +1,2 @@
export { default } from './Button'
-export type { ButtonProps } from './Button'
+export type { ButtonProps, Variant as ButtonVariant, Size as ButtonSize, IconPosition as ButtonIconPosition } from './Button'
diff --git a/packages/components/src/molecules/Dropdown/Dropdown.tsx b/packages/components/src/molecules/Dropdown/Dropdown.tsx
index aacec6e08a..40c58ef362 100644
--- a/packages/components/src/molecules/Dropdown/Dropdown.tsx
+++ b/packages/components/src/molecules/Dropdown/Dropdown.tsx
@@ -20,38 +20,47 @@ export interface DropdownProps {
const Dropdown = ({
children,
- isOpen: isOpenDefault = false,
+ isOpen: isOpenControlled,
onDismiss,
id = 'fs-dropdown',
}: PropsWithChildren) => {
- const [isOpen, setIsOpen] = useState(isOpenDefault)
- const dropdownItemsRef = useRef([])
+ const [isOpenInternal, setIsOpenInternal] = useState(false)
+ const dropdownItemsRef = useRef([])
const selectedDropdownItemIndexRef = useRef(0)
- const dropdownButtonRef = useRef(null)
+ const dropdownTriggerRef = useRef(null)
+
+ const isOpen = isOpenControlled ?? isOpenInternal
const close = useCallback(() => {
- setIsOpen(false)
+ setIsOpenInternal(false)
onDismiss?.()
}, [onDismiss])
const open = () => {
- setIsOpen(true)
+ setIsOpenInternal(true)
}
const toggle = useCallback(() => {
- setIsOpen((old) => {
- if (old) {
+ setIsOpenInternal((currentIsOpen) => {
+ if (currentIsOpen) {
onDismiss?.()
- dropdownButtonRef.current?.focus()
+ dropdownTriggerRef.current?.focus()
}
- return !old
+ return !currentIsOpen
})
}, [onDismiss])
+ const addDropdownTriggerRef = useCallback(
+ (ref: T) => {
+ dropdownTriggerRef.current = ref
+ },
+ []
+ )
+
useEffect(() => {
- setIsOpen(isOpenDefault)
- }, [isOpenDefault])
+ setIsOpenInternal(isOpenControlled ?? false)
+ }, [isOpenControlled])
useEffect(() => {
isOpen && dropdownItemsRef?.current[0]?.focus()
@@ -61,8 +70,8 @@ const Dropdown = ({
let firstClick = true
const event = (e: MouseEvent) => {
- const someItemWasClicked = dropdownItemsRef?.current.some(
- (item) => e.target === item
+ const wasSomeItemClicked = dropdownItemsRef?.current.some(
+ (item) => e.target === item || item.contains(e.target as Node)
)
if (firstClick) {
@@ -71,7 +80,7 @@ const Dropdown = ({
return
}
- !someItemWasClicked && close()
+ !wasSomeItemClicked && close()
}
if (isOpen) {
@@ -91,13 +100,13 @@ const Dropdown = ({
close,
open,
toggle,
- dropdownButtonRef,
- onDismiss,
+ dropdownTriggerRef,
+ addDropdownTriggerRef,
selectedDropdownItemIndexRef,
dropdownItemsRef,
id,
}
- }, [close, id, isOpen, onDismiss, toggle])
+ }, [isOpen, close, toggle, addDropdownTriggerRef, id])
return (
diff --git a/packages/components/src/molecules/Dropdown/DropdownButton.tsx b/packages/components/src/molecules/Dropdown/DropdownButton.tsx
index 6ca2305cde..115d1b8aaa 100644
--- a/packages/components/src/molecules/Dropdown/DropdownButton.tsx
+++ b/packages/components/src/molecules/Dropdown/DropdownButton.tsx
@@ -1,51 +1,64 @@
-import React, { forwardRef, useImperativeHandle, AriaAttributes } from 'react'
-import Button, { ButtonProps } from '../../atoms/Button'
-
-import { useDropdown } from './hooks/useDropdown'
+import React, { cloneElement, forwardRef, ReactNode } from 'react'
+import Button, { ButtonProps, ButtonIconPosition } from '../../atoms/Button'
+import { useDropdownTrigger } from './hooks/useDropdownTrigger'
export interface DropdownButtonProps
- extends Omit {
+ extends Omit {
/**
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
*/
testId?: string
/**
- * For accessibility purposes, add an ARIA label to the element when it doesn't have a label.
+ * Replace the default rendered element with the provided child element, merging their props and behavior.
+ */
+ asChild?: boolean
+ /**
+ * Boolean that represents a loading state.
+ */
+ loading?: boolean
+ /**
+ * Specifies a label for loading state.
+ */
+ loadingLabel?: string
+ /**
+ * @deprecated
+ * A React component that will be rendered as an icon.
+ */
+ icon?: ReactNode
+ /**
+ * @deprecated
+ * Specifies where the icon should be positioned
*/
- 'aria-label'?: AriaAttributes['aria-label']
+ iconPosition?: ButtonIconPosition
}
const DropdownButton = forwardRef(
function DropdownButton(
- {
- testId = 'fs-dropdown-button',
- 'aria-label': ariaLabel,
- children,
- ...otherProps
- },
- ref
+ { testId = 'fs-dropdown-button', children, asChild = false, ...otherProps },
+ triggerRef
) {
- const { toggle, dropdownButtonRef, isOpen, id } = useDropdown()
+ const triggerProps = useDropdownTrigger({ triggerRef })
- useImperativeHandle(ref, () => dropdownButtonRef!.current!, [
- dropdownButtonRef,
- ])
+ const asChildrenTrigger = React.isValidElement(children)
+ ? cloneElement(children, { ...triggerProps, ...children.props })
+ : children
return (
-
- {children}
-
+ <>
+ {asChild ? (
+ asChildrenTrigger
+ ) : (
+
+ {children}
+
+ )}
+ >
)
}
)
diff --git a/packages/components/src/molecules/Dropdown/DropdownItem.tsx b/packages/components/src/molecules/Dropdown/DropdownItem.tsx
index 7fd3652fb3..2c48c4bc6d 100644
--- a/packages/components/src/molecules/Dropdown/DropdownItem.tsx
+++ b/packages/components/src/molecules/Dropdown/DropdownItem.tsx
@@ -1,7 +1,7 @@
import type { ButtonHTMLAttributes, ReactNode } from 'react'
-import React, { forwardRef, useImperativeHandle, useRef, useState } from 'react'
+import React, { cloneElement, forwardRef } from 'react'
-import { useDropdown } from './hooks/useDropdown'
+import { useDropdownItem } from './hooks/useDropdownItem'
export interface DropdownItemProps
extends ButtonHTMLAttributes {
@@ -10,63 +10,55 @@ export interface DropdownItemProps
*/
testId?: string
/**
+ * @deprecated
* A React component that will be rendered as an icon.
*/
icon?: ReactNode
+ /**
+ * Replace the default rendered element with the one passed as a child, merging their props and behavior.
+ * */
+ asChild?: boolean
+ /**
+ * Emit onDismiss event when the component is clicked.
+ */
+ dismissOnClick?: boolean
}
const DropdownItem = forwardRef(
function Button(
- { children, icon, onClick, testId = 'fs-dropdown-item', ...otherProps },
+ {
+ children,
+ asChild,
+ icon,
+ onClick,
+ dismissOnClick = true,
+ testId = 'fs-dropdown-item',
+ ...otherProps
+ },
ref
) {
- const { dropdownItemsRef, selectedDropdownItemIndexRef, close } =
- useDropdown()
-
- const [dropdownItemIndex, setDropdownItemIndex] = useState(0)
- const dropdownItemRef = useRef()
-
- const addToRefs = (el: HTMLButtonElement) => {
- if (el && !dropdownItemsRef?.current.includes(el)) {
- dropdownItemsRef?.current.push(el)
- setDropdownItemIndex(
- dropdownItemsRef?.current.findIndex((element) => element === el) ?? 0
- )
- }
-
- dropdownItemRef.current = el
- }
-
- const onFocusItem = () => {
- selectedDropdownItemIndexRef!.current = dropdownItemIndex
- dropdownItemsRef?.current[selectedDropdownItemIndexRef!.current]?.focus()
- }
-
- const handleOnClickItem = (
- event: React.MouseEvent
- ) => {
- onClick?.(event)
- close?.()
- }
+ const itemProps = useDropdownItem({ ref, onClick, dismissOnClick })
- useImperativeHandle(ref, () => dropdownItemRef.current!, [])
+ const asChildrenItem = React.isValidElement(children)
+ ? cloneElement(children, { ...itemProps, ...children.props })
+ : children
return (
-
- {!!icon && icon}
- {children}
-
+ <>
+ {asChild ? (
+ asChildrenItem
+ ) : (
+
+ {!!icon && icon}
+ {children}
+
+ )}
+ >
)
}
)
diff --git a/packages/components/src/molecules/Dropdown/DropdownMenu.tsx b/packages/components/src/molecules/Dropdown/DropdownMenu.tsx
index fad2237f23..b213f9cf96 100644
--- a/packages/components/src/molecules/Dropdown/DropdownMenu.tsx
+++ b/packages/components/src/molecules/Dropdown/DropdownMenu.tsx
@@ -22,17 +22,19 @@ export interface DropdownMenuProps extends ModalContentProps {
* @see aria-labelledby https://www.w3.org/TR/wai-aria-1.1/#aria-labelledby
*/
'aria-labelledby'?: AriaAttributes['aria-label']
-
/**
* This function is called whenever the user hits "Escape" or clicks outside
* the dialog.
*/
onDismiss?: (event: MouseEvent | KeyboardEvent) => void
-
- /**
+ /**
* Specifies the size variant.
*/
size?: 'small' | 'regular'
+ /**
+ * Alignment for the dropdown
+ */
+ align?: 'left' | 'right' | 'center'
children: ReactNode[] | ReactNode
}
@@ -47,13 +49,20 @@ const DropdownMenu = ({
children,
testId = 'fs-dropdown-menu',
size = 'regular',
+ align = 'left',
style,
...otherProps
}: PropsWithChildren) => {
- const { isOpen, close, dropdownItemsRef, selectedDropdownItemIndexRef, dropdownButtonRef, id } =
- useDropdown()
+ const {
+ isOpen,
+ close,
+ dropdownItemsRef,
+ selectedDropdownItemIndexRef,
+ dropdownTriggerRef,
+ id,
+ } = useDropdown()
- const dropdownPosition = useDropdownPosition()
+ const { loading: loadingPosition, ...dropdownPosition } = useDropdownPosition(align)
const childrenLength = React.Children.toArray(children).length
@@ -89,25 +98,56 @@ const DropdownMenu = ({
const handleEscapePress = () => {
close?.()
- dropdownButtonRef?.current?.focus()
+ dropdownTriggerRef?.current?.focus()
}
+ const handleKeyNavigatePress = (key: string) => {
+ const dropdownItems = dropdownItemsRef?.current ?? [];
+ const selectedIndex = selectedDropdownItemIndexRef!.current;
+
+ const rearrangedDropdownItems = [
+ ...dropdownItems.slice(selectedIndex + 1),
+ ...dropdownItems.slice(0, selectedIndex + 1),
+ ];
+
+ const matchItem = rearrangedDropdownItems.find(
+ (item) => item.textContent?.[0]?.toLowerCase() === key.toLowerCase()
+ );
+
+ if (matchItem) {
+ selectedDropdownItemIndexRef!.current = dropdownItems.indexOf(matchItem);
+ matchItem.focus();
+ }
+ };
+
+
const handleBackdropKeyDown = (event: KeyboardEvent) => {
- if (event.defaultPrevented || event.key === 'Enter') {
+ if (event.defaultPrevented || event.key === 'Enter' || event.key === ' ') {
return
}
event.preventDefault()
- event.key === 'Escape' && handleEscapePress()
-
- event.key === 'ArrowDown' && handleDownPress()
-
- event.key === 'ArrowUp' && handleUpPress()
-
- event.key === 'Home' && handleHomePress()
-
- event.key === 'End' && handleEndPress()
+ switch (event.key) {
+ case 'Escape':
+ handleEscapePress()
+ break
+ case 'ArrowDown':
+ handleDownPress()
+ break
+ case 'ArrowUp':
+ handleUpPress()
+ break
+ case 'Home':
+ handleHomePress()
+ break
+ case 'End':
+ handleEndPress()
+ break
+ default:
+ handleKeyNavigatePress(event.key)
+ break
+ }
event.stopPropagation()
}
@@ -118,7 +158,7 @@ const DropdownMenu = ({
return null
}
- return isOpen
+ return (isOpen && !loadingPosition)
? createPortal(
= {
/**
* Control de Dropdown state as Opened (true) or Closed (false).
*/
@@ -8,7 +11,7 @@ export type DropdownContextState = {
/**
* Reference to DropdownButton, used to calculate a position for the DropdownMenu.
*/
- dropdownButtonRef: React.RefObject
| null
+ dropdownTriggerRef: React.MutableRefObject | null
/**
* Reference to a selected DropdownItem, used to manipulate focus.
*/
@@ -16,11 +19,7 @@ export type DropdownContextState = {
/**
* Array of References to dropdownItems in a DropdownMenu.
*/
- dropdownItemsRef: React.MutableRefObject | null
- /**
- * Close DropdownMenu event inherited from Modal.
- */
- onDismiss?(): void
+ dropdownItemsRef: React.MutableRefObject | null
/**
* Function responsible for close the DropdownMenu in this context.
*/
@@ -33,16 +32,19 @@ export type DropdownContextState = {
* Function responsible for switch the the DropdownMenu state in this context.
*/
toggle?(): void
-
/**
* Identifier to be used in aria-controls
*/
id: string
+ /**
+ * Associates the dropdown trigger element's ref for managing its position and interaction events.
+ */
+ addDropdownTriggerRef?(ref: T | null): void
}
const defaultState: DropdownContextState = {
isOpen: false,
- dropdownButtonRef: null,
+ dropdownTriggerRef: null,
selectedDropdownItemIndexRef: null,
dropdownItemsRef: null,
id: 'fs-dropdown',
diff --git a/packages/components/src/molecules/Dropdown/hooks/useDropdown.ts b/packages/components/src/molecules/Dropdown/hooks/useDropdown.ts
index 06aa17b3f3..22d24d6e86 100644
--- a/packages/components/src/molecules/Dropdown/hooks/useDropdown.ts
+++ b/packages/components/src/molecules/Dropdown/hooks/useDropdown.ts
@@ -7,12 +7,12 @@ import DropdownContext from '../contexts/DropdownContext'
* Hook to use the Dropdown context.
* @returns Dropdown context.
*/
-export const useDropdown = () => {
- const context = useContext(DropdownContext)
+export const useDropdown = () => {
+ const context = useContext>(DropdownContext)
if (context === undefined) {
throw new Error('Do not use useDropdown hook outside the Dropdown context.')
}
- return context
+ return context as DropdownContextState
}
diff --git a/packages/components/src/molecules/Dropdown/hooks/useDropdownItem.ts b/packages/components/src/molecules/Dropdown/hooks/useDropdownItem.ts
new file mode 100644
index 0000000000..112f46bba8
--- /dev/null
+++ b/packages/components/src/molecules/Dropdown/hooks/useDropdownItem.ts
@@ -0,0 +1,56 @@
+import React, { useImperativeHandle, useRef, useState } from 'react'
+
+import { useDropdown } from './useDropdown'
+
+export type UseDropdownItemProps = {
+ ref: React.ForwardedRef
+ onClick?: React.MouseEventHandler
+ dismissOnClick?: boolean
+}
+
+export const useDropdownItem = ({
+ ref,
+ onClick,
+ dismissOnClick = true,
+}: UseDropdownItemProps) => {
+ const { dropdownItemsRef, selectedDropdownItemIndexRef, close } = useDropdown<
+ never,
+ E
+ >()
+
+ const [dropdownItemIndex, setDropdownItemIndex] = useState(0)
+ const dropdownItemRef = useRef()
+
+ const addToRefs = (el: E) => {
+ if (el && !dropdownItemsRef?.current.includes(el)) {
+ dropdownItemsRef?.current.push(el)
+ setDropdownItemIndex(
+ dropdownItemsRef?.current.findIndex((element) => element === el) ?? 0
+ )
+ }
+
+ dropdownItemRef.current = el
+ }
+
+ const onFocusItem = () => {
+ selectedDropdownItemIndexRef!.current = dropdownItemIndex
+ dropdownItemsRef?.current[selectedDropdownItemIndexRef!.current]?.focus()
+ }
+
+ const handleOnClickItem = (event: React.MouseEvent) => {
+ onClick?.(event)
+ dismissOnClick && close?.()
+ }
+
+ useImperativeHandle(ref, () => dropdownItemRef.current!, [])
+
+ return {
+ ref: addToRefs,
+ onFocus: onFocusItem,
+ onMouseEnter: onFocusItem,
+ onClick: handleOnClickItem,
+ role: 'menuitem',
+ tabIndex: -1,
+ 'data-index': dropdownItemIndex,
+ }
+}
diff --git a/packages/components/src/molecules/Dropdown/hooks/useDropdownPosition.ts b/packages/components/src/molecules/Dropdown/hooks/useDropdownPosition.ts
index c4abd9edd5..73fbe1f95b 100644
--- a/packages/components/src/molecules/Dropdown/hooks/useDropdownPosition.ts
+++ b/packages/components/src/molecules/Dropdown/hooks/useDropdownPosition.ts
@@ -1,33 +1,76 @@
+import { useEffect, useState } from 'react'
import { useDropdown } from './useDropdown'
-type DropdownPosition = Pick
+type DropdownPosition = {
+ loading: boolean
+} & Pick
/**
* Hook used to find the DropdownMenu position in relation to DropdownButton
* @returns Style with positions.
*/
-export const useDropdownPosition = (): DropdownPosition => {
- const { dropdownButtonRef } = useDropdown()
+export const useDropdownPosition = (align: 'left' | 'center' | 'right' = 'left'): DropdownPosition => {
+ const { dropdownTriggerRef, isOpen } = useDropdown()
- // Necessary to use this component in SSR
- const isBrowser = typeof window !== 'undefined'
+ const [positionProps, setPositionProps] = useState({
+ top: 0,
+ left: 0 as React.CSSProperties['left'],
+ right: 'auto',
+ transform: 'none',
+ loading: true
+ })
- const buttonRect = dropdownButtonRef?.current?.getBoundingClientRect()
- const topLevel = buttonRect?.top ?? 0
- const topOffset = buttonRect?.height ?? 0
- const leftLevel = buttonRect?.left ?? 0
+ useEffect(() => {
+ const updateMenuPosition = () => {
+ // Necessary to use this component in SSR
+ const isBrowser = typeof window !== 'undefined'
- // The scroll properties fix the position of DropdownMenu when the scroll is activated.
- const scrollTop = isBrowser ? document?.documentElement?.scrollTop : 0
- const scrollLeft = isBrowser ? document?.documentElement?.scrollLeft : 0
+ if (!dropdownTriggerRef?.current) return
- const topPosition = topLevel + topOffset + scrollTop
+ const buttonRect = dropdownTriggerRef.current.getBoundingClientRect()
+ const topLevel = buttonRect?.top ?? 0
+ const topOffset = buttonRect?.height ?? 0
+ const leftLevel = buttonRect?.left ?? 0
+ const buttonWidth = buttonRect?.width ?? 0
- const leftPosition = leftLevel + scrollLeft
+ // The scroll properties fix the position of DropdownMenu when the scroll is activated.
+ const scrollTop = isBrowser ? document?.documentElement?.scrollTop : 0
+ const scrollLeft = isBrowser ? document?.documentElement?.scrollLeft : 0
- return {
- position: 'absolute',
- top: topPosition,
- left: leftPosition,
- }
+ const topPosition = topLevel + topOffset + scrollTop
+
+ let leftPosition: React.CSSProperties['left'] = leftLevel + scrollLeft
+ let rightPosition = 'auto'
+ let transform = 'none'
+
+ if (align === 'right') {
+ rightPosition = `${document.documentElement.clientWidth - leftLevel - buttonWidth}px`
+ leftPosition = 'auto'
+ } else if (align === 'center') {
+ leftPosition = leftLevel + (buttonWidth / 2) + scrollLeft
+ transform = 'translateX(-50%)'
+ }
+
+ setPositionProps({
+ top: topPosition,
+ left: leftPosition,
+ right: rightPosition,
+ transform,
+ loading: false
+ })
+ }
+
+ if (isOpen) {
+ // Update the position of the menu
+ updateMenuPosition()
+ window.addEventListener('resize', updateMenuPosition)
+ }
+
+ // Cleanup listener on unmount or close
+ return () => {
+ window.removeEventListener('resize', updateMenuPosition)
+ }
+ }, [dropdownTriggerRef, isOpen, align])
+
+ return { ...positionProps, position: 'absolute' as const }
}
diff --git a/packages/components/src/molecules/Dropdown/hooks/useDropdownTrigger.ts b/packages/components/src/molecules/Dropdown/hooks/useDropdownTrigger.ts
new file mode 100644
index 0000000000..d85962f313
--- /dev/null
+++ b/packages/components/src/molecules/Dropdown/hooks/useDropdownTrigger.ts
@@ -0,0 +1,26 @@
+import { useDropdown } from './useDropdown'
+import React, { useImperativeHandle } from 'react'
+
+type UseDropdownTriggerProps = {
+ triggerRef: React.ForwardedRef
+ label?: string
+}
+
+export const useDropdownTrigger = ({
+ triggerRef,
+}: UseDropdownTriggerProps) => {
+ const { toggle, dropdownTriggerRef, addDropdownTriggerRef, isOpen, id } =
+ useDropdown()
+
+ useImperativeHandle(triggerRef, () => dropdownTriggerRef!.current!, [
+ dropdownTriggerRef,
+ ])
+
+ return {
+ onClick: toggle,
+ ref: addDropdownTriggerRef,
+ 'aria-expanded': isOpen,
+ 'aria-controls': id,
+ 'aria-haspopup': 'menu' as const,
+ }
+}
From f972d71664e32d3e5b3d74a140e966cd34d73fd7 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 4 Nov 2024 13:14:05 +0000
Subject: [PATCH 115/154] [no ci] Release: 3.0.141
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/components/package.json | 2 +-
packages/core/package.json | 6 +++---
packages/ui/package.json | 4 ++--
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 207833715a..dc27652cca 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.140",
+ "version": "3.0.141",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -12,7 +12,7 @@
"dependencies": {
"@faststore/api": "^3.0.140",
"@faststore/sdk": "^3.0.135",
- "@faststore/ui": "^3.0.135",
+ "@faststore/ui": "^3.0.141",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index ce5f9a3a16..9976d540c4 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.140",
+ "version": "3.0.141",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index a8d29d7c14..a4757140bd 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.140 linux-x64 node-v18.20.4
+@faststore/cli/3.0.141 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.140/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 0dde3265d6..99cd4285c9 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.140",
+ "version": "3.0.141",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.140",
+ "@faststore/core": "^3.0.141",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/components/package.json b/packages/components/package.json
index 5a9f00be4f..636ec1b9a5 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.135",
+ "version": "3.0.141",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
diff --git a/packages/core/package.json b/packages/core/package.json
index 1d5b526bfe..2665597ecd 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.140",
+ "version": "3.0.141",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -44,11 +44,11 @@
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
"@faststore/api": "^3.0.140",
- "@faststore/components": "^3.0.135",
+ "@faststore/components": "^3.0.141",
"@faststore/graphql-utils": "^3.0.135",
"@faststore/lighthouse": "^3.0.135",
"@faststore/sdk": "^3.0.135",
- "@faststore/ui": "^3.0.135",
+ "@faststore/ui": "^3.0.141",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.6",
"@graphql-codegen/typescript": "4.0.7",
diff --git a/packages/ui/package.json b/packages/ui/package.json
index e9b0af74a9..93e6e0640c 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.135",
+ "version": "3.0.141",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.135",
+ "@faststore/components": "^3.0.141",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
From c201187c314f00f7242cd40f8bdd09db306d7668 Mon Sep 17 00:00:00 2001
From: Arthur Andrade
Date: Mon, 4 Nov 2024 10:20:35 -0300
Subject: [PATCH 116/154] fix: uncomment middleware (#2535)
## What's the purpose of this pull request?
Uncomment middleware in vtex sites
---
apps/site/middleware.ts | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/middleware.ts b/apps/site/middleware.ts
index b3167eaec0..5fcf566fd4 100644
--- a/apps/site/middleware.ts
+++ b/apps/site/middleware.ts
@@ -1,21 +1,21 @@
import { NextResponse, NextRequest } from 'next/server'
export function middleware(request: NextRequest) {
- // const { pathname } = new URL(request.url)
- // if (pathname.startsWith('/docs')) {
- // return NextResponse.redirect(
- // `https://developers.vtex.com/docs/guides/faststore${pathname.replace(
- // '/docs',
- // ''
- // )}`
- // )
- // }
- // if (pathname.startsWith('/components')) {
- // return NextResponse.redirect(
- // `https://developers.vtex.com/docs/guides/faststore${pathname
- // .replace('/components', '')
- // .replace(/\/([^\/]*)\//, '/$1-')}`
- // )
- // }
+ const { pathname } = new URL(request.url)
+ if (pathname.startsWith('/docs')) {
+ return NextResponse.redirect(
+ `https://developers.vtex.com/docs/guides/faststore${pathname.replace(
+ '/docs',
+ ''
+ )}`
+ )
+ }
+ if (pathname.startsWith('/components')) {
+ return NextResponse.redirect(
+ `https://developers.vtex.com/docs/guides/faststore${pathname
+ .replace('/components', '')
+ .replace(/\/([^\/]*)\//, '/$1-')}`
+ )
+ }
return NextResponse.next()
}
From 16bd21d6045a508e05fbb57d55f5191c1a04d3df Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 4 Nov 2024 13:26:13 +0000
Subject: [PATCH 117/154] [no ci] Release: 3.0.142
---
apps/site/package.json | 2 +-
lerna.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index dc27652cca..3ae76bc15d 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.141",
+ "version": "3.0.142",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
diff --git a/lerna.json b/lerna.json
index 9976d540c4..824a7d1c1c 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.141",
+ "version": "3.0.142",
"npmClient": "yarn",
"command": {
"publish": {
From ea0f46b1020ea9a4d82e0ed1fe271b35dea3479d Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Mon, 4 Nov 2024 15:06:35 -0300
Subject: [PATCH 118/154] Chore: Fix CLS issues and Navbar dynamic imports
(#2526)
## What's the purpose of this pull request?
- Fix CLS (Cumulative Layout Shift) for `RegionBar` (it was introduced
when we change to use `isMobile` hook to render the section, although
using the `display-mobile` won't remove the component from the dom, I
opted to put it back to avoid the CLS)
|Mobile| Desktop|
|-|-|
![CLS-Mobile](https://github.com/user-attachments/assets/d737bcd7-54e4-44cd-a532-33d95471a156)|![CLS-Desk](https://github.com/user-attachments/assets/b669d5aa-b402-49ee-ae16-2d34feed14b6)
- Uses dynamic import to `Navlinks`
- Uses `useScreenResize` hook on `Navbar` component to avoid components
duplication and render depending on the device
- Uses dynamic import for `NavbarSlider` internal components
## How it works?
- Mobile
|Starter | CLS fixes + navbar improvements|
|-|-|
| |
- Desktop
|Starter | CLS fixes + navbar improvements|
|-|-|
| | |
## How to test it?
Use this preview link for tests:
https://sfj-1842eea--starter.preview.vtex.app
1. Everything should be working as before
2. Check if the layout shift in the RegionBar is still happening
3. Try testing the link in https://pagespeed.web.dev/
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/587
---
.../components/navigation/Navbar/Navbar.tsx | 68 ++++++++++++-------
.../sections/Navbar/DefaultComponents.ts | 39 ++++++++---
.../sections/Navbar/section.module.scss | 7 ++
.../sections/RegionBar/RegionBar.tsx | 15 ++--
4 files changed, 88 insertions(+), 41 deletions(-)
diff --git a/packages/core/src/components/navigation/Navbar/Navbar.tsx b/packages/core/src/components/navigation/Navbar/Navbar.tsx
index cbdc8d5444..a79985ac92 100644
--- a/packages/core/src/components/navigation/Navbar/Navbar.tsx
+++ b/packages/core/src/components/navigation/Navbar/Navbar.tsx
@@ -1,18 +1,36 @@
-import { useRef, useState, useCallback } from 'react'
+import { useCallback, useRef, useState } from 'react'
-import { useUI, useScrollDirection, Icon as UIIcon } from '@faststore/ui'
+import { Icon as UIIcon, useScrollDirection, useUI } from '@faststore/ui'
import type { SearchInputRef } from 'src/components/search/SearchInput'
import SearchInput from 'src/components/search/SearchInput'
-import NavbarLinks from 'src/components/navigation/NavbarLinks'
-import NavbarSlider from 'src/components/navigation/NavbarSlider'
+
import CartToggle from 'src/components/cart/CartToggle'
-import Logo from 'src/components/ui/Logo'
import Link from 'src/components/ui/Link'
+import Logo from 'src/components/ui/Logo'
import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
-import type { NavbarProps as SectionNavbarProps } from '../../sections/Navbar'
+import dynamic from 'next/dynamic'
import useScreenResize from 'src/sdk/ui/useScreenResize'
+import type { NavbarProps as SectionNavbarProps } from '../../sections/Navbar'
+
+const NavbarLinks = dynamic(
+ () =>
+ /* webpackChunkName: "NavbarLinks" */ import(
+ 'src/components/navigation/NavbarLinks'
+ ),
+ {
+ ssr: false,
+ }
+)
+
+const NavbarSlider = dynamic(
+ () =>
+ /* webpackChunkName: "NavbarSlider" */ import(
+ 'src/components/navigation/NavbarSlider'
+ ),
+ { ssr: false }
+)
export interface NavbarProps {
/**
@@ -79,7 +97,7 @@ function Navbar({
} = useOverrideComponents<'Navbar'>()
const scrollDirection = useScrollDirection()
const { openNavbar, navbar: displayNavbar } = useUI()
- const { isDesktop } = useScreenResize()
+ const { isMobile } = useScreenResize()
const searchMobileRef = useRef(null)
const [searchExpanded, setSearchExpanded] = useState(false)
@@ -121,10 +139,12 @@ function Navbar({
>
)}
-
+ {!isMobile && (
+
+ )}
)}
-
+ {isMobile && (
+
+ )}
-
+ {!isMobile && }
- {isDesktop && }
+ {!isMobile && }
{displayNavbar && (
+ import(
+ /* webpackChunkName: "ButtonSignIn" */ 'src/components/ui/Button'
+ ).then((module) => module.ButtonSignIn)
+)
+
+const UINavbarSlider = dynamic(() =>
+ import(/* webpackChunkName: "UINavbarSlider" */ '@faststore/ui').then(
+ (module) => module.NavbarSlider
+ )
+)
+const UINavbarSliderHeader = dynamic(() =>
+ import(/* webpackChunkName: "UINavbarSliderHeader" */ '@faststore/ui').then(
+ (module) => module.NavbarSliderHeader
+ )
+)
+const UINavbarSliderContent = dynamic(() =>
+ import(/* webpackChunkName: "UINavbarSliderContent" */ '@faststore/ui').then(
+ (module) => module.NavbarSliderContent
+ )
+)
+const UINavbarSliderFooter = dynamic(() =>
+ import(/* webpackChunkName: "UINavbarSliderFooter" */ '@faststore/ui').then(
+ (module) => module.NavbarSliderFooter
+ )
+)
export const NavbarDefaultComponents = {
Navbar: UINavbar,
diff --git a/packages/core/src/components/sections/Navbar/section.module.scss b/packages/core/src/components/sections/Navbar/section.module.scss
index 3748390e88..9933d2bc0f 100644
--- a/packages/core/src/components/sections/Navbar/section.module.scss
+++ b/packages/core/src/components/sections/Navbar/section.module.scss
@@ -23,5 +23,12 @@
@import "@faststore/ui/src/components/molecules/SearchTop/styles.scss";
@import "@faststore/ui/src/components/organisms/SearchInput/styles.scss";
@import "@faststore/ui/src/components/organisms/Navbar/styles.scss";
+
+ // Sets Navbar height on desktop to avoid CLS issue - Cumulative Layout Shift
+ --fs-navbar-height-desktop: 4.5rem;
+
+ @include media(">=notebook") {
+ height: var(--fs-navbar-height-desktop);
+ }
}
}
diff --git a/packages/core/src/components/sections/RegionBar/RegionBar.tsx b/packages/core/src/components/sections/RegionBar/RegionBar.tsx
index 1adb682683..63fddc023c 100644
--- a/packages/core/src/components/sections/RegionBar/RegionBar.tsx
+++ b/packages/core/src/components/sections/RegionBar/RegionBar.tsx
@@ -1,9 +1,8 @@
+import { getOverridableSection } from '../../..//sdk/overrides/getOverriddenSection'
import RegionBar, { RegionBarProps } from '../../region/RegionBar/RegionBar'
import Section from '../Section/Section'
-import styles from './section.module.scss'
import { RegionBarDefaultComponents } from './DefaultComponents'
-import { getOverridableSection } from '../../..//sdk/overrides/getOverriddenSection'
-import useScreenResize from 'src/sdk/ui/useScreenResize'
+import styles from './section.module.scss'
type RegionBarSectionProps = {
/**
@@ -29,14 +28,10 @@ type RegionBarSectionProps = {
}
function RegionBarSection({ ...otherProps }: RegionBarSectionProps) {
- const { isMobile } = useScreenResize()
-
return (
- isMobile && (
-
- )
+
)
}
From 6a949f224d8f16ac7b69ad13487f791bf7e3077a Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 4 Nov 2024 18:11:53 +0000
Subject: [PATCH 119/154] [no ci] Release: 3.0.143
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 824a7d1c1c..0362401643 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.142",
+ "version": "3.0.143",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index a4757140bd..83d71b9bca 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.141 linux-x64 node-v18.20.4
+@faststore/cli/3.0.143 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.141/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 99cd4285c9..a0ec3db79b 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.141",
+ "version": "3.0.143",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.141",
+ "@faststore/core": "^3.0.143",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 2665597ecd..50e81dc4dc 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.141",
+ "version": "3.0.143",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 1777bd5f784f69eba3ac3192b47e13bd9f5ed991 Mon Sep 17 00:00:00 2001
From: EmanuelRamos115 <162623679+EmanuelRamos115@users.noreply.github.com>
Date: Tue, 5 Nov 2024 13:45:26 -0300
Subject: [PATCH 120/154] fix: NaN when string is inputed on quantity input
(#2534)
## What's the purpose of this pull request?
Resolves the bug that when typing letters in the quantity input a "NaN"
error appears
## How it works?
I validated the function to change the input to remove any non-numeric
value
## How to test it?
Go to the product page and try to enter a value other than a number in
the quantity input
https://newswarovskiargentina-cm2bukmqh008u9fpvz46jty9h-rarbnwb8d.b.vtex.app/5662923-conjunto-stilla-tallas-mixtas-multicolor-bano-tono-oro-rosa-11436/p
## Checklist
**PR Title and Commit Messages**
- [x] PR title and commit messages follow the [Conventional
Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification
- Available prefixes: `feat`, `fix`, `chore`, `docs`, `style`,
`refactor` and `test`
**PR Description**
- [x] Added a label according to the PR goal - `breaking change`, `bug`,
`contributing`, `performance`, `documentation`..
**Dependencies**
- [x] Committed the `yarn.lock` file when there were changes to the
packages
---------
Co-authored-by: Emanuel Ramos <78380713+Emanuel-Ramos@users.noreply.github.com>
---
.../src/molecules/QuantitySelector/QuantitySelector.tsx | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/packages/components/src/molecules/QuantitySelector/QuantitySelector.tsx b/packages/components/src/molecules/QuantitySelector/QuantitySelector.tsx
index 7253d68cfa..eefb6007e3 100644
--- a/packages/components/src/molecules/QuantitySelector/QuantitySelector.tsx
+++ b/packages/components/src/molecules/QuantitySelector/QuantitySelector.tsx
@@ -113,7 +113,8 @@ const QuantitySelector = ({
}, [initial])
const changeInputValue = (e: React.ChangeEvent) => {
- setQuantity(Number(e.currentTarget.value))
+ const numericValue = e.target.value.replace(/\D/g, '')
+ setQuantity(Number(numericValue))
}
return (
@@ -139,6 +140,10 @@ const QuantitySelector = ({
value={useUnitMultiplier ? multipliedUnit : quantity}
onChange={changeInputValue}
onBlur={validateBlur}
+ onInput={(event: React.FormEvent) => {
+ const input = event.currentTarget
+ input.value = input.value.replace(/\D/g, '')
+ }}
disabled={disabled}
/>
Date: Tue, 5 Nov 2024 16:51:05 +0000
Subject: [PATCH 121/154] [no ci] Release: 3.0.144
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/components/package.json | 2 +-
packages/core/package.json | 6 +++---
packages/ui/package.json | 4 ++--
7 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 3ae76bc15d..7317b497f6 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.142",
+ "version": "3.0.144",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -12,7 +12,7 @@
"dependencies": {
"@faststore/api": "^3.0.140",
"@faststore/sdk": "^3.0.135",
- "@faststore/ui": "^3.0.141",
+ "@faststore/ui": "^3.0.144",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
diff --git a/lerna.json b/lerna.json
index 0362401643..9c060a7d2c 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.143",
+ "version": "3.0.144",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 83d71b9bca..7c0a498ccf 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.143 linux-x64 node-v18.20.4
+@faststore/cli/3.0.144 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.143/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index a0ec3db79b..816d29d0fe 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.143",
+ "version": "3.0.144",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.143",
+ "@faststore/core": "^3.0.144",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/components/package.json b/packages/components/package.json
index 636ec1b9a5..16f5b1618e 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.141",
+ "version": "3.0.144",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
diff --git a/packages/core/package.json b/packages/core/package.json
index 50e81dc4dc..e4703ae657 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.143",
+ "version": "3.0.144",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -44,11 +44,11 @@
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
"@faststore/api": "^3.0.140",
- "@faststore/components": "^3.0.141",
+ "@faststore/components": "^3.0.144",
"@faststore/graphql-utils": "^3.0.135",
"@faststore/lighthouse": "^3.0.135",
"@faststore/sdk": "^3.0.135",
- "@faststore/ui": "^3.0.141",
+ "@faststore/ui": "^3.0.144",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.6",
"@graphql-codegen/typescript": "4.0.7",
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 93e6e0640c..d3199fa6de 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.141",
+ "version": "3.0.144",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.141",
+ "@faststore/components": "^3.0.144",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
From f4b78dced4a49c0618bce30059e8719b6242341d Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Wed, 6 Nov 2024 11:13:42 -0300
Subject: [PATCH 122/154] Chore: Applies next/dynamic for Toast (#2538)
## What's the purpose of this pull request?
- Loads `Toast` using dynamic import.
- Imports `Toast` in `RenderSections` instead of `GlobalSections`
**note**: Unlike the
[POC](https://github.com/vtex/faststore/pull/2404/files#diff-b45ed72491ecc419d59ca49fa8b4fc7a45deb55758a6a401f3c8401c11114227R113-R120),
the Toast component does not use . In the PLP, the
Toast needs to be imported along with the `QuantitySelector` (within the
viewport) to address scenario 2 (refer to item 2 for how to test).
## How it works?
We are aiming to optimize the performance loading components only when
they are needed, rather than at the initial page load.
|starter|preview|
|-|-|
| | |
## How to test it?
- Run locally or using this
[preview](https://sfj-d0111da--starter.preview.vtex.app/)
1. In the homepage, you can see the Toast js file being loaded in the
network
2. In the PDP, choose any product, and tries to change the quantity to
`11` (type 11 inside the `QuantitySelector`) , you should be able to see
the `Toast` with a message.
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/597
## References
[SFS 1514](https://vtex-dev.atlassian.net/browse/SFS-1514)
---
packages/core/src/components/cms/GlobalSections.tsx | 3 ---
packages/core/src/components/cms/RenderSections.tsx | 7 +++++++
packages/core/src/components/common/Toast/Toast.tsx | 12 +++++++++++-
3 files changed, 18 insertions(+), 4 deletions(-)
diff --git a/packages/core/src/components/cms/GlobalSections.tsx b/packages/core/src/components/cms/GlobalSections.tsx
index 342d057dbd..c26963ce98 100644
--- a/packages/core/src/components/cms/GlobalSections.tsx
+++ b/packages/core/src/components/cms/GlobalSections.tsx
@@ -5,7 +5,6 @@ import { PropsWithChildren } from 'react'
import CUSTOM_COMPONENTS from 'src/customizations/src/components'
import { PageContentType, getPage } from 'src/server/cms'
-import Toast from 'src/components/common/Toast'
import RenderSections from './RenderSections'
import { OverriddenDefaultAlert as Alert } from 'src/components/sections/Alert/OverriddenDefaultAlert'
@@ -39,8 +38,6 @@ function GlobalSections({
}: PropsWithChildren) {
return (
-
-
{children}
)
diff --git a/packages/core/src/components/cms/RenderSections.tsx b/packages/core/src/components/cms/RenderSections.tsx
index 746fd38912..ba4886d4f1 100644
--- a/packages/core/src/components/cms/RenderSections.tsx
+++ b/packages/core/src/components/cms/RenderSections.tsx
@@ -7,6 +7,7 @@ import {
} from 'react'
import { Section } from '@vtex/client-cms'
+import dynamic from 'next/dynamic'
import SectionBoundary from './SectionBoundary'
import ViewportObserver from './ViewportObserver'
@@ -19,6 +20,11 @@ interface Props {
const SECTIONS_OUT_OF_VIEWPORT = ['CartSidebar', 'RegionModal']
+const Toast = dynamic(
+ () => import(/* webpackChunkName: "Toast" */ '../common/Toast'),
+ { ssr: false }
+)
+
const useDividedSections = (sections: Section[]) => {
return useMemo(() => {
const indexChildren = sections.findIndex(({ name }) => name === 'Children')
@@ -102,6 +108,7 @@ function RenderSections({
<>
+
{children}
{hasChildren && (
diff --git a/packages/core/src/components/common/Toast/Toast.tsx b/packages/core/src/components/common/Toast/Toast.tsx
index 033653b27c..deb9537fcb 100644
--- a/packages/core/src/components/common/Toast/Toast.tsx
+++ b/packages/core/src/components/common/Toast/Toast.tsx
@@ -1,10 +1,20 @@
import { useEffect } from 'react'
-import { Toast as UIToast, useUI } from '@faststore/ui'
+import dynamic from 'next/dynamic'
+
+import { useUI } from '@faststore/ui'
import Section from 'src/components/sections/Section/Section'
import { useCart } from 'src/sdk/cart'
import styles from './section.module.scss'
+const UIToast = dynamic(
+ () =>
+ import(/* webpackChunkName: "UIToast" */ '@faststore/ui').then((module) => {
+ return module.Toast
+ }),
+ { ssr: false }
+)
+
function Toast() {
const { toasts, pushToast } = useUI()
const { messages } = useCart()
From 8932019f26c03c403d5d2c5ffdf4188dc977da2a Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 6 Nov 2024 14:19:00 +0000
Subject: [PATCH 123/154] [no ci] Release: 3.0.145
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 9c060a7d2c..21c3fc0e9a 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.144",
+ "version": "3.0.145",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 7c0a498ccf..962f8423b4 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.144 linux-x64 node-v18.20.4
+@faststore/cli/3.0.145 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.144/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 816d29d0fe..1541fd6d15 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.144",
+ "version": "3.0.145",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.144",
+ "@faststore/core": "^3.0.145",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index e4703ae657..d931836938 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.144",
+ "version": "3.0.145",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 0930921fba315c0a5afcad84b01e0c0c583f490a Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Wed, 6 Nov 2024 12:35:08 -0300
Subject: [PATCH 124/154] fix: Revert Navbar isMobile changes (#2541)
## What's the purpose of this pull request?
Fixes Navbar resizes
|before|after - expected|
|-|-|
| |
---
.../components/navigation/Navbar/Navbar.tsx | 38 +++++++++----------
1 file changed, 17 insertions(+), 21 deletions(-)
diff --git a/packages/core/src/components/navigation/Navbar/Navbar.tsx b/packages/core/src/components/navigation/Navbar/Navbar.tsx
index a79985ac92..8392603180 100644
--- a/packages/core/src/components/navigation/Navbar/Navbar.tsx
+++ b/packages/core/src/components/navigation/Navbar/Navbar.tsx
@@ -97,7 +97,7 @@ function Navbar({
} = useOverrideComponents<'Navbar'>()
const scrollDirection = useScrollDirection()
const { openNavbar, navbar: displayNavbar } = useUI()
- const { isMobile } = useScreenResize()
+ const { isDesktop } = useScreenResize()
const searchMobileRef = useRef(null)
const [searchExpanded, setSearchExpanded] = useState(false)
@@ -139,12 +139,10 @@ function Navbar({
>
)}
- {!isMobile && (
-
- )}
+
)}
- {isMobile && (
-
- )}
+
- {!isMobile && }
+
- {!isMobile && }
+ {isDesktop && }
{displayNavbar && (
Date: Wed, 6 Nov 2024 15:40:27 +0000
Subject: [PATCH 125/154] [no ci] Release: 3.0.146
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 21c3fc0e9a..89db7f5863 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.145",
+ "version": "3.0.146",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 962f8423b4..2cf22894c9 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.145 linux-x64 node-v18.20.4
+@faststore/cli/3.0.146 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.145/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 1541fd6d15..96492b9d32 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.145",
+ "version": "3.0.146",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.145",
+ "@faststore/core": "^3.0.146",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index d931836938..5a628d1e3c 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.145",
+ "version": "3.0.146",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From bc17e4656dfcb115c3e43596471c752a5fb8be60 Mon Sep 17 00:00:00 2001
From: Fanny Chien
Date: Mon, 11 Nov 2024 14:46:18 -0300
Subject: [PATCH 126/154] Feat: Applies next/dynamic for SearchInput &
adjustments (#2550)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
- Uses dynamic to import `SearchDropdown` and `UISearchInputField`
**note**: I'm not using dynamic import for UISearchInput because the
searchRef is used in the
[useOnClickOutside](https://github.com/vtex/faststore/blob/5cbeb9bb9b67371aa23b6e5ca51d582629dfb6d3/packages/core/src/sdk/ui/useOnClickOutside.ts#L13).
If the component isn’t rendered yet and we click on the screen, the ref
isn’t available, which could cause an error. To avoid changing the code
and introducing this issue, I've chosen not to use dynamic import here.
Any other opinion here?
## How to test it?
Test using the [preview](https://sfj-91e9bbc--starter.preview.vtex.app)
or running local
### testing on mobile screen size (Moto G Power):
- you should be able to see the magnify glass icon button
- click on it and search for a term
- this should have the same behavior as before (excluding a small
animation effect)
### testing on desktop:
- click on the SearchInput and search for a term
- this should have the same behavior as before
### Starters Deploy Preview
https://github.com/vtex-sites/starter.store/pull/606
## Reference
[POC](https://github.com/vtex/faststore/pull/2404/files#diff-c85fe4be6105c2f443716ac80824c04e5455fdc63a731e79b72638cd785eee89)
---
.../components/navigation/Navbar/Navbar.tsx | 37 +++---
.../navigation/NavbarLinks/NavbarLinks.tsx | 6 +-
.../search/SearchDropdown/SearchDropdown.tsx | 1 -
.../search/SearchInput/SearchInput.tsx | 119 +++++++++++-------
4 files changed, 96 insertions(+), 67 deletions(-)
diff --git a/packages/core/src/components/navigation/Navbar/Navbar.tsx b/packages/core/src/components/navigation/Navbar/Navbar.tsx
index 8392603180..6a5a4d6263 100644
--- a/packages/core/src/components/navigation/Navbar/Navbar.tsx
+++ b/packages/core/src/components/navigation/Navbar/Navbar.tsx
@@ -97,7 +97,7 @@ function Navbar({
} = useOverrideComponents<'Navbar'>()
const scrollDirection = useScrollDirection()
const { openNavbar, navbar: displayNavbar } = useUI()
- const { isDesktop } = useScreenResize()
+ const { isDesktop, isMobile } = useScreenResize()
const searchMobileRef = useRef(null)
const [searchExpanded, setSearchExpanded] = useState(false)
@@ -139,10 +139,12 @@ function Navbar({
>
)}
-
+ {isDesktop && (
+
+ )}
)}
-
-
-
+ {!isDesktop && (
+
+ )}
+ {!isMobile && }
diff --git a/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx b/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx
index 904f17b648..ab17275cc5 100644
--- a/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx
+++ b/packages/core/src/components/navigation/NavbarLinks/NavbarLinks.tsx
@@ -1,11 +1,11 @@
import type { AnchorHTMLAttributes } from 'react'
-import { NavbarLinksListItem as UINavbarLinksListItem } from '@faststore/ui'
import type { NavbarLinksProps as UINavbarLinksProps } from '@faststore/ui'
+import { NavbarLinksListItem as UINavbarLinksListItem } from '@faststore/ui'
-import Link from 'src/components/ui/Link'
-import RegionButton from 'src/components/region/RegionButton'
import type { NavbarProps } from 'src/components/navigation/Navbar'
+import RegionButton from 'src/components/region/RegionButton'
+import Link from 'src/components/ui/Link'
import { useOverrideComponents } from 'src/sdk/overrides/OverrideContext'
diff --git a/packages/core/src/components/search/SearchDropdown/SearchDropdown.tsx b/packages/core/src/components/search/SearchDropdown/SearchDropdown.tsx
index ca3652c09c..a91beb7fdc 100644
--- a/packages/core/src/components/search/SearchDropdown/SearchDropdown.tsx
+++ b/packages/core/src/components/search/SearchDropdown/SearchDropdown.tsx
@@ -13,7 +13,6 @@ import { SearchState } from '@faststore/sdk'
import { ProductSummary_ProductFragment } from '@generated/graphql'
import SearchProductItem from 'src/components/search/SearchProductItem'
import { formatSearchPath } from 'src/sdk/search/formatSearchPath'
-
interface SearchDropdownProps {
sort: SearchState['sort']
[key: string]: any
diff --git a/packages/core/src/components/search/SearchInput/SearchInput.tsx b/packages/core/src/components/search/SearchInput/SearchInput.tsx
index 68aa32072a..cda7143584 100644
--- a/packages/core/src/components/search/SearchInput/SearchInput.tsx
+++ b/packages/core/src/components/search/SearchInput/SearchInput.tsx
@@ -1,16 +1,4 @@
-import type { SearchEvent, SearchState } from '@faststore/sdk'
-
-import type {
- SearchInputFieldProps as UISearchInputFieldProps,
- SearchInputFieldRef as UISearchInputFieldRef,
-} from '@faststore/ui'
-import {
- SearchProviderContextValue,
- SearchInput as UISearchInput,
- SearchInputField as UISearchInputField,
-} from '@faststore/ui'
-import { useRouter } from 'next/router'
-import type { CSSProperties } from 'react'
+import type { CSSProperties, SetStateAction } from 'react'
import {
Suspense,
forwardRef,
@@ -21,14 +9,40 @@ import {
useState,
} from 'react'
+import dynamic from 'next/dynamic'
+import { useRouter } from 'next/router'
+
+import type { SearchEvent, SearchState } from '@faststore/sdk'
+
+import {
+ Icon as UIIcon,
+ IconButton as UIIconButton,
+ SearchInput as UISearchInput,
+} from '@faststore/ui'
+
+import type {
+ SearchInputFieldProps as UISearchInputFieldProps,
+ SearchInputFieldRef as UISearchInputFieldRef,
+} from '@faststore/ui'
+
+import { SearchProviderContextValue } from '@faststore/ui'
+
import useSearchHistory from 'src/sdk/search/useSearchHistory'
import useSuggestions from 'src/sdk/search/useSuggestions'
import useOnClickOutside from 'src/sdk/ui/useOnClickOutside'
+import { formatSearchPath } from 'src/sdk/search/formatSearchPath'
+
const SearchDropdown = lazy(
+ /* webpackChunkName: "SearchDropdown" */
() => import('src/components/search/SearchDropdown')
)
+const UISearchInputField = dynamic(() =>
+ /* webpackChunkName: "UISearchInputField" */
+ import('@faststore/ui').then((module) => module.SearchInputField)
+)
+
const MAX_SUGGESTIONS = 5
export type SearchInputProps = {
@@ -64,6 +78,7 @@ const SearchInput = forwardRef(
},
ref
) {
+ const { hidden } = otherProps
const [searchQuery, setSearchQuery] = useState('')
const searchQueryDeferred = useDeferredValue(searchQuery)
const [searchDropdownVisible, setSearchDropdownVisible] =
@@ -100,27 +115,39 @@ const SearchInput = forwardRef(
)
const isLoading = !error && !data
+ const buttonProps = {
+ onClick: onSearchClick,
+ testId: buttonTestId,
+ }
+
return (
-
- setSearchQuery(e.target.value)}
- onSubmit={(term) => {
- import('src/sdk/search/formatSearchPath').then(
- ({ formatSearchPath }) => {
+ <>
+ {hidden ? (
+ }
+ size="small"
+ {...buttonProps}
+ />
+ ) : (
+
+ } }) =>
+ setSearchQuery(e.target.value)
+ }
+ onSubmit={(term: string) => {
const path = formatSearchPath({
term,
sort: sort as SearchState['sort'],
@@ -128,20 +155,20 @@ const SearchInput = forwardRef(
onSearchSelection(term, path)
router.push(path)
- }
- )
- }}
- onFocus={() => setSearchDropdownVisible(true)}
- value={searchQuery}
- {...otherProps}
- />
-
- {searchDropdownVisible && (
-
-
-
+ }}
+ onFocus={() => setSearchDropdownVisible(true)}
+ value={searchQuery}
+ {...otherProps}
+ />
+
+ {searchDropdownVisible && (
+
+
+
+ )}
+
)}
-
+ >
)
}
)
From 5d3b33b0e294206f3e85574eb64096691a78fcbf Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Mon, 11 Nov 2024 17:51:44 +0000
Subject: [PATCH 127/154] [no ci] Release: 3.0.147
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 89db7f5863..28dc3ab57d 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.146",
+ "version": "3.0.147",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 2cf22894c9..c1d0f52013 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.146 linux-x64 node-v18.20.4
+@faststore/cli/3.0.147 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.146/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 96492b9d32..02906cc812 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.146",
+ "version": "3.0.147",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.146",
+ "@faststore/core": "^3.0.147",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 5a628d1e3c..e1b8e886b8 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.146",
+ "version": "3.0.147",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 6bbe1b19a1c9db5676cc5c1ef7fb0ca189a806f9 Mon Sep 17 00:00:00 2001
From: Pedro Soares <32311264+pedromtec@users.noreply.github.com>
Date: Tue, 12 Nov 2024 10:43:31 -0300
Subject: [PATCH 128/154] Sfs 1755 generate middleware in build time (#2540)
## What's the purpose of this pull request?
This task will allow enabling the redirects middleware within
**@faststore/core** during the build process based on a flag.
The idea is to enable this functionality only for projects that have the
flag `ENABLE_REDIRECTS_MIDDLEWARE` saved in the env vars and which are
hosted by homebrew. In the future, we intend to have control of this
feature through webops.
Next steps:
- Set this flag in a pipeline env var.
- Implements dynamoDB client (Reference:
https://github.com/vtex/faststore/pull/2517)
## How it works?
The key is the name of the file: **middleware__DISABLED.ts**
This middleware is disabled by default. Only stores that are in
**homebrew** and want this functionality will be able to enable it via a
feature flag. When the flag is active, the CLI at build time will check
whether the **ENABLE_REDIRECTS_MIDDLEWARE** flag is set or not, if so,
the file name will be changed to **middleware.ts** and nextjs will know
how to automatically deal with it.
## How to test it?
I created a [PR](https://github.com/vtex-sites/starter.store/pull/599)
with the flag enabled, clone the branch and then:
- Run `yarn build`
- check if the **middleware.ts** was created inside **.faststore/src**
### References
https://docs.google.com/document/d/1iC1fLwJbypnvDyp_JilKBfQfaHjFDHYrjS1kC722sB4/edit?tab=t.0#heading=h.tglo77yl0lf5
---
packages/cli/src/utils/generate.ts | 35 ++++++++++++
packages/core/src/middleware__DISABLED.ts | 65 +++++++++++++++++++++++
2 files changed, 100 insertions(+)
create mode 100644 packages/core/src/middleware__DISABLED.ts
diff --git a/packages/cli/src/utils/generate.ts b/packages/cli/src/utils/generate.ts
index 4ac1f496c4..342a7e859f 100644
--- a/packages/cli/src/utils/generate.ts
+++ b/packages/cli/src/utils/generate.ts
@@ -437,6 +437,40 @@ function validateAndInstallMissingDependencies(basePath: string) {
})
}
+// TODO: Read the value from an environment variable
+const ENABLE_REDIRECTS_MIDDLEWARE = false
+
+// Enable redirects middleware by renaming the file from middleware__DISABLED.ts to middleware.tsß
+function enableRedirectsMiddleware(basePath: string) {
+ if (!ENABLE_REDIRECTS_MIDDLEWARE) {
+ return
+ }
+
+ try {
+ const { tmpDir } = withBasePath(basePath)
+
+ const disabledMiddlewarePath = path.join(
+ tmpDir,
+ 'src',
+ 'middleware__DISABLED.ts'
+ )
+
+ /* Rename the file to enable middleware functionality and then remove the disabled middleware file */
+ if (existsSync(disabledMiddlewarePath)) {
+ const enabledMiddlewarePath = path.join(tmpDir, 'src', 'middleware.ts')
+ copyFileSync(disabledMiddlewarePath, enabledMiddlewarePath)
+ removeSync(disabledMiddlewarePath)
+
+ logger.log(
+ `${chalk.green('success')} Redirects middleware has been enabled`
+ )
+ }
+ } catch (error) {
+ logger.error(error)
+ throw error
+ }
+}
+
export async function generate(options: GenerateOptions) {
const { basePath, setup = false } = options
@@ -461,5 +495,6 @@ export async function generate(options: GenerateOptions) {
copyTheme(basePath),
createCmsWebhookUrlsJsonFile(basePath),
updateNextConfig(basePath),
+ enableRedirectsMiddleware(basePath),
])
}
diff --git a/packages/core/src/middleware__DISABLED.ts b/packages/core/src/middleware__DISABLED.ts
new file mode 100644
index 0000000000..2cf3f02eb2
--- /dev/null
+++ b/packages/core/src/middleware__DISABLED.ts
@@ -0,0 +1,65 @@
+/*
+ * This middleware is disabled by default. Only stores that are in
+ * homebrew and want this functionality will be able to enable it via
+ * a feature flag. When the flag is active, the CLI at build time will
+ * check whether the ENABLE_REDIRECTS_MIDDLEWARE flag is set or not,
+ * if so, the file name will be changed to middleware.ts and nextjs
+ * will know how to automatically deal with it.
+ */
+
+import { NextResponse } from 'next/server'
+import type { NextRequest } from 'next/server'
+import storeConfig from 'discovery.config'
+
+type Redirect = {
+ from: string
+ to: string
+ type: 'permanent' | 'temporary'
+}
+interface RedirectsClient {
+ get(from: string): Promise
+}
+
+class DynamoRedirectsClient implements RedirectsClient {
+ async get(from: string): Promise {
+ // TODO: Implement DynamoDB client. Ensure that the cluster has access to DynamoDB first.
+ return null
+ }
+}
+
+const redirectsClient = new DynamoRedirectsClient()
+
+export async function middleware(request: NextRequest) {
+ const { pathname } = request.nextUrl
+
+ const redirect = await redirectsClient.get(pathname)
+
+ if (redirect) {
+ const redirectUrl = new URL(redirect.to, storeConfig.storeUrl)
+ const redirectStatusCode = redirect.type === 'permanent' ? 301 : 302
+
+ const response = NextResponse.redirect(redirectUrl, redirectStatusCode)
+
+ response.headers.set(
+ 'Cache-Control',
+ 'public, max-age=300, stale-while-revalidate=31536000'
+ )
+
+ return response
+ }
+
+ return NextResponse.next()
+}
+
+export const config = {
+ matcher: [
+ /*
+ * Match all request paths except for the ones starting with:
+ * - api (API routes)
+ * - _next/static (static files)
+ * - _next/image (image optimization files)
+ * - favicon.ico (favicon file)
+ */
+ '/((?!api|_next/static|_next/image|favicon.ico).*)',
+ ],
+}
From 95acfb993977fe1cca3873b845c6b7861483ac1e Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 12 Nov 2024 13:48:47 +0000
Subject: [PATCH 129/154] [no ci] Release: 3.0.148
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 28dc3ab57d..854fe81003 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.147",
+ "version": "3.0.148",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index c1d0f52013..8ce4653797 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.147 linux-x64 node-v18.20.4
+@faststore/cli/3.0.148 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.147/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 02906cc812..3b0c30b723 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.147",
+ "version": "3.0.148",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.147",
+ "@faststore/core": "^3.0.148",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index e1b8e886b8..c75cbeb900 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.147",
+ "version": "3.0.148",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 80b2f71194bddb6a44460b6ca917c398c115ea3e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lucas=20Feij=C3=B3?=
Date: Wed, 13 Nov 2024 17:07:20 -0300
Subject: [PATCH 130/154] fix: Consider `shouldSplitItem` value from
`ValidateCart` mutation response (#2528)
## What's the purpose of this pull request?
This PR intends to fix the behavior of `shouldSplitItem` value sent by
through the `ValidateCart` mutation.
Currently, the variable value is being overridden after some mutation
calls due to its value not being sent back in the mutation response, so
with these changes we will consider the same value set in the store
config.
## How to test it?
Perform actions that triggers the `ValidateCart` mutation (open/close
the cart, add/remove items to/from the cart) and check if the
`shouldSplitItem` variable is being sent on the payload and if its value
is corresponding to the one set in the store config.
## References
Issue: #2426
---
packages/api/src/__generated__/schema.ts | 4 +++-
packages/api/src/platforms/vtex/resolvers/validateCart.ts | 8 +++++---
packages/api/src/typeDefs/cart.graphql | 2 +-
packages/api/src/typeDefs/order.graphql | 4 ++++
packages/core/@generated/gql.ts | 4 ++--
packages/core/@generated/graphql.ts | 7 +++++--
packages/core/src/sdk/cart/index.ts | 2 ++
7 files changed, 22 insertions(+), 9 deletions(-)
diff --git a/packages/api/src/__generated__/schema.ts b/packages/api/src/__generated__/schema.ts
index 48e7356649..d65444fefd 100644
--- a/packages/api/src/__generated__/schema.ts
+++ b/packages/api/src/__generated__/schema.ts
@@ -698,7 +698,7 @@ export type StoreCart = {
__typename?: 'StoreCart';
/** List of shopping cart messages. */
messages: Array;
- /** Order information, including `orderNumber` and `acceptedOffer`. */
+ /** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
order: StoreOrder;
};
@@ -928,6 +928,8 @@ export type StoreOrder = {
acceptedOffer: Array;
/** ID of the order in [VTEX order management](https://help.vtex.com/en/tutorial/license-manager-resources-oms--60QcBsvWeum02cFi3GjBzg#). */
orderNumber: Scalars['String'];
+ /** Indicates whether or not items with attachments should be split. */
+ shouldSplitItem?: Maybe;
};
/** Organization. */
diff --git a/packages/api/src/platforms/vtex/resolvers/validateCart.ts b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
index 6198e42dc8..fb7d226057 100644
--- a/packages/api/src/platforms/vtex/resolvers/validateCart.ts
+++ b/packages/api/src/platforms/vtex/resolvers/validateCart.ts
@@ -167,7 +167,8 @@ const joinItems = (form: OrderForm) => {
const orderFormToCart = async (
form: OrderForm,
- skuLoader: Context['loaders']['skuLoader']
+ skuLoader: Context['loaders']['skuLoader'],
+ shouldSplitItem?: boolean | null
) => {
return {
order: {
@@ -176,6 +177,7 @@ const orderFormToCart = async (
...item,
product: await skuLoader.load(`${item.id}-invisibleItems`),
})),
+ shouldSplitItem,
},
messages: form.messages.map(({ text, status }) => ({
text,
@@ -371,7 +373,7 @@ export const validateCart = async (
joinItems
)
if (orderNumber) {
- return orderFormToCart(newOrderForm, skuLoader)
+ return orderFormToCart(newOrderForm, skuLoader, shouldSplitItem)
}
}
@@ -460,5 +462,5 @@ export const validateCart = async (
}
// Step6: There were changes, convert orderForm to StoreCart
- return orderFormToCart(updatedOrderForm, skuLoader)
+ return orderFormToCart(updatedOrderForm, skuLoader, shouldSplitItem)
}
diff --git a/packages/api/src/typeDefs/cart.graphql b/packages/api/src/typeDefs/cart.graphql
index 9067b0bdd0..79e4a5fcde 100644
--- a/packages/api/src/typeDefs/cart.graphql
+++ b/packages/api/src/typeDefs/cart.graphql
@@ -17,7 +17,7 @@ Shopping cart information.
"""
type StoreCart {
"""
- Order information, including `orderNumber` and `acceptedOffer`.
+ Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`.
"""
order: StoreOrder!
"""
diff --git a/packages/api/src/typeDefs/order.graphql b/packages/api/src/typeDefs/order.graphql
index f9ef7b928e..88d29520c1 100644
--- a/packages/api/src/typeDefs/order.graphql
+++ b/packages/api/src/typeDefs/order.graphql
@@ -10,6 +10,10 @@ type StoreOrder {
Array with information on each accepted offer.
"""
acceptedOffer: [StoreOffer!]!
+ """
+ Indicates whether or not items with attachments should be split.
+ """
+ shouldSplitItem: Boolean
}
"""
diff --git a/packages/core/@generated/gql.ts b/packages/core/@generated/gql.ts
index acc84a5177..f499ff8e2c 100644
--- a/packages/core/@generated/gql.ts
+++ b/packages/core/@generated/gql.ts
@@ -38,7 +38,7 @@ const documents = {
types.ServerCollectionPageQueryDocument,
'\n query ServerProductQuery($locator: [IStoreSelectedFacet!]!) {\n ...ServerProduct\n product(locator: $locator) {\n id: productID\n\n seo {\n title\n description\n canonical\n }\n\n brand {\n name\n }\n\n sku\n gtin\n name\n description\n releaseDate\n\n breadcrumbList {\n itemListElement {\n item\n name\n position\n }\n }\n\n image {\n url\n alternateName\n }\n\n offers {\n lowPrice\n highPrice\n lowPriceWithTaxes\n priceCurrency\n offers {\n availability\n price\n priceValidUntil\n priceCurrency\n itemCondition\n seller {\n identifier\n }\n }\n }\n\n isVariantOf {\n productGroupID\n }\n\n ...ProductDetailsFragment_product\n }\n }\n':
types.ServerProductQueryDocument,
- '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
+ '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n shouldSplitItem\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n':
types.ValidateCartMutationDocument,
'\n mutation SubscribeToNewsletter($data: IPersonNewsletter!) {\n subscribeToNewsletter(data: $data) {\n id\n }\n }\n':
types.SubscribeToNewsletterDocument,
@@ -140,7 +140,7 @@ export function gql(
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
*/
export function gql(
- source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
+ source: '\n mutation ValidateCartMutation($cart: IStoreCart!, $session: IStoreSession!) {\n validateCart(cart: $cart, session: $session) {\n order {\n orderNumber\n acceptedOffer {\n ...CartItem\n }\n shouldSplitItem\n }\n messages {\n ...CartMessage\n }\n }\n }\n\n fragment CartMessage on StoreCartMessage {\n text\n status\n }\n\n fragment CartItem on StoreOffer {\n seller {\n identifier\n }\n quantity\n price\n priceWithTaxes\n listPrice\n listPriceWithTaxes\n itemOffered {\n ...CartProductItem\n }\n }\n\n fragment CartProductItem on StoreProduct {\n sku\n name\n unitMultiplier\n image {\n url\n alternateName\n }\n brand {\n name\n }\n isVariantOf {\n productGroupID\n name\n skuVariants {\n activeVariations\n slugsMap\n availableVariations\n }\n }\n gtin\n additionalProperty {\n propertyID\n name\n value\n valueReference\n }\n }\n'
): typeof import('./graphql').ValidateCartMutationDocument
/**
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
diff --git a/packages/core/@generated/graphql.ts b/packages/core/@generated/graphql.ts
index feeba2639b..b2c736af6e 100644
--- a/packages/core/@generated/graphql.ts
+++ b/packages/core/@generated/graphql.ts
@@ -677,7 +677,7 @@ export type StoreBreadcrumbList = {
export type StoreCart = {
/** List of shopping cart messages. */
messages: Array
- /** Order information, including `orderNumber` and `acceptedOffer`. */
+ /** Order information, including `orderNumber`, `acceptedOffer` and `shouldSplitItem`. */
order: StoreOrder
}
@@ -887,6 +887,8 @@ export type StoreOrder = {
acceptedOffer: Array
/** ID of the order in [VTEX order management](https://help.vtex.com/en/tutorial/license-manager-resources-oms--60QcBsvWeum02cFi3GjBzg#). */
orderNumber: Scalars['String']['output']
+ /** Indicates whether or not items with attachments should be split. */
+ shouldSplitItem: Maybe
}
/** Organization. */
@@ -1320,6 +1322,7 @@ export type ValidateCartMutationMutation = {
validateCart: {
order: {
orderNumber: string
+ shouldSplitItem: boolean | null
acceptedOffer: Array<{
quantity: number
price: number
@@ -2069,7 +2072,7 @@ export const ServerProductQueryDocument = {
export const ValidateCartMutationDocument = {
__meta__: {
operationName: 'ValidateCartMutation',
- operationHash: '324471076994dca94a47adcaf1c6b8f7896e1b4f',
+ operationHash: 'c2b3f8bff73ebf6ac79d758c66cabbc21ba9fcc0',
},
} as unknown as TypedDocumentString<
ValidateCartMutationMutation,
diff --git a/packages/core/src/sdk/cart/index.ts b/packages/core/src/sdk/cart/index.ts
index ba8ea163bd..7868c24ba6 100644
--- a/packages/core/src/sdk/cart/index.ts
+++ b/packages/core/src/sdk/cart/index.ts
@@ -31,6 +31,7 @@ export const ValidateCartMutation = gql(`
acceptedOffer {
...CartItem
}
+ shouldSplitItem
}
messages {
...CartMessage
@@ -144,6 +145,7 @@ const validateCart = async (cart: Cart): Promise => {
id: getItemId(item),
})),
messages: validated.messages,
+ shouldSplitItem: validated.order.shouldSplitItem,
}
)
}
From 0f328446c751e79479b7e75b2b4c3d9da35ba57c Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Wed, 13 Nov 2024 20:12:49 +0000
Subject: [PATCH 131/154] [no ci] Release: 3.0.149
---
apps/site/package.json | 4 ++--
lerna.json | 2 +-
packages/api/package.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 4 ++--
6 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 7317b497f6..7327c81af5 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.144",
+ "version": "3.0.149",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,7 +10,7 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.140",
+ "@faststore/api": "^3.0.149",
"@faststore/sdk": "^3.0.135",
"@faststore/ui": "^3.0.144",
"next": "13.0.7",
diff --git a/lerna.json b/lerna.json
index 854fe81003..74db96b80a 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.148",
+ "version": "3.0.149",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index 74f9e2f4a2..ce652d9ea3 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.140",
+ "version": "3.0.149",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 8ce4653797..1babe972e4 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.148 linux-x64 node-v18.20.4
+@faststore/cli/3.0.149 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.148/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 3b0c30b723..1ffedbb804 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.148",
+ "version": "3.0.149",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.148",
+ "@faststore/core": "^3.0.149",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index c75cbeb900..9d6c6237d5 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.148",
+ "version": "3.0.149",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,7 +43,7 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.140",
+ "@faststore/api": "^3.0.149",
"@faststore/components": "^3.0.144",
"@faststore/graphql-utils": "^3.0.135",
"@faststore/lighthouse": "^3.0.135",
From 18a03f5aa1e5f20ec2a965d4c8311295c9177283 Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 19 Nov 2024 12:07:41 -0300
Subject: [PATCH 132/154] feat: next/dynamic in `BannerText` internal
components SFS-1518 (#2552)
## What's the purpose of this pull request?
This PR is part of the performance initiative and aims to apply
next/dynamic to BannerText's internal components.
## How to test it?
The pages should render as before, this PR is only to prepare the
components for the time that we're gonna render based on the
ViewportObserver/LazyLoadingSection.
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/608
Preview
https://sfj-fc3bf86--starter.preview.vtex.app/
### References
POC PR
- https://github.com/vtex/faststore/pull/2404
---
.../sections/BannerText/DefaultComponents.ts | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/packages/core/src/components/sections/BannerText/DefaultComponents.ts b/packages/core/src/components/sections/BannerText/DefaultComponents.ts
index a6e81716ac..86481e2aac 100644
--- a/packages/core/src/components/sections/BannerText/DefaultComponents.ts
+++ b/packages/core/src/components/sections/BannerText/DefaultComponents.ts
@@ -1,7 +1,15 @@
-import {
- BannerText as UIBannerText,
- BannerTextContent as UIBannerTextContent,
-} from '@faststore/ui'
+import dynamic from 'next/dynamic'
+
+const UIBannerText = dynamic(() =>
+ import(/* webpackChunkName: "UIBannerText" */ '@faststore/ui').then(
+ (mod) => mod.BannerText
+ )
+)
+const UIBannerTextContent = dynamic(() =>
+ import(/* webpackChunkName: "UIBannerTextContent" */ '@faststore/ui').then(
+ (mod) => mod.BannerTextContent
+ )
+)
export const BannerTextDefaultComponents = {
BannerText: UIBannerText,
From 286424c6ce1f57527ff645dfe72289a707dc5c6c Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 19 Nov 2024 12:11:43 -0300
Subject: [PATCH 133/154] feat: next/dynamic in `CartSidebar` internal
components SFS-1517 (#2553)
## What's the purpose of this pull request?
This PR is part of the performance initiative and aims to apply
`next/dynamic` to `CartSidebar` internal components.
## How to test it?
The CartSidebar should render as before. You should see the JS from
internal components loading on demand. This PR is also to prepare the
components for the time that we will render based on the
ViewportObserver/LazyLoadingSection.
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/609
Preview
- https://sfj-b6dcbf1--starter.preview.vtex.app/
### References
POC PR
- https://github.com/vtex/faststore/pull/2404
---
.../cart/CartSidebar/CartSidebar.tsx | 217 +++++++++++-------
1 file changed, 128 insertions(+), 89 deletions(-)
diff --git a/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx b/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
index e4869613e4..d6f6994026 100644
--- a/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
+++ b/packages/core/src/components/cart/CartSidebar/CartSidebar.tsx
@@ -1,23 +1,64 @@
-import {
- Button as UIButton,
- CartSidebar as UICartSidebar,
- CartSidebarFooter as UICartSidebarFooter,
- CartSidebarList as UICartSidebarList,
-} from '@faststore/ui'
+import dynamic from 'next/dynamic'
-import type { CartSidebarProps as UICartSidebarProps } from '@faststore/ui'
+import type {
+ ButtonProps,
+ CartSidebarProps as UICartSidebarProps,
+} from '@faststore/ui'
import type { CurrencyCode, ViewCartEvent } from '@faststore/sdk'
import { Icon, useFadeEffect, useUI } from '@faststore/ui'
-import { Suspense, useCallback, useEffect, useMemo } from 'react'
+import { ReactNode, useCallback, useEffect, useMemo } from 'react'
import { useCart } from 'src/sdk/cart'
import { useCheckoutButton } from 'src/sdk/cart/useCheckoutButton'
import { useSession } from 'src/sdk/session'
-import Gift from '../../ui/Gift'
-import CartItem from '../CartItem'
-import EmptyCart from '../EmptyCart'
-import OrderSummary from '../OrderSummary'
+const UIButton = dynamic(
+ () =>
+ import(/* webpackChunkName: "UIButton" */ '@faststore/ui').then(
+ (mod) => mod.Button
+ ),
+ { ssr: false }
+)
+const UICartSidebarFooter = dynamic<{ children: ReactNode }>(
+ () =>
+ import(/* webpackChunkName: "UICartSidebarFooter" */ '@faststore/ui').then(
+ (mod) => mod.CartSidebarFooter
+ ),
+ { ssr: false }
+)
+const UICartSidebarList = dynamic<{ children: ReactNode }>(
+ () =>
+ import(/* webpackChunkName: "UICartSidebarList" */ '@faststore/ui').then(
+ (mod) => mod.CartSidebarList
+ ),
+ { ssr: false }
+)
+const UICartSidebar = dynamic(
+ () =>
+ import(/* webpackChunkName: "UICartSidebar" */ '@faststore/ui').then(
+ (mod) => mod.CartSidebar
+ ),
+ { ssr: false }
+)
+const EmptyCart = dynamic(
+ () => import(/* webpackChunkName: "EmptyCart" */ '../EmptyCart'),
+ { ssr: false }
+)
+const Gift = dynamic(
+ () => import(/* webpackChunkName: "Gift" */ '../../ui/Gift'),
+ {
+ ssr: false,
+ }
+)
+const CartItem = dynamic(
+ () => import(/* webpackChunkName: "CartItem" */ '../CartItem'),
+ { ssr: false }
+)
+const OrderSummary = dynamic(
+ () => import(/* webpackChunkName: "OrderSummary" */ '../OrderSummary'),
+ { ssr: false }
+)
+
import styles from './section.module.scss'
function useViewCartEvent() {
@@ -121,84 +162,82 @@ function CartSidebar({
return (
<>
{displayCart && (
-
- }
- alertText={alertText}
- onClose={fadeOut}
- >
- {isEmpty ? (
-
- ) : (
- <>
-
- {items.map((item) => (
-
-
-
- ))}
- {gifts.length > 0 && (
- <>
- {gifts.map((item) => (
-
-
-
- ))}
- >
- )}
-
+ }
+ alertText={alertText}
+ onClose={fadeOut}
+ >
+ {isEmpty ? (
+
+ ) : (
+ <>
+
+ {items.map((item) => (
+
+
+
+ ))}
+ {gifts.length > 0 && (
+ <>
+ {gifts.map((item) => (
+
+
+
+ ))}
+ >
+ )}
+
-
-
- )
- }
- iconPosition="right"
- {...btnProps}
- >
- {isValidating ? checkoutLoadingLabel : checkoutLabel}
-
- }
- />
-
- >
- )}
-
-
+
+
+ )
+ }
+ iconPosition="right"
+ {...btnProps}
+ >
+ {isValidating ? checkoutLoadingLabel : checkoutLabel}
+
+ }
+ />
+
+ >
+ )}
+
)}
>
)
From 9a6903b8f5bf3ea3aa6ef438780186480d393234 Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 19 Nov 2024 12:13:03 -0300
Subject: [PATCH 134/154] feat: split the global sections in own file (#2554)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## What's the purpose of this pull request?
This PR is part of the performance initiative and aims to split the
global sections into its own file.
Let's initially separate the components of each page type into their own
files; this will help organize the import of components by page type (in
other tasks) and opens up the possibility of only importing customized
components based on the page type in the future, instead of all
components, as we currently do.
The idea is to stop using the `GlobalSections` component in the tree of
each page, but since we are not doing this for all pages yet, we’ll keep
it temporarily. We will only remove the use of this component on the
homepage (in another task). Once we’ve done this for all pages, we can
remove this component entirely, but we will keep the function
`getGlobalSectionsData`.
(packages/core/src/components/cms/GlobalSections.tsx). Global sections
will now be imported into the sections file of each page and passed
directly to `RenderSections`.
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/610
Preview
https://sfj-923b60d--starter.preview.vtex.app/
### References
POC PR
- https://github.com/vtex/faststore/pull/2404
---------
Co-authored-by: Larícia Mota
---
.../src/components/cms/global/Components.ts | 40 +++++++++++++++++++
1 file changed, 40 insertions(+)
create mode 100644 packages/core/src/components/cms/global/Components.ts
diff --git a/packages/core/src/components/cms/global/Components.ts b/packages/core/src/components/cms/global/Components.ts
new file mode 100644
index 0000000000..e3f07cc731
--- /dev/null
+++ b/packages/core/src/components/cms/global/Components.ts
@@ -0,0 +1,40 @@
+import dynamic from 'next/dynamic'
+import { ComponentType } from 'react'
+
+import { OverriddenDefaultAlert as Alert } from 'src/components/sections/Alert/OverriddenDefaultAlert'
+import { OverriddenDefaultNavbar as Navbar } from 'src/components/sections/Navbar/OverriddenDefaultNavbar'
+import { OverriddenDefaultRegionBar as RegionBar } from 'src/components/sections/RegionBar/OverriddenDefaultRegionBar'
+
+import CUSTOM_COMPONENTS from 'src/customizations/src/components'
+
+const CartSidebar = dynamic(
+ () =>
+ import(
+ /* webpackChunkName: "CartSidebar" */ 'src/components/cart/CartSidebar'
+ ),
+ { ssr: false }
+)
+const RegionModal = dynamic(
+ () =>
+ import(
+ /* webpackChunkName: "RegionModal" */ 'src/components/region/RegionModal'
+ ),
+ { ssr: false }
+)
+const Footer = dynamic(
+ () =>
+ import(/* webpackChunkName: "Footer" */ 'src/components/sections/Footer'),
+ { ssr: false }
+)
+
+const COMPONENTS: Record> = {
+ Alert,
+ Navbar,
+ RegionBar,
+ CartSidebar, // out of viewport
+ RegionModal, // out of viewport
+ Footer, // out of viewport
+ ...CUSTOM_COMPONENTS,
+}
+
+export default COMPONENTS
From 5d33a0289de83e8319b4be2f5b28932570a22775 Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 19 Nov 2024 15:18:32 +0000
Subject: [PATCH 135/154] [no ci] Release: 3.0.150
---
apps/site/package.json | 10 +++++-----
lerna.json | 2 +-
packages/api/package.json | 6 +++---
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 8 ++++----
packages/components/package.json | 6 +++---
packages/core/package.json | 16 ++++++++--------
packages/eslint-config/package.json | 2 +-
packages/graphql-utils/package.json | 6 +++---
packages/lighthouse/package.json | 6 +++---
packages/sdk/package.json | 4 ++--
packages/shared/package.json | 2 +-
packages/ui/package.json | 8 ++++----
13 files changed, 46 insertions(+), 46 deletions(-)
diff --git a/apps/site/package.json b/apps/site/package.json
index 7327c81af5..ab37b4a0ed 100644
--- a/apps/site/package.json
+++ b/apps/site/package.json
@@ -1,6 +1,6 @@
{
"name": "site",
- "version": "3.0.149",
+ "version": "3.0.150",
"author": "Emerson Laurentino @emersonlaurentino",
"license": "MIT",
"private": true,
@@ -10,9 +10,9 @@
"start": "next start"
},
"dependencies": {
- "@faststore/api": "^3.0.149",
- "@faststore/sdk": "^3.0.135",
- "@faststore/ui": "^3.0.144",
+ "@faststore/api": "^3.0.150",
+ "@faststore/sdk": "^3.0.150",
+ "@faststore/ui": "^3.0.150",
"next": "13.0.7",
"nextra": "^2.8.0",
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
"sass": "^1.57.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
"@types/node": "^18.11.16",
"eslint": "7.32.0",
"react-docgen-typescript": "^2.2.2",
diff --git a/lerna.json b/lerna.json
index 74db96b80a..80ff4256a9 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.149",
+ "version": "3.0.150",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/api/package.json b/packages/api/package.json
index ce652d9ea3..b2ea4e59a3 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/api",
- "version": "3.0.149",
+ "version": "3.0.150",
"license": "MIT",
"main": "dist/cjs/src/index.js",
"typings": "dist/esm/src/index.d.ts",
@@ -51,8 +51,8 @@
},
"devDependencies": {
"@envelop/core": "^5.0.2",
- "@faststore/eslint-config": "^3.0.135",
- "@faststore/shared": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
+ "@faststore/shared": "^3.0.150",
"@graphql-codegen/cli": "2.2.0",
"@graphql-codegen/typescript": "2.2.2",
"@parcel/watcher": "^2.4.0",
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 1babe972e4..d09edc6bff 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.149 linux-x64 node-v18.20.4
+@faststore/cli/3.0.150 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.149/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 1ffedbb804..348b1daedc 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.149",
+ "version": "3.0.150",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.149",
+ "@faststore/core": "^3.0.150",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
@@ -32,8 +32,8 @@
"path": "^0.12.7"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.135",
- "@faststore/shared": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
+ "@faststore/shared": "^3.0.150",
"@types/chai": "^4",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^9.0.13",
diff --git a/packages/components/package.json b/packages/components/package.json
index 16f5b1618e..05765e5795 100644
--- a/packages/components/package.json
+++ b/packages/components/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/components",
- "version": "3.0.144",
+ "version": "3.0.150",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
@@ -35,8 +35,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.135",
- "@faststore/shared": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
+ "@faststore/shared": "^3.0.150",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.3.0",
"@types/jest-axe": "^3.5.9",
diff --git a/packages/core/package.json b/packages/core/package.json
index 9d6c6237d5..6e7569fd7c 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.149",
+ "version": "3.0.150",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
@@ -43,12 +43,12 @@
"@envelop/graphql-jit": "^8.0.3",
"@envelop/parser-cache": "^6.0.2",
"@envelop/validation-cache": "^6.0.2",
- "@faststore/api": "^3.0.149",
- "@faststore/components": "^3.0.144",
- "@faststore/graphql-utils": "^3.0.135",
- "@faststore/lighthouse": "^3.0.135",
- "@faststore/sdk": "^3.0.135",
- "@faststore/ui": "^3.0.144",
+ "@faststore/api": "^3.0.150",
+ "@faststore/components": "^3.0.150",
+ "@faststore/graphql-utils": "^3.0.150",
+ "@faststore/lighthouse": "^3.0.150",
+ "@faststore/sdk": "^3.0.150",
+ "@faststore/ui": "^3.0.150",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.2.6",
"@graphql-codegen/typescript": "4.0.7",
@@ -87,7 +87,7 @@
"devDependencies": {
"@cypress/code-coverage": "^3.12.1",
"@envelop/testing": "^6.0.0",
- "@faststore/eslint-config": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^10.0.1",
"@types/cypress": "^1.1.3",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index e7d27689b4..82a77cd9d1 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/eslint-config",
- "version": "3.0.135",
+ "version": "3.0.150",
"main": "index.js",
"license": "MIT",
"repository": "vtex/faststore",
diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json
index 56a276164d..88e9ecd27f 100644
--- a/packages/graphql-utils/package.json
+++ b/packages/graphql-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/graphql-utils",
- "version": "3.0.135",
+ "version": "3.0.150",
"description": "GraphQL utilities",
"repository": {
"type": "git",
@@ -21,8 +21,8 @@
"graphql": "^15.6.1"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.135",
- "@faststore/shared": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
+ "@faststore/shared": "^3.0.150",
"cross-env": "^7.0.2",
"eslint": "7.32.0",
"typescript": "^4.2.4"
diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json
index 7ff3b54295..ed940689b7 100644
--- a/packages/lighthouse/package.json
+++ b/packages/lighthouse/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/lighthouse",
- "version": "3.0.135",
+ "version": "3.0.150",
"author": "Emerson Laurentino",
"license": "MIT",
"repository": {
@@ -24,8 +24,8 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.135",
- "@faststore/shared": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
+ "@faststore/shared": "^3.0.150",
"eslint": "7.32.0",
"typescript": "^4.2.4"
}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index 36f8c3e82f..c2bf35cec9 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/sdk",
- "version": "3.0.135",
+ "version": "3.0.150",
"description": "Hooks for creating your next component library",
"license": "MIT",
"repository": {
@@ -37,7 +37,7 @@
"react": "^18.2.0"
},
"devDependencies": {
- "@faststore/shared": "^3.0.135",
+ "@faststore/shared": "^3.0.150",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/react-hooks": "^8.0.1",
"fake-indexeddb": "^3.1.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index 8b6371b7cd..3be0cd8d07 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/shared",
- "version": "3.0.135",
+ "version": "3.0.150",
"private": true,
"files": [
"tsconfig.json"
diff --git a/packages/ui/package.json b/packages/ui/package.json
index d3199fa6de..ebac3b8523 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/ui",
- "version": "3.0.144",
+ "version": "3.0.150",
"description": "A lightweight, framework agnostic component library for React",
"author": "emersonlaurentino",
"license": "MIT",
@@ -48,7 +48,7 @@
}
],
"dependencies": {
- "@faststore/components": "^3.0.144",
+ "@faststore/components": "^3.0.150",
"include-media": "^1.4.10",
"modern-normalize": "^1.1.0",
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@faststore/eslint-config": "^3.0.135",
- "@faststore/shared": "^3.0.135",
+ "@faststore/eslint-config": "^3.0.150",
+ "@faststore/shared": "^3.0.150",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/tabbable": "^3.1.1",
"babel-loader": "^8.2.5",
From cb83534078e03bce633dbf33719e4d435e95b809 Mon Sep 17 00:00:00 2001
From: Eduardo Formiga
Date: Tue, 19 Nov 2024 12:32:03 -0300
Subject: [PATCH 136/154] feat: split the homepage sections in own file (#2555)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Depends on
- https://github.com/vtex/faststore/pull/2554
## What's the purpose of this pull request?
This PR is part of the performance initiative and aims to split the
homepage sections into its own file.
Let's initially separate the components of each page type into their own
files; this will help organize the import of components by page type (in
other tasks) and opens up the possibility of only importing customized
components based on the page type in the future, instead of all
components, as we currently do.
The idea is to stop using the `GlobalSections` component in the tree of
each page, but since we are not doing this for all pages yet, we’ll keep
it temporarily. We will only remove the use of this component on the
homepage (in another task). Once we’ve done this for all pages, we can
remove this component entirely, but we will keep the function
`getGlobalSectionsData`.
(packages/core/src/components/cms/GlobalSections.tsx). Global sections
will now be imported into the sections file of each page and passed
directly to `RenderSections`.
### Starters Deploy Preview
- https://github.com/vtex-sites/starter.store/pull/611
Preview
https://sfj-edd92b9--starter.preview.vtex.app/
### References
POC PR
- https://github.com/vtex/faststore/pull/2404
---
.../src/components/cms/home/Components.ts | 50 +++++++++++++++++++
1 file changed, 50 insertions(+)
create mode 100644 packages/core/src/components/cms/home/Components.ts
diff --git a/packages/core/src/components/cms/home/Components.ts b/packages/core/src/components/cms/home/Components.ts
new file mode 100644
index 0000000000..5e0ba796ed
--- /dev/null
+++ b/packages/core/src/components/cms/home/Components.ts
@@ -0,0 +1,50 @@
+import dynamic from 'next/dynamic'
+import { ComponentType } from 'react'
+
+import { OverriddenDefaultHero as Hero } from 'src/components/sections/Hero/OverriddenDefaultHero'
+import Incentives from 'src/components/sections/Incentives'
+import { default as GLOBAL_COMPONENTS } from '../global/Components'
+
+import CUSTOM_COMPONENTS from 'src/customizations/src/components'
+
+const BannerText = dynamic(
+ () =>
+ import(
+ /* webpackChunkName: "BannerText" */ 'src/components/sections/BannerText/OverriddenDefaultBannerText'
+ ).then((mod) => ({ default: mod.OverriddenDefaultBannerText })),
+ { ssr: false }
+)
+const Newsletter = dynamic(
+ () =>
+ import(
+ /* webpackChunkName: "Newsletter" */ 'src/components/sections/Newsletter/OverriddenDefaultNewsletter'
+ ).then((mod) => ({ default: mod.OverriddenDefaultNewsletter })),
+ { ssr: false }
+)
+const ProductShelf = dynamic(
+ () =>
+ import(
+ /* webpackChunkName: "ProductShelf" */ 'src/components/sections/ProductShelf/OverriddenDefaultProductShelf'
+ ).then((mod) => ({ default: mod.OverriddenDefaultProductShelf })),
+ { ssr: false }
+)
+const ProductTiles = dynamic(
+ () =>
+ import(
+ /* webpackChunkName: "ProductTiles" */ 'src/components/sections/ProductTiles'
+ ),
+ { ssr: false }
+)
+
+const COMPONENTS: Record> = {
+ ...GLOBAL_COMPONENTS,
+ Hero,
+ Incentives,
+ BannerText,
+ Newsletter,
+ ProductShelf,
+ ProductTiles,
+ ...CUSTOM_COMPONENTS,
+}
+
+export default COMPONENTS
From 2285089dbd70649e33a1dde1fd90ceb2edca6dba Mon Sep 17 00:00:00 2001
From: vtexgithubbot
Date: Tue, 19 Nov 2024 15:37:23 +0000
Subject: [PATCH 137/154] [no ci] Release: 3.0.151
---
lerna.json | 2 +-
packages/cli/README.md | 16 ++++++++--------
packages/cli/package.json | 4 ++--
packages/core/package.json | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/lerna.json b/lerna.json
index 80ff4256a9..8700ef070a 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.150",
+ "version": "3.0.151",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/cli/README.md b/packages/cli/README.md
index d09edc6bff..1d5b121b9d 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -30,7 +30,7 @@ $ npm install -g @faststore/cli
$ faststore COMMAND
running command...
$ faststore (--version)
-@faststore/cli/3.0.150 linux-x64 node-v18.20.4
+@faststore/cli/3.0.151 linux-x64 node-v18.20.4
$ faststore --help [COMMAND]
USAGE
$ faststore COMMAND
@@ -61,7 +61,7 @@ ARGUMENTS
PATH The path where the FastStore being built is. Defaults to cwd.
```
-_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/build.ts)_
+_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/build.ts)_
## `faststore cms-sync [PATH]`
@@ -76,7 +76,7 @@ FLAGS
-d, --dry-run
```
-_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/cms-sync.ts)_
+_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/cms-sync.ts)_
## `faststore create [PATH]`
@@ -96,7 +96,7 @@ EXAMPLES
$ yarn faststore create discovery
```
-_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/create.ts)_
+_See code: [dist/commands/create.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/create.ts)_
## `faststore dev [ACCOUNT] [PATH] [PORT]`
@@ -110,7 +110,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/dev.ts)_
+_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/dev.ts)_
## `faststore generate-graphql [PATH]`
@@ -122,7 +122,7 @@ ARGUMENTS
PATH The path where the FastStore GraphQL customization is. Defaults to cwd.
```
-_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/generate-graphql.ts)_
+_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/generate-graphql.ts)_
## `faststore help [COMMAND]`
@@ -156,7 +156,7 @@ ARGUMENTS
PORT The port where FastStore should run. Defaults to 3000.
```
-_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/start.ts)_
+_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/start.ts)_
## `faststore test [PATH]`
@@ -168,5 +168,5 @@ ARGUMENTS
PATH The path where the FastStore being tested is. Defaults to cwd.
```
-_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.150/dist/commands/test.ts)_
+_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.151/dist/commands/test.ts)_
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 348b1daedc..bdc939a15f 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/cli",
- "version": "3.0.150",
+ "version": "3.0.151",
"description": "FastStore CLI",
"author": "Emerson Laurentino @emersonlaurentino",
"bin": {
@@ -18,7 +18,7 @@
],
"dependencies": {
"@antfu/ni": "^0.21.12",
- "@faststore/core": "^3.0.150",
+ "@faststore/core": "^3.0.151",
"@inquirer/prompts": "^5.1.2",
"@oclif/core": "^1.16.4",
"@oclif/plugin-help": "^5",
diff --git a/packages/core/package.json b/packages/core/package.json
index 6e7569fd7c..b004142c35 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@faststore/core",
- "version": "3.0.150",
+ "version": "3.0.151",
"license": "MIT",
"repository": "vtex/faststore",
"browserslist": "supports es6-module and not dead",
From 24af4dcbda2016b5e005afb80ae6a77cbaa1bc76 Mon Sep 17 00:00:00 2001
From: Emerson Laurentino