@szymonpiatek/nextwordpress 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { N as NextWordpressConfig, J as JwtAuthCredentials, u as JwtAuthResponse, W as WPGraphQLConfig, c as WordPressResponse, d as WooCommerceConfig, g as WooCommerceResponse, T as Taxonomy, v as WPEntity, w as RenderedTitle, x as RenderedContent, P as Post, A as Author, F as FeaturedMedia, y as RestSendPasswordResetEmailInput, R as RestSendPasswordResetEmailResult, z as RestResetUserPasswordInput, b as RestResetUserPasswordResult, B as WCImage, D as WCProductVariation, e as WCProduct, j as WCCustomer, E as WCAddress, U as UpdateCustomerInput, h as WCCreateOrderInput, i as WCOrder, f as WCProductFilterParams, n as WPULikeStatsParams, o as WPULikeStats, r as WPULikeCheckParams, s as WPULikeCheckResponse, H as WPULikeVoteParams, q as WPULikeVoteResponse, t as CF7SubmissionResponse, I as GQLSendPasswordResetEmailInput, G as GQLSendPasswordResetEmailResult, K as GQLResetUserPasswordInput, a as GQLResetUserPasswordResult, m as GQLConnection, l as GQLPostFilter, k as GQLPost } from './types-CM3v08Fh.cjs';
2
- export { L as AuthenticationError, M as BlockType, O as CF7Error, Q as CF7SubmissionStatus, S as CF7ValidationError, C as CookieConsentCategories, V as CookieConsentConfig, X as EditorBlock, Y as EmbeddedAuthor, Z as EmbeddedTerm, _ as ErrorCode, $ as GQLError, a0 as GQLPageInfo, a1 as MediaDetails, a2 as MediaSize, a3 as PostEmbedded, a4 as SearchResult, a5 as TemplatePart, a6 as WCDimensions, a7 as WCOrderLineItem, a8 as WCProductAttribute, a9 as WCProductDefaultAttribute, aa as WCShippingLine, ab as WPGraphQLError, ac as WPULikeItemType, p as WPULikeStatus, ad as WooCommerceError, ae as WooCommercePaginationHeaders, af as WordPressAPIError, ag as createCookieConsentHandler, ah as defaultMessages, ai as defaultMessagesPl, aj as parseCookieConsent, ak as resolveMessage } from './types-CM3v08Fh.cjs';
1
+ import { N as NextWordpressConfig, J as JwtAuthCredentials, v as JwtAuthResponse, W as WPGraphQLConfig, c as WordPressResponse, d as WooCommerceConfig, g as WooCommerceResponse, T as Taxonomy, w as WPEntity, x as RenderedTitle, y as RenderedContent, P as Post, A as Author, F as FeaturedMedia, z as RestSendPasswordResetEmailInput, R as RestSendPasswordResetEmailResult, B as RestResetUserPasswordInput, b as RestResetUserPasswordResult, D as WCImage, E as ErrorCode, Y as YithWishlistConfig, k as WCWishlist, H as CreateWishlistInput, I as UpdateWishlistInput, K as AddProductToWishlistInput, L as WCProductVariation, e as WCProduct, j as WCCustomer, M as WCAddress, U as UpdateCustomerInput, h as WCCreateOrderInput, i as WCOrder, f as WCProductFilterParams, o as WPULikeStatsParams, p as WPULikeStats, s as WPULikeCheckParams, t as WPULikeCheckResponse, O as WPULikeVoteParams, r as WPULikeVoteResponse, u as CF7SubmissionResponse, Q as GQLSendPasswordResetEmailInput, G as GQLSendPasswordResetEmailResult, S as GQLResetUserPasswordInput, a as GQLResetUserPasswordResult, n as GQLConnection, m as GQLPostFilter, l as GQLPost } from './types-DUmH-vcl.cjs';
2
+ export { V as AuthenticationError, X as BlockType, Z as CF7Error, _ as CF7SubmissionStatus, $ as CF7ValidationError, C as CookieConsentCategories, a0 as CookieConsentConfig, a1 as EditorBlock, a2 as EmbeddedAuthor, a3 as EmbeddedTerm, a4 as GQLError, a5 as GQLPageInfo, a6 as MediaDetails, a7 as MediaSize, a8 as PostEmbedded, a9 as SearchResult, aa as TemplatePart, ab as WCDimensions, ac as WCOrderLineItem, ad as WCProductAttribute, ae as WCProductDefaultAttribute, af as WCShippingLine, ag as WCWishlistItem, ah as WPGraphQLError, ai as WPULikeItemType, q as WPULikeStatus, aj as WooCommerceError, ak as WooCommercePaginationHeaders, al as WordPressAPIError, am as createCookieConsentHandler, an as defaultMessages, ao as defaultMessagesPl, ap as parseCookieConsent, aq as resolveMessage } from './types-DUmH-vcl.cjs';
3
3
 
4
4
  declare function createApplicationPasswordToken(username: string, appPassword: string): string;
5
5
 
@@ -1023,6 +1023,37 @@ interface WCPaymentGateway {
1023
1023
  settings: Record<string, WCPaymentGatewaySetting>;
1024
1024
  }
1025
1025
 
1026
+ declare class YithWishlistError extends Error {
1027
+ readonly code: ErrorCode;
1028
+ readonly status: number;
1029
+ readonly url: string;
1030
+ readonly upstreamCode?: string | undefined;
1031
+ readonly upstreamMessage?: string | undefined;
1032
+ constructor(code: ErrorCode, status: number, url: string, message: string, upstreamCode?: string | undefined, upstreamMessage?: string | undefined);
1033
+ }
1034
+ declare function createYithWishlistFetcher(config: YithWishlistConfig): {
1035
+ yithFetch: <T>(path: string, tags?: string[], options?: RequestInit) => Promise<T>;
1036
+ yithFetchGraceful: <T>(path: string, fallback: T, tags?: string[]) => Promise<T>;
1037
+ yithMutate: <T>(path: string, body: unknown, method?: "POST" | "PATCH" | "DELETE") => Promise<T>;
1038
+ };
1039
+ type YithWishlistFetcher = ReturnType<typeof createYithWishlistFetcher>;
1040
+
1041
+ declare function createWishlistQueries(fetcher: YithWishlistFetcher): {
1042
+ getWishlists: () => Promise<WCWishlist[]>;
1043
+ getWishlistByToken: (token: string) => Promise<WCWishlist>;
1044
+ };
1045
+
1046
+ declare function createWishlistMutations(fetcher: YithWishlistFetcher): {
1047
+ createWishlist: (input: CreateWishlistInput) => Promise<WCWishlist>;
1048
+ updateWishlist: (token: string, input: UpdateWishlistInput) => Promise<WCWishlist>;
1049
+ deleteWishlist: (token: string) => Promise<{
1050
+ deleted: boolean;
1051
+ previous: WCWishlist;
1052
+ }>;
1053
+ addProductToWishlist: (token: string, input: AddProductToWishlistInput) => Promise<WCWishlist>;
1054
+ removeProductFromWishlist: (token: string, productId: number) => Promise<WCWishlist>;
1055
+ };
1056
+
1026
1057
  interface OmnibusPriceEntry {
1027
1058
  price: string;
1028
1059
  date: string;
@@ -2010,4 +2041,4 @@ interface FaustPreviewDeps {
2010
2041
  declare function createFaustAuthHandler(config: FaustConfig): (request: Request, routePath: string) => Promise<Response>;
2011
2042
  declare function createPreviewHandler(config: FaustPreviewConfig, deps: FaustPreviewDeps): (request: Request) => Promise<Response>;
2012
2043
 
2013
- export { Author, CF7SubmissionResponse, type Category, type Comment, type CommentAuthorAvatar, type CreateAttributeTermInput, type CreateAuthorInput, type CreateCategoryInput, type CreateCommentInput, type CreateCouponInput, type CreateMenuInput, type CreateMenuItemInput, type CreatePageInput, type CreatePostInput, type CreateProductAttributeInput, type CreateProductCategoryInput, type CreateProductInput, type CreateProductReviewInput, type CreateProductTagInput, type CreateShippingClassInput, type CreateShippingZoneInput, type CreateShippingZoneMethodInput, type CreateTagInput, type CreateTaxClassInput, type CreateTaxRateInput, type CreateWebhookInput, type FaustConfig, type FaustPreviewConfig, type FaustPreviewDeps, FeaturedMedia, type GQLACFFieldGroup, type GQLAuthor, type GQLCPTNode, type GQLCategory, GQLConnection, type GQLCreateCommentInput, type GQLCreateCommentResult, type GQLCreatePostInput, type GQLCustomer, type GQLDeletePostResult, type GQLLineItem, type GQLMutatedComment, type GQLMutatedPost, type GQLOrder, type GQLOrderAddress, type GQLPage, type GQLPageWithSEO, GQLPost, GQLPostFilter, type GQLPostStatus, type GQLPostWithSEO, type GQLProduct, type GQLProductFilter, type GQLProductVariation, GQLResetUserPasswordInput, GQLResetUserPasswordResult, GQLSendPasswordResetEmailInput, GQLSendPasswordResetEmailResult, type GQLTag, type GQLUpdatePostInput, type GQLYoastSEO, JwtAuthCredentials, JwtAuthResponse, type Menu, type MenuItem, type MenuLocation, type MenuWithItems, NextWordpressConfig, type OmnibusPriceEntry, type OmnibusProductData, type Page, Post, RenderedContent, RenderedTitle, type RestPageStatus, type RestPostStatus, type RevalidationConfig, type RevalidationPayload, type RevalidationResult, type Tag, Taxonomy, type UpdateAttributeTermInput, type UpdateAuthorInput, type UpdateCategoryInput, type UpdateCommentInput, type UpdateCouponInput, UpdateCustomerInput, type UpdateMediaInput, type UpdateMenuInput, type UpdateMenuItemInput, type UpdatePageInput, type UpdatePostInput, type UpdateProductAttributeInput, type UpdateProductCategoryInput, type UpdateProductInput, type UpdateProductReviewInput, type UpdateProductTagInput, type UpdateShippingClassInput, type UpdateShippingZoneInput, type UpdateShippingZoneMethodInput, type UpdateTagInput, type UpdateTaxRateInput, type UpdateWebhookInput, type UploadMediaInput, WCAddress, type WCAttributeTerm, type WCContinent, type WCCountry, type WCCoupon, WCCreateOrderInput, type WCCreateOrderNoteInput, type WCCreateOrderRefundInput, type WCCurrency, WCCustomer, type WCProductAttribute as WCGlobalProductAttribute, WCImage, WCOrder, type WCOrderNote, type WCOrderRefund, type WCPaymentGateway, type WCPaymentGatewaySetting, WCProduct, type WCProductCategory, WCProductFilterParams, type WCProductReview, type WCProductReviewFilterParams, type WCProductStatus, type WCProductTag, WCProductVariation, type WCProductVariationWithOmnibus, type WCProductWithOmnibus, type WCRefundLineItem, type WCReviewStatus, type WCSalesReport, type WCSalesReportParams, type WCSettingGroup, type WCSettingOption, type WCShippingClass, type WCShippingMethod, type WCShippingZone, type WCShippingZoneLocation, type WCShippingZoneMethod, type WCStatusCount, type WCSystemStatus, type WCSystemStatusTool, type WCTaxClass, type WCTaxRate, type WCTopSeller, type WCTopSellersParams, type WCWebhook, type WCWebhookStatus, type WCWebhookTopic, WPEntity, WPGraphQLConfig, type WPGraphQLFetcher, WPULikeCheckParams, WPULikeCheckResponse, WPULikeStats, WPULikeStatsParams, WPULikeVoteParams, WPULikeVoteResponse, WooCommerceConfig, type WooCommerceFetcher, WooCommerceResponse, authenticateJwt, buildACFFragment, buildPageWithACFQuery, buildPostWithACFQuery, buildPostsWithACFQuery, createApplicationPasswordToken, createAuthorsMutations, createCF7Queries, createCPTQueries, createCategoriesMutations, createCommentsMutations, createFaustAuthHandler, createMediaMutations, createMenusMutations, createPagesMutations, createPostsMutations, createPreviewHandler, createRevalidationHandler, createTagsMutations, createWPGraphQLCoreClient as createWPGraphQLClient, createWPGraphQLCoreClient, createWPGraphQLFetcher, createWPGraphQLMutationsClient, createWPGraphQLWooCommerceClient, createWPULikeClient, createWPULikeQueries, createWooCommerceClient, createWooCommerceFetcher, createWordPressClient, createWordPressMutationsClient, createYoastQueries, extractOmnibusData, resolveBaseUrl, validateJwtToken, withOmnibus, withOmnibusVariation };
2044
+ export { AddProductToWishlistInput, Author, CF7SubmissionResponse, type Category, type Comment, type CommentAuthorAvatar, type CreateAttributeTermInput, type CreateAuthorInput, type CreateCategoryInput, type CreateCommentInput, type CreateCouponInput, type CreateMenuInput, type CreateMenuItemInput, type CreatePageInput, type CreatePostInput, type CreateProductAttributeInput, type CreateProductCategoryInput, type CreateProductInput, type CreateProductReviewInput, type CreateProductTagInput, type CreateShippingClassInput, type CreateShippingZoneInput, type CreateShippingZoneMethodInput, type CreateTagInput, type CreateTaxClassInput, type CreateTaxRateInput, type CreateWebhookInput, CreateWishlistInput, ErrorCode, type FaustConfig, type FaustPreviewConfig, type FaustPreviewDeps, FeaturedMedia, type GQLACFFieldGroup, type GQLAuthor, type GQLCPTNode, type GQLCategory, GQLConnection, type GQLCreateCommentInput, type GQLCreateCommentResult, type GQLCreatePostInput, type GQLCustomer, type GQLDeletePostResult, type GQLLineItem, type GQLMutatedComment, type GQLMutatedPost, type GQLOrder, type GQLOrderAddress, type GQLPage, type GQLPageWithSEO, GQLPost, GQLPostFilter, type GQLPostStatus, type GQLPostWithSEO, type GQLProduct, type GQLProductFilter, type GQLProductVariation, GQLResetUserPasswordInput, GQLResetUserPasswordResult, GQLSendPasswordResetEmailInput, GQLSendPasswordResetEmailResult, type GQLTag, type GQLUpdatePostInput, type GQLYoastSEO, JwtAuthCredentials, JwtAuthResponse, type Menu, type MenuItem, type MenuLocation, type MenuWithItems, NextWordpressConfig, type OmnibusPriceEntry, type OmnibusProductData, type Page, Post, RenderedContent, RenderedTitle, type RestPageStatus, type RestPostStatus, type RevalidationConfig, type RevalidationPayload, type RevalidationResult, type Tag, Taxonomy, type UpdateAttributeTermInput, type UpdateAuthorInput, type UpdateCategoryInput, type UpdateCommentInput, type UpdateCouponInput, UpdateCustomerInput, type UpdateMediaInput, type UpdateMenuInput, type UpdateMenuItemInput, type UpdatePageInput, type UpdatePostInput, type UpdateProductAttributeInput, type UpdateProductCategoryInput, type UpdateProductInput, type UpdateProductReviewInput, type UpdateProductTagInput, type UpdateShippingClassInput, type UpdateShippingZoneInput, type UpdateShippingZoneMethodInput, type UpdateTagInput, type UpdateTaxRateInput, type UpdateWebhookInput, UpdateWishlistInput, type UploadMediaInput, WCAddress, type WCAttributeTerm, type WCContinent, type WCCountry, type WCCoupon, WCCreateOrderInput, type WCCreateOrderNoteInput, type WCCreateOrderRefundInput, type WCCurrency, WCCustomer, type WCProductAttribute as WCGlobalProductAttribute, WCImage, WCOrder, type WCOrderNote, type WCOrderRefund, type WCPaymentGateway, type WCPaymentGatewaySetting, WCProduct, type WCProductCategory, WCProductFilterParams, type WCProductReview, type WCProductReviewFilterParams, type WCProductStatus, type WCProductTag, WCProductVariation, type WCProductVariationWithOmnibus, type WCProductWithOmnibus, type WCRefundLineItem, type WCReviewStatus, type WCSalesReport, type WCSalesReportParams, type WCSettingGroup, type WCSettingOption, type WCShippingClass, type WCShippingMethod, type WCShippingZone, type WCShippingZoneLocation, type WCShippingZoneMethod, type WCStatusCount, type WCSystemStatus, type WCSystemStatusTool, type WCTaxClass, type WCTaxRate, type WCTopSeller, type WCTopSellersParams, type WCWebhook, type WCWebhookStatus, type WCWebhookTopic, WCWishlist, WPEntity, WPGraphQLConfig, type WPGraphQLFetcher, WPULikeCheckParams, WPULikeCheckResponse, WPULikeStats, WPULikeStatsParams, WPULikeVoteParams, WPULikeVoteResponse, WooCommerceConfig, type WooCommerceFetcher, WooCommerceResponse, YithWishlistConfig, YithWishlistError, type YithWishlistFetcher, authenticateJwt, buildACFFragment, buildPageWithACFQuery, buildPostWithACFQuery, buildPostsWithACFQuery, createApplicationPasswordToken, createAuthorsMutations, createCF7Queries, createCPTQueries, createCategoriesMutations, createCommentsMutations, createFaustAuthHandler, createMediaMutations, createMenusMutations, createPagesMutations, createPostsMutations, createPreviewHandler, createRevalidationHandler, createTagsMutations, createWPGraphQLCoreClient as createWPGraphQLClient, createWPGraphQLCoreClient, createWPGraphQLFetcher, createWPGraphQLMutationsClient, createWPGraphQLWooCommerceClient, createWPULikeClient, createWPULikeQueries, createWishlistMutations, createWishlistQueries, createWooCommerceClient, createWooCommerceFetcher, createWordPressClient, createWordPressMutationsClient, createYithWishlistFetcher, createYoastQueries, extractOmnibusData, resolveBaseUrl, validateJwtToken, withOmnibus, withOmnibusVariation };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { N as NextWordpressConfig, J as JwtAuthCredentials, u as JwtAuthResponse, W as WPGraphQLConfig, c as WordPressResponse, d as WooCommerceConfig, g as WooCommerceResponse, T as Taxonomy, v as WPEntity, w as RenderedTitle, x as RenderedContent, P as Post, A as Author, F as FeaturedMedia, y as RestSendPasswordResetEmailInput, R as RestSendPasswordResetEmailResult, z as RestResetUserPasswordInput, b as RestResetUserPasswordResult, B as WCImage, D as WCProductVariation, e as WCProduct, j as WCCustomer, E as WCAddress, U as UpdateCustomerInput, h as WCCreateOrderInput, i as WCOrder, f as WCProductFilterParams, n as WPULikeStatsParams, o as WPULikeStats, r as WPULikeCheckParams, s as WPULikeCheckResponse, H as WPULikeVoteParams, q as WPULikeVoteResponse, t as CF7SubmissionResponse, I as GQLSendPasswordResetEmailInput, G as GQLSendPasswordResetEmailResult, K as GQLResetUserPasswordInput, a as GQLResetUserPasswordResult, m as GQLConnection, l as GQLPostFilter, k as GQLPost } from './types-CM3v08Fh.js';
2
- export { L as AuthenticationError, M as BlockType, O as CF7Error, Q as CF7SubmissionStatus, S as CF7ValidationError, C as CookieConsentCategories, V as CookieConsentConfig, X as EditorBlock, Y as EmbeddedAuthor, Z as EmbeddedTerm, _ as ErrorCode, $ as GQLError, a0 as GQLPageInfo, a1 as MediaDetails, a2 as MediaSize, a3 as PostEmbedded, a4 as SearchResult, a5 as TemplatePart, a6 as WCDimensions, a7 as WCOrderLineItem, a8 as WCProductAttribute, a9 as WCProductDefaultAttribute, aa as WCShippingLine, ab as WPGraphQLError, ac as WPULikeItemType, p as WPULikeStatus, ad as WooCommerceError, ae as WooCommercePaginationHeaders, af as WordPressAPIError, ag as createCookieConsentHandler, ah as defaultMessages, ai as defaultMessagesPl, aj as parseCookieConsent, ak as resolveMessage } from './types-CM3v08Fh.js';
1
+ import { N as NextWordpressConfig, J as JwtAuthCredentials, v as JwtAuthResponse, W as WPGraphQLConfig, c as WordPressResponse, d as WooCommerceConfig, g as WooCommerceResponse, T as Taxonomy, w as WPEntity, x as RenderedTitle, y as RenderedContent, P as Post, A as Author, F as FeaturedMedia, z as RestSendPasswordResetEmailInput, R as RestSendPasswordResetEmailResult, B as RestResetUserPasswordInput, b as RestResetUserPasswordResult, D as WCImage, E as ErrorCode, Y as YithWishlistConfig, k as WCWishlist, H as CreateWishlistInput, I as UpdateWishlistInput, K as AddProductToWishlistInput, L as WCProductVariation, e as WCProduct, j as WCCustomer, M as WCAddress, U as UpdateCustomerInput, h as WCCreateOrderInput, i as WCOrder, f as WCProductFilterParams, o as WPULikeStatsParams, p as WPULikeStats, s as WPULikeCheckParams, t as WPULikeCheckResponse, O as WPULikeVoteParams, r as WPULikeVoteResponse, u as CF7SubmissionResponse, Q as GQLSendPasswordResetEmailInput, G as GQLSendPasswordResetEmailResult, S as GQLResetUserPasswordInput, a as GQLResetUserPasswordResult, n as GQLConnection, m as GQLPostFilter, l as GQLPost } from './types-DUmH-vcl.js';
2
+ export { V as AuthenticationError, X as BlockType, Z as CF7Error, _ as CF7SubmissionStatus, $ as CF7ValidationError, C as CookieConsentCategories, a0 as CookieConsentConfig, a1 as EditorBlock, a2 as EmbeddedAuthor, a3 as EmbeddedTerm, a4 as GQLError, a5 as GQLPageInfo, a6 as MediaDetails, a7 as MediaSize, a8 as PostEmbedded, a9 as SearchResult, aa as TemplatePart, ab as WCDimensions, ac as WCOrderLineItem, ad as WCProductAttribute, ae as WCProductDefaultAttribute, af as WCShippingLine, ag as WCWishlistItem, ah as WPGraphQLError, ai as WPULikeItemType, q as WPULikeStatus, aj as WooCommerceError, ak as WooCommercePaginationHeaders, al as WordPressAPIError, am as createCookieConsentHandler, an as defaultMessages, ao as defaultMessagesPl, ap as parseCookieConsent, aq as resolveMessage } from './types-DUmH-vcl.js';
3
3
 
4
4
  declare function createApplicationPasswordToken(username: string, appPassword: string): string;
5
5
 
@@ -1023,6 +1023,37 @@ interface WCPaymentGateway {
1023
1023
  settings: Record<string, WCPaymentGatewaySetting>;
1024
1024
  }
1025
1025
 
1026
+ declare class YithWishlistError extends Error {
1027
+ readonly code: ErrorCode;
1028
+ readonly status: number;
1029
+ readonly url: string;
1030
+ readonly upstreamCode?: string | undefined;
1031
+ readonly upstreamMessage?: string | undefined;
1032
+ constructor(code: ErrorCode, status: number, url: string, message: string, upstreamCode?: string | undefined, upstreamMessage?: string | undefined);
1033
+ }
1034
+ declare function createYithWishlistFetcher(config: YithWishlistConfig): {
1035
+ yithFetch: <T>(path: string, tags?: string[], options?: RequestInit) => Promise<T>;
1036
+ yithFetchGraceful: <T>(path: string, fallback: T, tags?: string[]) => Promise<T>;
1037
+ yithMutate: <T>(path: string, body: unknown, method?: "POST" | "PATCH" | "DELETE") => Promise<T>;
1038
+ };
1039
+ type YithWishlistFetcher = ReturnType<typeof createYithWishlistFetcher>;
1040
+
1041
+ declare function createWishlistQueries(fetcher: YithWishlistFetcher): {
1042
+ getWishlists: () => Promise<WCWishlist[]>;
1043
+ getWishlistByToken: (token: string) => Promise<WCWishlist>;
1044
+ };
1045
+
1046
+ declare function createWishlistMutations(fetcher: YithWishlistFetcher): {
1047
+ createWishlist: (input: CreateWishlistInput) => Promise<WCWishlist>;
1048
+ updateWishlist: (token: string, input: UpdateWishlistInput) => Promise<WCWishlist>;
1049
+ deleteWishlist: (token: string) => Promise<{
1050
+ deleted: boolean;
1051
+ previous: WCWishlist;
1052
+ }>;
1053
+ addProductToWishlist: (token: string, input: AddProductToWishlistInput) => Promise<WCWishlist>;
1054
+ removeProductFromWishlist: (token: string, productId: number) => Promise<WCWishlist>;
1055
+ };
1056
+
1026
1057
  interface OmnibusPriceEntry {
1027
1058
  price: string;
1028
1059
  date: string;
@@ -2010,4 +2041,4 @@ interface FaustPreviewDeps {
2010
2041
  declare function createFaustAuthHandler(config: FaustConfig): (request: Request, routePath: string) => Promise<Response>;
2011
2042
  declare function createPreviewHandler(config: FaustPreviewConfig, deps: FaustPreviewDeps): (request: Request) => Promise<Response>;
2012
2043
 
2013
- export { Author, CF7SubmissionResponse, type Category, type Comment, type CommentAuthorAvatar, type CreateAttributeTermInput, type CreateAuthorInput, type CreateCategoryInput, type CreateCommentInput, type CreateCouponInput, type CreateMenuInput, type CreateMenuItemInput, type CreatePageInput, type CreatePostInput, type CreateProductAttributeInput, type CreateProductCategoryInput, type CreateProductInput, type CreateProductReviewInput, type CreateProductTagInput, type CreateShippingClassInput, type CreateShippingZoneInput, type CreateShippingZoneMethodInput, type CreateTagInput, type CreateTaxClassInput, type CreateTaxRateInput, type CreateWebhookInput, type FaustConfig, type FaustPreviewConfig, type FaustPreviewDeps, FeaturedMedia, type GQLACFFieldGroup, type GQLAuthor, type GQLCPTNode, type GQLCategory, GQLConnection, type GQLCreateCommentInput, type GQLCreateCommentResult, type GQLCreatePostInput, type GQLCustomer, type GQLDeletePostResult, type GQLLineItem, type GQLMutatedComment, type GQLMutatedPost, type GQLOrder, type GQLOrderAddress, type GQLPage, type GQLPageWithSEO, GQLPost, GQLPostFilter, type GQLPostStatus, type GQLPostWithSEO, type GQLProduct, type GQLProductFilter, type GQLProductVariation, GQLResetUserPasswordInput, GQLResetUserPasswordResult, GQLSendPasswordResetEmailInput, GQLSendPasswordResetEmailResult, type GQLTag, type GQLUpdatePostInput, type GQLYoastSEO, JwtAuthCredentials, JwtAuthResponse, type Menu, type MenuItem, type MenuLocation, type MenuWithItems, NextWordpressConfig, type OmnibusPriceEntry, type OmnibusProductData, type Page, Post, RenderedContent, RenderedTitle, type RestPageStatus, type RestPostStatus, type RevalidationConfig, type RevalidationPayload, type RevalidationResult, type Tag, Taxonomy, type UpdateAttributeTermInput, type UpdateAuthorInput, type UpdateCategoryInput, type UpdateCommentInput, type UpdateCouponInput, UpdateCustomerInput, type UpdateMediaInput, type UpdateMenuInput, type UpdateMenuItemInput, type UpdatePageInput, type UpdatePostInput, type UpdateProductAttributeInput, type UpdateProductCategoryInput, type UpdateProductInput, type UpdateProductReviewInput, type UpdateProductTagInput, type UpdateShippingClassInput, type UpdateShippingZoneInput, type UpdateShippingZoneMethodInput, type UpdateTagInput, type UpdateTaxRateInput, type UpdateWebhookInput, type UploadMediaInput, WCAddress, type WCAttributeTerm, type WCContinent, type WCCountry, type WCCoupon, WCCreateOrderInput, type WCCreateOrderNoteInput, type WCCreateOrderRefundInput, type WCCurrency, WCCustomer, type WCProductAttribute as WCGlobalProductAttribute, WCImage, WCOrder, type WCOrderNote, type WCOrderRefund, type WCPaymentGateway, type WCPaymentGatewaySetting, WCProduct, type WCProductCategory, WCProductFilterParams, type WCProductReview, type WCProductReviewFilterParams, type WCProductStatus, type WCProductTag, WCProductVariation, type WCProductVariationWithOmnibus, type WCProductWithOmnibus, type WCRefundLineItem, type WCReviewStatus, type WCSalesReport, type WCSalesReportParams, type WCSettingGroup, type WCSettingOption, type WCShippingClass, type WCShippingMethod, type WCShippingZone, type WCShippingZoneLocation, type WCShippingZoneMethod, type WCStatusCount, type WCSystemStatus, type WCSystemStatusTool, type WCTaxClass, type WCTaxRate, type WCTopSeller, type WCTopSellersParams, type WCWebhook, type WCWebhookStatus, type WCWebhookTopic, WPEntity, WPGraphQLConfig, type WPGraphQLFetcher, WPULikeCheckParams, WPULikeCheckResponse, WPULikeStats, WPULikeStatsParams, WPULikeVoteParams, WPULikeVoteResponse, WooCommerceConfig, type WooCommerceFetcher, WooCommerceResponse, authenticateJwt, buildACFFragment, buildPageWithACFQuery, buildPostWithACFQuery, buildPostsWithACFQuery, createApplicationPasswordToken, createAuthorsMutations, createCF7Queries, createCPTQueries, createCategoriesMutations, createCommentsMutations, createFaustAuthHandler, createMediaMutations, createMenusMutations, createPagesMutations, createPostsMutations, createPreviewHandler, createRevalidationHandler, createTagsMutations, createWPGraphQLCoreClient as createWPGraphQLClient, createWPGraphQLCoreClient, createWPGraphQLFetcher, createWPGraphQLMutationsClient, createWPGraphQLWooCommerceClient, createWPULikeClient, createWPULikeQueries, createWooCommerceClient, createWooCommerceFetcher, createWordPressClient, createWordPressMutationsClient, createYoastQueries, extractOmnibusData, resolveBaseUrl, validateJwtToken, withOmnibus, withOmnibusVariation };
2044
+ export { AddProductToWishlistInput, Author, CF7SubmissionResponse, type Category, type Comment, type CommentAuthorAvatar, type CreateAttributeTermInput, type CreateAuthorInput, type CreateCategoryInput, type CreateCommentInput, type CreateCouponInput, type CreateMenuInput, type CreateMenuItemInput, type CreatePageInput, type CreatePostInput, type CreateProductAttributeInput, type CreateProductCategoryInput, type CreateProductInput, type CreateProductReviewInput, type CreateProductTagInput, type CreateShippingClassInput, type CreateShippingZoneInput, type CreateShippingZoneMethodInput, type CreateTagInput, type CreateTaxClassInput, type CreateTaxRateInput, type CreateWebhookInput, CreateWishlistInput, ErrorCode, type FaustConfig, type FaustPreviewConfig, type FaustPreviewDeps, FeaturedMedia, type GQLACFFieldGroup, type GQLAuthor, type GQLCPTNode, type GQLCategory, GQLConnection, type GQLCreateCommentInput, type GQLCreateCommentResult, type GQLCreatePostInput, type GQLCustomer, type GQLDeletePostResult, type GQLLineItem, type GQLMutatedComment, type GQLMutatedPost, type GQLOrder, type GQLOrderAddress, type GQLPage, type GQLPageWithSEO, GQLPost, GQLPostFilter, type GQLPostStatus, type GQLPostWithSEO, type GQLProduct, type GQLProductFilter, type GQLProductVariation, GQLResetUserPasswordInput, GQLResetUserPasswordResult, GQLSendPasswordResetEmailInput, GQLSendPasswordResetEmailResult, type GQLTag, type GQLUpdatePostInput, type GQLYoastSEO, JwtAuthCredentials, JwtAuthResponse, type Menu, type MenuItem, type MenuLocation, type MenuWithItems, NextWordpressConfig, type OmnibusPriceEntry, type OmnibusProductData, type Page, Post, RenderedContent, RenderedTitle, type RestPageStatus, type RestPostStatus, type RevalidationConfig, type RevalidationPayload, type RevalidationResult, type Tag, Taxonomy, type UpdateAttributeTermInput, type UpdateAuthorInput, type UpdateCategoryInput, type UpdateCommentInput, type UpdateCouponInput, UpdateCustomerInput, type UpdateMediaInput, type UpdateMenuInput, type UpdateMenuItemInput, type UpdatePageInput, type UpdatePostInput, type UpdateProductAttributeInput, type UpdateProductCategoryInput, type UpdateProductInput, type UpdateProductReviewInput, type UpdateProductTagInput, type UpdateShippingClassInput, type UpdateShippingZoneInput, type UpdateShippingZoneMethodInput, type UpdateTagInput, type UpdateTaxRateInput, type UpdateWebhookInput, UpdateWishlistInput, type UploadMediaInput, WCAddress, type WCAttributeTerm, type WCContinent, type WCCountry, type WCCoupon, WCCreateOrderInput, type WCCreateOrderNoteInput, type WCCreateOrderRefundInput, type WCCurrency, WCCustomer, type WCProductAttribute as WCGlobalProductAttribute, WCImage, WCOrder, type WCOrderNote, type WCOrderRefund, type WCPaymentGateway, type WCPaymentGatewaySetting, WCProduct, type WCProductCategory, WCProductFilterParams, type WCProductReview, type WCProductReviewFilterParams, type WCProductStatus, type WCProductTag, WCProductVariation, type WCProductVariationWithOmnibus, type WCProductWithOmnibus, type WCRefundLineItem, type WCReviewStatus, type WCSalesReport, type WCSalesReportParams, type WCSettingGroup, type WCSettingOption, type WCShippingClass, type WCShippingMethod, type WCShippingZone, type WCShippingZoneLocation, type WCShippingZoneMethod, type WCStatusCount, type WCSystemStatus, type WCSystemStatusTool, type WCTaxClass, type WCTaxRate, type WCTopSeller, type WCTopSellersParams, type WCWebhook, type WCWebhookStatus, type WCWebhookTopic, WCWishlist, WPEntity, WPGraphQLConfig, type WPGraphQLFetcher, WPULikeCheckParams, WPULikeCheckResponse, WPULikeStats, WPULikeStatsParams, WPULikeVoteParams, WPULikeVoteResponse, WooCommerceConfig, type WooCommerceFetcher, WooCommerceResponse, YithWishlistConfig, YithWishlistError, type YithWishlistFetcher, authenticateJwt, buildACFFragment, buildPageWithACFQuery, buildPostWithACFQuery, buildPostsWithACFQuery, createApplicationPasswordToken, createAuthorsMutations, createCF7Queries, createCPTQueries, createCategoriesMutations, createCommentsMutations, createFaustAuthHandler, createMediaMutations, createMenusMutations, createPagesMutations, createPostsMutations, createPreviewHandler, createRevalidationHandler, createTagsMutations, createWPGraphQLCoreClient as createWPGraphQLClient, createWPGraphQLCoreClient, createWPGraphQLFetcher, createWPGraphQLMutationsClient, createWPGraphQLWooCommerceClient, createWPULikeClient, createWPULikeQueries, createWishlistMutations, createWishlistQueries, createWooCommerceClient, createWooCommerceFetcher, createWordPressClient, createWordPressMutationsClient, createYithWishlistFetcher, createYoastQueries, extractOmnibusData, resolveBaseUrl, validateJwtToken, withOmnibus, withOmnibusVariation };
package/dist/index.js CHANGED
@@ -33,6 +33,8 @@ var ErrorCode = {
33
33
  WOO_REVIEW_NOT_FOUND: "WOO_REVIEW_NOT_FOUND",
34
34
  WOO_WEBHOOK_NOT_FOUND: "WOO_WEBHOOK_NOT_FOUND",
35
35
  WOO_SHIPPING_ZONE_NOT_FOUND: "WOO_SHIPPING_ZONE_NOT_FOUND",
36
+ WOO_WISHLIST_NOT_FOUND: "WOO_WISHLIST_NOT_FOUND",
37
+ WOO_WISHLIST_ITEM_NOT_FOUND: "WOO_WISHLIST_ITEM_NOT_FOUND",
36
38
  // Auth
37
39
  AUTH_JWT_FAILED: "AUTH_JWT_FAILED",
38
40
  AUTH_CREDENTIALS_INVALID: "AUTH_CREDENTIALS_INVALID",
@@ -67,6 +69,8 @@ var defaultMessages = {
67
69
  WOO_REVIEW_NOT_FOUND: "Product review not found",
68
70
  WOO_WEBHOOK_NOT_FOUND: "Webhook not found",
69
71
  WOO_SHIPPING_ZONE_NOT_FOUND: "Shipping zone not found",
72
+ WOO_WISHLIST_NOT_FOUND: "Wishlist not found",
73
+ WOO_WISHLIST_ITEM_NOT_FOUND: "Wishlist item not found",
70
74
  AUTH_JWT_FAILED: "JWT authentication failed",
71
75
  AUTH_CREDENTIALS_INVALID: "Invalid credentials",
72
76
  AUTH_TOKEN_INVALID: "JWT token is invalid or expired",
@@ -99,6 +103,8 @@ var defaultMessagesPl = {
99
103
  WOO_REVIEW_NOT_FOUND: "Opinia o produkcie nie istnieje",
100
104
  WOO_WEBHOOK_NOT_FOUND: "Webhook nie istnieje",
101
105
  WOO_SHIPPING_ZONE_NOT_FOUND: "Strefa wysy\u0142ki nie istnieje",
106
+ WOO_WISHLIST_NOT_FOUND: "Lista \u017Cycze\u0144 nie istnieje",
107
+ WOO_WISHLIST_ITEM_NOT_FOUND: "Element listy \u017Cycze\u0144 nie istnieje",
102
108
  AUTH_JWT_FAILED: "B\u0142\u0105d uwierzytelnienia JWT",
103
109
  AUTH_CREDENTIALS_INVALID: "Nieprawid\u0142owe dane logowania",
104
110
  AUTH_TOKEN_INVALID: "Token JWT jest nieprawid\u0142owy lub wygas\u0142",
@@ -803,6 +809,138 @@ function createWordPressClient(config) {
803
809
  };
804
810
  }
805
811
 
812
+ // src/integrations/restApi/woocommerce/wishlist/fetcher.ts
813
+ var USER_AGENT2 = "NextWordpress YITH Wishlist Client";
814
+ var DEFAULT_CACHE_TTL = 3600;
815
+ var YithWishlistError = class extends Error {
816
+ constructor(code, status, url, message, upstreamCode, upstreamMessage) {
817
+ super(message);
818
+ __publicField(this, "code", code);
819
+ __publicField(this, "status", status);
820
+ __publicField(this, "url", url);
821
+ __publicField(this, "upstreamCode", upstreamCode);
822
+ __publicField(this, "upstreamMessage", upstreamMessage);
823
+ this.name = "YithWishlistError";
824
+ }
825
+ };
826
+ function resolveYithErrorCode(status, upstreamCode) {
827
+ if (status === 401) return ErrorCode.WOO_UNAUTHORIZED;
828
+ if (status === 403) return ErrorCode.WOO_FORBIDDEN;
829
+ if (status === 404) {
830
+ if (upstreamCode === "yith_wcwl_wishlist_not_found") return ErrorCode.WOO_WISHLIST_NOT_FOUND;
831
+ if (upstreamCode === "yith_wcwl_wishlist_item_not_found")
832
+ return ErrorCode.WOO_WISHLIST_ITEM_NOT_FOUND;
833
+ return ErrorCode.WOO_NOT_FOUND;
834
+ }
835
+ return ErrorCode.WOO_REQUEST_FAILED;
836
+ }
837
+ function createYithWishlistFetcher(config) {
838
+ const cacheTTL = config.cacheTTL ?? DEFAULT_CACHE_TTL;
839
+ function buildUrl2(path) {
840
+ const base = typeof window !== "undefined" && config.clientURL ? config.clientURL : config.serverURL;
841
+ return `${base}${path}`;
842
+ }
843
+ function authHeaders() {
844
+ return {
845
+ "User-Agent": USER_AGENT2,
846
+ "Content-Type": "application/json",
847
+ Authorization: `Bearer ${config.token}`
848
+ };
849
+ }
850
+ async function throwYithError(response, url) {
851
+ const body = await response.json().catch(() => ({}));
852
+ const errorCode = resolveYithErrorCode(response.status, body.code);
853
+ throw new YithWishlistError(
854
+ errorCode,
855
+ response.status,
856
+ url,
857
+ resolveMessage(errorCode, config.errorMessages),
858
+ body.code,
859
+ body.message
860
+ );
861
+ }
862
+ async function yithFetch(path, tags = ["yith-wishlist"], options) {
863
+ const url = buildUrl2(path);
864
+ const isMutation = options?.method && options.method !== "GET";
865
+ const response = await fetch(url, {
866
+ ...options,
867
+ headers: {
868
+ ...authHeaders(),
869
+ ...options?.headers
870
+ },
871
+ next: isMutation ? void 0 : { tags, revalidate: cacheTTL }
872
+ });
873
+ if (!response.ok) {
874
+ await throwYithError(response, url);
875
+ }
876
+ return response.json();
877
+ }
878
+ async function yithFetchGraceful(path, fallback, tags = ["yith-wishlist"]) {
879
+ try {
880
+ return await yithFetch(path, tags);
881
+ } catch (err) {
882
+ console.warn(`YITH Wishlist fetch failed for ${path}`, err);
883
+ return fallback;
884
+ }
885
+ }
886
+ async function yithMutate(path, body, method = "POST") {
887
+ return yithFetch(path, ["yith-wishlist"], {
888
+ method,
889
+ body: JSON.stringify(body)
890
+ });
891
+ }
892
+ return { yithFetch, yithFetchGraceful, yithMutate };
893
+ }
894
+
895
+ // src/integrations/restApi/woocommerce/wishlist/queries.ts
896
+ var BASE = "/wp-json/yith/wishlist/v1/wishlists";
897
+ function createWishlistQueries(fetcher) {
898
+ const { yithFetch, yithFetchGraceful } = fetcher;
899
+ async function getWishlists() {
900
+ return yithFetchGraceful(BASE, [], ["yith-wishlist", "wishlists"]);
901
+ }
902
+ async function getWishlistByToken(token) {
903
+ return yithFetch(`${BASE}/${token}`, ["yith-wishlist", "wishlists", `wishlist-${token}`]);
904
+ }
905
+ return { getWishlists, getWishlistByToken };
906
+ }
907
+
908
+ // src/integrations/restApi/woocommerce/wishlist/mutations.ts
909
+ var BASE2 = "/wp-json/yith/wishlist/v1/wishlists";
910
+ function createWishlistMutations(fetcher) {
911
+ const { yithMutate } = fetcher;
912
+ async function createWishlist(input) {
913
+ return yithMutate(BASE2, input, "POST");
914
+ }
915
+ async function updateWishlist(token, input) {
916
+ return yithMutate(`${BASE2}/${token}`, input, "PATCH");
917
+ }
918
+ async function deleteWishlist(token) {
919
+ return yithMutate(
920
+ `${BASE2}/${token}`,
921
+ {},
922
+ "DELETE"
923
+ );
924
+ }
925
+ async function addProductToWishlist(token, input) {
926
+ return yithMutate(`${BASE2}/${token}/add-product`, input, "POST");
927
+ }
928
+ async function removeProductFromWishlist(token, productId) {
929
+ return yithMutate(
930
+ `${BASE2}/${token}/remove-product/${productId}`,
931
+ {},
932
+ "DELETE"
933
+ );
934
+ }
935
+ return {
936
+ createWishlist,
937
+ updateWishlist,
938
+ deleteWishlist,
939
+ addProductToWishlist,
940
+ removeProductFromWishlist
941
+ };
942
+ }
943
+
806
944
  // src/integrations/restApi/woocommerce/omnibus/queries.ts
807
945
  var META_KEY_LOWEST_PRICE = "wpo_lowest_price";
808
946
  var META_KEY_PRICE_HISTORY = "_alg_wc_price_history";
@@ -869,8 +1007,8 @@ function resolveWooErrorCode(status, upstreamCode) {
869
1007
  }
870
1008
 
871
1009
  // src/integrations/restApi/woocommerce/client/fetcher.ts
872
- var USER_AGENT2 = "NextWordpress WooCommerce Client";
873
- var DEFAULT_CACHE_TTL = 3600;
1010
+ var USER_AGENT3 = "NextWordpress WooCommerce Client";
1011
+ var DEFAULT_CACHE_TTL2 = 3600;
874
1012
  function toQueryString(params) {
875
1013
  const pairs = [];
876
1014
  for (const [key, value] of Object.entries(params)) {
@@ -880,7 +1018,7 @@ function toQueryString(params) {
880
1018
  return pairs.join("&");
881
1019
  }
882
1020
  function createWooCommerceFetcher(config) {
883
- const cacheTTL = config.cacheTTL ?? DEFAULT_CACHE_TTL;
1021
+ const cacheTTL = config.cacheTTL ?? DEFAULT_CACHE_TTL2;
884
1022
  function withAuth(query) {
885
1023
  return { ...query, consumer_key: config.consumerKey, consumer_secret: config.consumerSecret };
886
1024
  }
@@ -907,7 +1045,7 @@ function createWooCommerceFetcher(config) {
907
1045
  const response = await fetch(url, {
908
1046
  ...options,
909
1047
  headers: {
910
- "User-Agent": USER_AGENT2,
1048
+ "User-Agent": USER_AGENT3,
911
1049
  "Content-Type": "application/json",
912
1050
  ...options?.headers
913
1051
  },
@@ -929,7 +1067,7 @@ function createWooCommerceFetcher(config) {
929
1067
  async function wcFetchPaginated(path, query, tags = ["woocommerce"]) {
930
1068
  const url = buildUrl2(path, query);
931
1069
  const response = await fetch(url, {
932
- headers: { "User-Agent": USER_AGENT2 },
1070
+ headers: { "User-Agent": USER_AGENT3 },
933
1071
  next: { tags, revalidate: cacheTTL }
934
1072
  });
935
1073
  if (!response.ok) {
@@ -2215,7 +2353,7 @@ var WPGraphQLError = class extends Error {
2215
2353
  };
2216
2354
 
2217
2355
  // src/integrations/wpGraphQL/client/fetcher.ts
2218
- var USER_AGENT3 = "NextWordpress WPGraphQL Client";
2356
+ var USER_AGENT4 = "NextWordpress WPGraphQL Client";
2219
2357
  function createWPGraphQLFetcher(config) {
2220
2358
  const url = `${resolveBaseUrl(config)}/graphql`;
2221
2359
  const cacheTTL = config.cacheTTL ?? 300;
@@ -2224,7 +2362,7 @@ function createWPGraphQLFetcher(config) {
2224
2362
  method: "POST",
2225
2363
  headers: {
2226
2364
  "Content-Type": "application/json",
2227
- "User-Agent": USER_AGENT3
2365
+ "User-Agent": USER_AGENT4
2228
2366
  },
2229
2367
  body: JSON.stringify({ query: document, variables }),
2230
2368
  next: { tags, revalidate: cacheTTL }
@@ -2268,7 +2406,7 @@ function createWPGraphQLFetcher(config) {
2268
2406
  async function gqlMutate(document, variables, authToken) {
2269
2407
  const headers = {
2270
2408
  "Content-Type": "application/json",
2271
- "User-Agent": USER_AGENT3
2409
+ "User-Agent": USER_AGENT4
2272
2410
  };
2273
2411
  if (authToken) {
2274
2412
  headers["Authorization"] = authToken;
@@ -4419,6 +4557,6 @@ async function validateJwtToken(config, token) {
4419
4557
  return response.ok;
4420
4558
  }
4421
4559
 
4422
- export { AuthenticationError, CF7Error, ErrorCode, WPGraphQLError, WooCommerceError, WordPressAPIError, authenticateJwt, buildACFFragment, buildPageWithACFQuery, buildPostWithACFQuery, buildPostsWithACFQuery, createApplicationPasswordToken, createAuthorsMutations, createCF7Queries, createCPTQueries, createCategoriesMutations, createCommentsMutations, createCookieConsentHandler, createFaustAuthHandler, createMediaMutations, createMenusMutations, createPagesMutations, createPostsMutations, createPreviewHandler, createRevalidationHandler, createTagsMutations, createWPGraphQLCoreClient as createWPGraphQLClient, createWPGraphQLCoreClient, createWPGraphQLFetcher, createWPGraphQLMutationsClient, createWPGraphQLWooCommerceClient, createWPULikeClient, createWPULikeQueries, createWooCommerceClient, createWooCommerceFetcher, createWordPressClient, createWordPressMutationsClient, createYoastQueries, defaultMessages, defaultMessagesPl, extractOmnibusData, parseCookieConsent, resolveBaseUrl, resolveMessage, validateJwtToken, withOmnibus, withOmnibusVariation };
4560
+ export { AuthenticationError, CF7Error, ErrorCode, WPGraphQLError, WooCommerceError, WordPressAPIError, YithWishlistError, authenticateJwt, buildACFFragment, buildPageWithACFQuery, buildPostWithACFQuery, buildPostsWithACFQuery, createApplicationPasswordToken, createAuthorsMutations, createCF7Queries, createCPTQueries, createCategoriesMutations, createCommentsMutations, createCookieConsentHandler, createFaustAuthHandler, createMediaMutations, createMenusMutations, createPagesMutations, createPostsMutations, createPreviewHandler, createRevalidationHandler, createTagsMutations, createWPGraphQLCoreClient as createWPGraphQLClient, createWPGraphQLCoreClient, createWPGraphQLFetcher, createWPGraphQLMutationsClient, createWPGraphQLWooCommerceClient, createWPULikeClient, createWPULikeQueries, createWishlistMutations, createWishlistQueries, createWooCommerceClient, createWooCommerceFetcher, createWordPressClient, createWordPressMutationsClient, createYithWishlistFetcher, createYoastQueries, defaultMessages, defaultMessagesPl, extractOmnibusData, parseCookieConsent, resolveBaseUrl, resolveMessage, validateJwtToken, withOmnibus, withOmnibusVariation };
4423
4561
  //# sourceMappingURL=index.js.map
4424
4562
  //# sourceMappingURL=index.js.map