├── .editorconfig ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── main.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── __tests__ └── module │ ├── fixture │ ├── components │ │ └── misc │ │ │ └── MiscSkeleton.vue │ ├── composables │ │ └── useNotification.ts │ ├── error.vue │ ├── locales │ │ └── platformLanguages.json │ ├── nuxt.config.ts │ ├── pages │ │ └── index.vue │ └── platform-plugins │ │ ├── pluginConfig.json │ │ ├── pluginMapping.json │ │ └── test-plugin │ │ └── components │ │ ├── product │ │ ├── ProductDetail.vue │ │ └── ProductDetailPlugin.vue │ │ └── test-plugin │ │ └── TestPluginSlotComponent.vue │ └── module.spec.ts ├── bin ├── README.md ├── hubble-cli.js ├── i18n-export.js └── i18n-import.js ├── cypress.config.ts ├── cypress ├── e2e │ ├── module.cy.ts │ └── platform-sw.cy.ts ├── fixtures │ └── example.json ├── support │ ├── commands.ts │ └── e2e.ts └── tsconfig.json ├── docs ├── .vuepress │ ├── config.ts │ ├── public │ │ ├── apiTypeDirs.svg │ │ ├── assets │ │ │ └── images │ │ │ │ ├── apple-icon-57x57.png │ │ │ │ ├── components@2x.jpg │ │ │ │ ├── file_based_inheritance-1@2x.jpg │ │ │ │ ├── file_based_inheritance-2@2x.jpg │ │ │ │ ├── file_based_inheritance-3@2x.jpg │ │ │ │ ├── hubble-logo.png │ │ │ │ ├── hubblelogo-bright.svg │ │ │ │ ├── hubblelogo.svg │ │ │ │ ├── icons │ │ │ │ ├── bullet_blue.gif │ │ │ │ └── emoticons │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── forbidden.svg │ │ │ │ │ └── information.svg │ │ │ │ ├── layout@2x.jpg │ │ │ │ ├── page@2x.jpg │ │ │ │ ├── shop_connector@2x.jpg │ │ │ │ ├── shopware_emotionworlds@2x.jpg │ │ │ │ ├── shopware_plugins-1@2x.jpg │ │ │ │ ├── shopware_plugins-2@2x.jpg │ │ │ │ ├── shopware_quickstart_seourls.png │ │ │ │ ├── techstack@2x.jpg │ │ │ │ ├── theming-1@2x.jpg │ │ │ │ └── theming-2@2x.jpg │ │ ├── categorypages.svg │ │ ├── detailpage.svg │ │ ├── hubble-data-api-stack.svg │ │ ├── lastViewedProductsUIwCursor.svg │ │ ├── pagerouting.svg │ │ ├── statemanagement.svg │ │ └── warenkorb.svg │ └── styles │ │ ├── index.scss │ │ └── index.styl ├── README.md └── pwa │ ├── architecture │ ├── components.md │ ├── filebasedinheritance.md │ ├── layouts.md │ ├── pages.md │ ├── preinstalledmodules.md │ ├── shop-connection.md │ └── usersession.md │ ├── configuration.md │ ├── module │ ├── apiclients.md │ ├── codinguidelines.md │ ├── contributionpwa.md │ └── tests.md │ ├── shopware │ ├── README.md │ ├── installation.md │ ├── mulitlanguage.md │ ├── shopwareemotion.md │ ├── shopwareplugins.md │ └── trade-offs.md │ ├── theme.md │ └── what │ ├── contact.md │ ├── installation.md │ ├── overview.md │ ├── requirements.md │ ├── roadmap.md │ ├── techstack.md │ └── troubleshooting.md ├── eslint.config.js ├── package.json ├── playground ├── nuxt.config.ts └── package.json ├── src ├── commons │ ├── README.md │ └── utils │ │ ├── helper │ │ ├── hblGetRequestCookie.ts │ │ ├── hblGetStructureBackgroundStyles.ts │ │ ├── hblRegisterIntersectionObserver.ts │ │ ├── hblSymbols.ts │ │ ├── hblToUpperCamelCase.ts │ │ ├── hblUseDefaultStructure.ts │ │ ├── hblUseForm.ts │ │ └── index.ts │ │ └── types │ │ ├── HblCart.ts │ │ ├── HblCategory.ts │ │ ├── HblCms.ts │ │ ├── HblCountry.ts │ │ ├── HblCustomer.ts │ │ ├── HblIUseCart.ts │ │ ├── HblIUseCheckout.ts │ │ ├── HblIUseCustomer.ts │ │ ├── HblIUseDrawer.ts │ │ ├── HblIUseLocalisation.ts │ │ ├── HblIUseNavigation.ts │ │ ├── HblIUsePage.ts │ │ ├── HblIUsePlatform.ts │ │ ├── HblIUseSearch.ts │ │ ├── HblIUseWishlist.ts │ │ ├── HblMedia.ts │ │ ├── HblMiniCart.ts │ │ ├── HblNavigation.ts │ │ ├── HblNotifications.ts │ │ ├── HblOrder.ts │ │ ├── HblOrderDocument.ts │ │ ├── HblOrderLineItemDownload.ts │ │ ├── HblPage.ts │ │ ├── HblPaymentMethod.ts │ │ ├── HblProduct.ts │ │ ├── HblProductListing.ts │ │ ├── HblSalutation.ts │ │ ├── HblSession.ts │ │ ├── HblShippingMethod.ts │ │ ├── HblWishlist.ts │ │ └── index.ts ├── global.d.ts ├── module.ts ├── platforms │ ├── README.md │ └── shopware │ │ ├── README.md │ │ ├── api-client │ │ ├── 0001-Created-separated-commit-for-changes-to-generated-ap.patch │ │ ├── 0001-SW-API-CLient-parse-error-details-and-set-to-errors-.patch │ │ ├── 0001-SW-API-Client-Patch-for-page-data.patch │ │ ├── 0001-SW-API-Client-added-includes-to-criteria-type.patch │ │ ├── 0001-SW-API-Client-added-missing-uniqueIdentifier-to-CmsB.patch │ │ ├── 0001-SW-API-Client-export-request-function-to-be-called-f.patch │ │ ├── README.md │ │ ├── generated │ │ │ ├── core │ │ │ │ ├── ApiError.ts │ │ │ │ ├── ApiRequestOptions.ts │ │ │ │ ├── ApiResult.ts │ │ │ │ ├── CancelablePromise.ts │ │ │ │ ├── OpenAPI.ts │ │ │ │ └── request.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── AccountNewsletterRecipientResult.ts │ │ │ │ ├── AclRole.ts │ │ │ │ ├── App.ts │ │ │ │ ├── AppActionButton.ts │ │ │ │ ├── AppAdministrationSnippet.ts │ │ │ │ ├── AppCmsBlock.ts │ │ │ │ ├── AppFlowAction.ts │ │ │ │ ├── AppFlowEvent.ts │ │ │ │ ├── AppPaymentMethod.ts │ │ │ │ ├── AppScriptCondition.ts │ │ │ │ ├── AppShippingMethod.ts │ │ │ │ ├── AppTemplate.ts │ │ │ │ ├── ArrayStruct.ts │ │ │ │ ├── CalculatedPrice.ts │ │ │ │ ├── Cart.ts │ │ │ │ ├── CartItems.ts │ │ │ │ ├── Category.ts │ │ │ │ ├── CategoryJsonApi.ts │ │ │ │ ├── CmsBlock.ts │ │ │ │ ├── CmsFactoryElement.ts │ │ │ │ ├── CmsPage.ts │ │ │ │ ├── CmsSection.ts │ │ │ │ ├── CmsSlot.ts │ │ │ │ ├── Country.ts │ │ │ │ ├── CountryJsonApi.ts │ │ │ │ ├── CountryState.ts │ │ │ │ ├── CountryStateJsonApi.ts │ │ │ │ ├── Criteria.ts │ │ │ │ ├── CrossSellingElement.ts │ │ │ │ ├── CrossSellingElementCollection.ts │ │ │ │ ├── Currency.ts │ │ │ │ ├── CurrencyCountryRounding.ts │ │ │ │ ├── CurrencyJsonApi.ts │ │ │ │ ├── CustomEntity.ts │ │ │ │ ├── CustomField.ts │ │ │ │ ├── CustomFieldSet.ts │ │ │ │ ├── CustomFieldSetRelation.ts │ │ │ │ ├── Customer.ts │ │ │ │ ├── CustomerAddress.ts │ │ │ │ ├── CustomerGroup.ts │ │ │ │ ├── CustomerRecovery.ts │ │ │ │ ├── CustomerTag.ts │ │ │ │ ├── CustomerWishlist.ts │ │ │ │ ├── CustomerWishlistProduct.ts │ │ │ │ ├── DeliveryTime.ts │ │ │ │ ├── Document.ts │ │ │ │ ├── DocumentBaseConfig.ts │ │ │ │ ├── DocumentBaseConfigSalesChannel.ts │ │ │ │ ├── DocumentType.ts │ │ │ │ ├── EntitySearchResult.ts │ │ │ │ ├── FindProductVariantRouteResponse.ts │ │ │ │ ├── Flow.ts │ │ │ │ ├── FlowSequence.ts │ │ │ │ ├── FlowTemplate.ts │ │ │ │ ├── ImportExportFile.ts │ │ │ │ ├── ImportExportLog.ts │ │ │ │ ├── ImportExportProfile.ts │ │ │ │ ├── Integration.ts │ │ │ │ ├── LandingPage.ts │ │ │ │ ├── LandingPageJsonApi.ts │ │ │ │ ├── Language.ts │ │ │ │ ├── LanguageJsonApi.ts │ │ │ │ ├── LineItem.ts │ │ │ │ ├── LineItemType.ts │ │ │ │ ├── ListPrice.ts │ │ │ │ ├── Locale.ts │ │ │ │ ├── LogEntry.ts │ │ │ │ ├── MailHeaderFooter.ts │ │ │ │ ├── MailTemplate.ts │ │ │ │ ├── MailTemplateMedia.ts │ │ │ │ ├── MailTemplateType.ts │ │ │ │ ├── MainCategory.ts │ │ │ │ ├── MainCategoryJsonApi.ts │ │ │ │ ├── Media.ts │ │ │ │ ├── MediaDefaultFolder.ts │ │ │ │ ├── MediaFolder.ts │ │ │ │ ├── MediaFolderConfiguration.ts │ │ │ │ ├── MediaTag.ts │ │ │ │ ├── MediaThumbnail.ts │ │ │ │ ├── MediaThumbnailSize.ts │ │ │ │ ├── NavigationRouteResponse.ts │ │ │ │ ├── NavigationType.ts │ │ │ │ ├── NewsletterRecipient.ts │ │ │ │ ├── NewsletterRecipientJsonApi.ts │ │ │ │ ├── Notification.ts │ │ │ │ ├── NumberRange.ts │ │ │ │ ├── NumberRangeSalesChannel.ts │ │ │ │ ├── NumberRangeState.ts │ │ │ │ ├── NumberRangeType.ts │ │ │ │ ├── Order.ts │ │ │ │ ├── OrderAddress.ts │ │ │ │ ├── OrderCustomer.ts │ │ │ │ ├── OrderDelivery.ts │ │ │ │ ├── OrderDeliveryPosition.ts │ │ │ │ ├── OrderLineItem.ts │ │ │ │ ├── OrderLineItemDownload.ts │ │ │ │ ├── OrderRouteResponse.ts │ │ │ │ ├── OrderTag.ts │ │ │ │ ├── OrderTransaction.ts │ │ │ │ ├── OrderTransactionCapture.ts │ │ │ │ ├── OrderTransactionCaptureRefund.ts │ │ │ │ ├── OrderTransactionCaptureRefundPosition.ts │ │ │ │ ├── PaymentMethod.ts │ │ │ │ ├── PaymentMethodJsonApi.ts │ │ │ │ ├── Plugin.ts │ │ │ │ ├── Product.ts │ │ │ │ ├── ProductConfiguratorSetting.ts │ │ │ │ ├── ProductCrossSelling.ts │ │ │ │ ├── ProductCrossSellingAssignedProducts.ts │ │ │ │ ├── ProductDetailResponse.ts │ │ │ │ ├── ProductDownload.ts │ │ │ │ ├── ProductExport.ts │ │ │ │ ├── ProductFeatureSet.ts │ │ │ │ ├── ProductJsonApi.ts │ │ │ │ ├── ProductKeywordDictionary.ts │ │ │ │ ├── ProductListingCriteria.ts │ │ │ │ ├── ProductListingFlags.ts │ │ │ │ ├── ProductListingResult.ts │ │ │ │ ├── ProductManufacturer.ts │ │ │ │ ├── ProductMedia.ts │ │ │ │ ├── ProductPrice.ts │ │ │ │ ├── ProductReview.ts │ │ │ │ ├── ProductSearchConfig.ts │ │ │ │ ├── ProductSearchConfigField.ts │ │ │ │ ├── ProductSearchKeyword.ts │ │ │ │ ├── ProductSorting.ts │ │ │ │ ├── ProductStream.ts │ │ │ │ ├── ProductStreamFilter.ts │ │ │ │ ├── ProductVisibility.ts │ │ │ │ ├── Promotion.ts │ │ │ │ ├── PromotionDiscount.ts │ │ │ │ ├── PromotionDiscountPrices.ts │ │ │ │ ├── PromotionIndividualCode.ts │ │ │ │ ├── PromotionSalesChannel.ts │ │ │ │ ├── PromotionSetgroup.ts │ │ │ │ ├── PropertyGroup.ts │ │ │ │ ├── PropertyGroupOption.ts │ │ │ │ ├── ReferencePrice.ts │ │ │ │ ├── Rule.ts │ │ │ │ ├── RuleCondition.ts │ │ │ │ ├── SalesChannel.ts │ │ │ │ ├── SalesChannelAnalytics.ts │ │ │ │ ├── SalesChannelContext.ts │ │ │ │ ├── SalesChannelDomain.ts │ │ │ │ ├── SalesChannelType.ts │ │ │ │ ├── Salutation.ts │ │ │ │ ├── SalutationJsonApi.ts │ │ │ │ ├── ScheduledTask.ts │ │ │ │ ├── Script.ts │ │ │ │ ├── SeoUrl.ts │ │ │ │ ├── SeoUrlJsonApi.ts │ │ │ │ ├── SeoUrlTemplate.ts │ │ │ │ ├── ShippingMethod.ts │ │ │ │ ├── ShippingMethodJsonApi.ts │ │ │ │ ├── ShippingMethodPageRouteResponse.ts │ │ │ │ ├── ShippingMethodPrice.ts │ │ │ │ ├── Sitemap.ts │ │ │ │ ├── Snippet.ts │ │ │ │ ├── SnippetSet.ts │ │ │ │ ├── StateMachine.ts │ │ │ │ ├── StateMachineHistory.ts │ │ │ │ ├── StateMachineState.ts │ │ │ │ ├── StateMachineTransition.ts │ │ │ │ ├── Struct.ts │ │ │ │ ├── SuccessResponse.ts │ │ │ │ ├── SystemConfig.ts │ │ │ │ ├── Tag.ts │ │ │ │ ├── Tax.ts │ │ │ │ ├── TaxProvider.ts │ │ │ │ ├── TaxRule.ts │ │ │ │ ├── TaxRuleType.ts │ │ │ │ ├── Theme.ts │ │ │ │ ├── Unit.ts │ │ │ │ ├── User.ts │ │ │ │ ├── UserAccessKey.ts │ │ │ │ ├── UserConfig.ts │ │ │ │ ├── UserRecovery.ts │ │ │ │ ├── Webhook.ts │ │ │ │ ├── WebhookEventLog.ts │ │ │ │ ├── WishlistLoadRouteResponse.ts │ │ │ │ ├── accept.ts │ │ │ │ ├── attributes.ts │ │ │ │ ├── contentType.ts │ │ │ │ ├── data.ts │ │ │ │ ├── error.ts │ │ │ │ ├── failure.ts │ │ │ │ ├── info.ts │ │ │ │ ├── jsonapi.ts │ │ │ │ ├── link.ts │ │ │ │ ├── linkage.ts │ │ │ │ ├── links.ts │ │ │ │ ├── meta.ts │ │ │ │ ├── pagination.ts │ │ │ │ ├── relationshipLinks.ts │ │ │ │ ├── relationshipToMany.ts │ │ │ │ ├── relationshipToOne.ts │ │ │ │ ├── relationships.ts │ │ │ │ ├── resource.ts │ │ │ │ └── success.ts │ │ │ └── services │ │ │ │ ├── AddressShopware.ts │ │ │ │ ├── ApiShopware.ts │ │ │ │ ├── AppShopware.ts │ │ │ │ ├── AppSystemShopware.ts │ │ │ │ ├── CartShopware.ts │ │ │ │ ├── CategoryShopware.ts │ │ │ │ ├── ContentShopware.ts │ │ │ │ ├── DocumentShopware.ts │ │ │ │ ├── EndpointsSupportingCriteriaShopware.ts │ │ │ │ ├── LoginRegistrationShopware.ts │ │ │ │ ├── NewsletterShopware.ts │ │ │ │ ├── OrderShopware.ts │ │ │ │ ├── PaymentMethodShopware.ts │ │ │ │ ├── PaymentShippingShopware.ts │ │ │ │ ├── ProductShopware.ts │ │ │ │ ├── ProfileShopware.ts │ │ │ │ ├── PwaShopware.ts │ │ │ │ ├── ScriptShopware.ts │ │ │ │ ├── SitemapRoutesShopware.ts │ │ │ │ ├── SystemContextShopware.ts │ │ │ │ ├── SystemInfoHealthcheckShopware.ts │ │ │ │ └── WishlistShopware.ts │ │ ├── openapi3.json │ │ └── request.ts │ │ ├── bin │ │ ├── README.md │ │ ├── open-api-generate.js │ │ ├── sw-languages.js │ │ ├── sw-plugins-assets.js │ │ ├── sw-plugins-config.js │ │ └── sw-plugins-functions.js │ │ ├── composables │ │ ├── useCart.ts │ │ ├── useCheckout.ts │ │ ├── useCurrency.ts │ │ ├── useCustomer.ts │ │ ├── useLocalisation.ts │ │ ├── useNavigation.ts │ │ ├── usePage.ts │ │ ├── usePlatform.ts │ │ ├── useSearch.ts │ │ └── useWishlist.ts │ │ ├── config │ │ ├── .env_example │ │ └── config.ts │ │ └── utils │ │ └── mapping │ │ ├── hblMapBlocks.ts │ │ ├── hblMapBreadcrumb.ts │ │ ├── hblMapCart.ts │ │ ├── hblMapCategory.ts │ │ ├── hblMapCountries.ts │ │ ├── hblMapCountry.ts │ │ ├── hblMapCurrentFilters.ts │ │ ├── hblMapCustomer.ts │ │ ├── hblMapCustomerAddress.ts │ │ ├── hblMapCustomerAddresses.ts │ │ ├── hblMapFilters.ts │ │ ├── hblMapLineItem.ts │ │ ├── hblMapLineItems.ts │ │ ├── hblMapManufacturer.ts │ │ ├── hblMapMedia.ts │ │ ├── hblMapMiniCart.ts │ │ ├── hblMapNavigation.ts │ │ ├── hblMapOrder.ts │ │ ├── hblMapOrderDocument.ts │ │ ├── hblMapOrderDocuments.ts │ │ ├── hblMapOrderLineItem.ts │ │ ├── hblMapOrderLineItemDownload.ts │ │ ├── hblMapOrderLineItemDownloads.ts │ │ ├── hblMapOrderLineItems.ts │ │ ├── hblMapOrders.ts │ │ ├── hblMapPage.ts │ │ ├── hblMapPaymentMethod.ts │ │ ├── hblMapPaymentMethods.ts │ │ ├── hblMapPrice.ts │ │ ├── hblMapProduct.ts │ │ ├── hblMapProductListing.ts │ │ ├── hblMapProductMedia.ts │ │ ├── hblMapProducts.ts │ │ ├── hblMapPropertyOptions.ts │ │ ├── hblMapSalutation.ts │ │ ├── hblMapSalutations.ts │ │ ├── hblMapSections.ts │ │ ├── hblMapSession.ts │ │ ├── hblMapShippingMethod.ts │ │ ├── hblMapShippingMethods.ts │ │ ├── hblMapSlots.ts │ │ ├── hblMapSorting.ts │ │ ├── hblMapSortings.ts │ │ ├── hblMapTotals.ts │ │ ├── hblMapVariantGroup.ts │ │ ├── hblMapVariantGroups.ts │ │ ├── hblMapVariantOption.ts │ │ ├── hblMapWishlist.ts │ │ └── swMapCustomerAddress.ts └── theme │ ├── assets │ ├── css │ │ ├── custom.pcss │ │ └── tailwind.css │ └── product │ │ └── placeholder-image.png │ ├── components │ ├── cart │ │ ├── Cart.vue │ │ ├── CartCoupons.vue │ │ ├── CartList.vue │ │ └── CartTotals.vue │ ├── checkout │ │ ├── CheckoutPayment.vue │ │ ├── CheckoutPlaceOrder.vue │ │ └── CheckoutShipping.vue │ ├── customer │ │ ├── CustomerAddressBook.vue │ │ ├── CustomerAddressForm.vue │ │ ├── CustomerAddressRenderer.vue │ │ ├── CustomerEditEmail.vue │ │ ├── CustomerEditInfo.vue │ │ ├── CustomerEditNewsletter.vue │ │ ├── CustomerEditPassword.vue │ │ ├── CustomerEditPayment.vue │ │ ├── CustomerGuestNavigation.vue │ │ ├── CustomerLoginForm.vue │ │ ├── CustomerNavigation.vue │ │ ├── CustomerOrder.vue │ │ ├── CustomerOrdersList.vue │ │ ├── CustomerPasswordResetForm.vue │ │ ├── CustomerRegisterForm.vue │ │ └── CustomerState.vue │ ├── drawer │ │ ├── DrawerContextCart.vue │ │ ├── DrawerContextSearch.vue │ │ └── DrawerContextWishlist.vue │ ├── layout │ │ ├── LayoutFooter.vue │ │ ├── LayoutFooterLight.vue │ │ ├── LayoutHeader.vue │ │ ├── LayoutLanguageSwitch.vue │ │ ├── LayoutNavigationHorizontal.vue │ │ ├── LayoutNavigationMobile.vue │ │ └── LayoutNotifications.vue │ ├── misc │ │ ├── MiscDefineLink.ts │ │ ├── MiscLink.vue │ │ ├── MiscModuleTestComponent.vue │ │ ├── MiscPluginSlot.vue │ │ └── MiscSkeleton.vue │ ├── page │ │ ├── PageCategory.vue │ │ ├── PageCms.vue │ │ └── PageDetail.vue │ ├── product │ │ ├── ProductDetailBuyBox.vue │ │ ├── ProductDetailManufacturer.vue │ │ ├── ProductDetailMediaGallery.vue │ │ ├── ProductDetailName.vue │ │ ├── ProductDetailVariants.vue │ │ ├── ProductListing.vue │ │ ├── ProductListingCard.vue │ │ ├── ProductListingFilter.vue │ │ ├── ProductListingLimiter.vue │ │ ├── ProductListingPagination.vue │ │ └── ProductListingSorter.vue │ ├── structure │ │ ├── StructureBlock.vue │ │ ├── StructureLoading.vue │ │ ├── StructureNoComponent.vue │ │ ├── StructureSection.vue │ │ ├── block │ │ │ ├── StructureBlockGalleryBuybox.vue │ │ │ ├── StructureBlockImageText.vue │ │ │ ├── StructureBlockProductHeading.vue │ │ │ └── StructureBlockTest.vue │ │ └── slot │ │ │ ├── StructureSlotBuyBox.vue │ │ │ ├── StructureSlotCategoryNavigation.vue │ │ │ ├── StructureSlotCrossSelling.vue │ │ │ ├── StructureSlotImage.vue │ │ │ ├── StructureSlotImageGallery.vue │ │ │ ├── StructureSlotManufacturerLogo.vue │ │ │ ├── StructureSlotProductDescriptionReviews.vue │ │ │ ├── StructureSlotProductListing.vue │ │ │ ├── StructureSlotProductName.vue │ │ │ ├── StructureSlotSidebarFilter.vue │ │ │ └── StructureSlotText.vue │ └── wishlist │ │ ├── Wishlist.vue │ │ ├── WishlistProductList.vue │ │ └── WishlistProductToggleButton.vue │ ├── composables │ ├── useDrawer.ts │ └── useNotification.ts │ ├── layouts │ ├── checkout.vue │ └── default.vue │ ├── locales │ ├── availableLocales.json │ └── platformLanguages.json │ ├── middleware │ ├── auth.ts │ ├── change-vue-locale.global.ts │ └── validate-cart.ts │ ├── pages │ ├── [...slug].vue │ ├── cart.vue │ ├── checkout │ │ ├── error.vue │ │ ├── index.vue │ │ └── success.vue │ ├── customer │ │ ├── account.vue │ │ ├── addresses.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── orders │ │ │ └── [id].vue │ │ ├── password.vue │ │ ├── payments.vue │ │ └── register.vue │ ├── index.vue │ ├── newsletter-subscribe.vue │ ├── registration │ │ └── confirm.vue │ └── search.vue │ ├── platform-plugins │ └── pluginMapping.json │ └── plugins │ ├── event-bus.ts │ ├── init-cart.client.ts │ ├── init-session.client.ts │ ├── init-wishlist.client.ts │ └── portal-vue.ts ├── tsconfig-tests.json ├── tsconfig.json └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/module/fixture/components/misc/MiscSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/components/misc/MiscSkeleton.vue -------------------------------------------------------------------------------- /__tests__/module/fixture/composables/useNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/composables/useNotification.ts -------------------------------------------------------------------------------- /__tests__/module/fixture/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/error.vue -------------------------------------------------------------------------------- /__tests__/module/fixture/locales/platformLanguages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/locales/platformLanguages.json -------------------------------------------------------------------------------- /__tests__/module/fixture/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/nuxt.config.ts -------------------------------------------------------------------------------- /__tests__/module/fixture/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/pages/index.vue -------------------------------------------------------------------------------- /__tests__/module/fixture/platform-plugins/pluginConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/platform-plugins/pluginConfig.json -------------------------------------------------------------------------------- /__tests__/module/fixture/platform-plugins/pluginMapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/platform-plugins/pluginMapping.json -------------------------------------------------------------------------------- /__tests__/module/fixture/platform-plugins/test-plugin/components/product/ProductDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/platform-plugins/test-plugin/components/product/ProductDetail.vue -------------------------------------------------------------------------------- /__tests__/module/fixture/platform-plugins/test-plugin/components/product/ProductDetailPlugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/platform-plugins/test-plugin/components/product/ProductDetailPlugin.vue -------------------------------------------------------------------------------- /__tests__/module/fixture/platform-plugins/test-plugin/components/test-plugin/TestPluginSlotComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/fixture/platform-plugins/test-plugin/components/test-plugin/TestPluginSlotComponent.vue -------------------------------------------------------------------------------- /__tests__/module/module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/__tests__/module/module.spec.ts -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/hubble-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/bin/hubble-cli.js -------------------------------------------------------------------------------- /bin/i18n-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/bin/i18n-export.js -------------------------------------------------------------------------------- /bin/i18n-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/bin/i18n-import.js -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/module.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress/e2e/module.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/platform-sw.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress/e2e/platform-sw.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /docs/.vuepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/config.ts -------------------------------------------------------------------------------- /docs/.vuepress/public/apiTypeDirs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/apiTypeDirs.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/apple-icon-57x57.png -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/components@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/components@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/file_based_inheritance-1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/file_based_inheritance-1@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/file_based_inheritance-2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/file_based_inheritance-2@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/file_based_inheritance-3@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/file_based_inheritance-3@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/hubble-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/hubble-logo.png -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/hubblelogo-bright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/hubblelogo-bright.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/hubblelogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/hubblelogo.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/icons/bullet_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/icons/bullet_blue.gif -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/icons/emoticons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/icons/emoticons/check.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/icons/emoticons/forbidden.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/icons/emoticons/forbidden.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/icons/emoticons/information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/icons/emoticons/information.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/layout@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/layout@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/page@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/page@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/shop_connector@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/shop_connector@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/shopware_emotionworlds@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/shopware_emotionworlds@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/shopware_plugins-1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/shopware_plugins-1@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/shopware_plugins-2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/shopware_plugins-2@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/shopware_quickstart_seourls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/shopware_quickstart_seourls.png -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/techstack@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/techstack@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/theming-1@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/theming-1@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/assets/images/theming-2@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/assets/images/theming-2@2x.jpg -------------------------------------------------------------------------------- /docs/.vuepress/public/categorypages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/categorypages.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/detailpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/detailpage.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/hubble-data-api-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/hubble-data-api-stack.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/lastViewedProductsUIwCursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/lastViewedProductsUIwCursor.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/pagerouting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/pagerouting.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/statemanagement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/statemanagement.svg -------------------------------------------------------------------------------- /docs/.vuepress/public/warenkorb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/public/warenkorb.svg -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/styles/index.scss -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/pwa/architecture/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/components.md -------------------------------------------------------------------------------- /docs/pwa/architecture/filebasedinheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/filebasedinheritance.md -------------------------------------------------------------------------------- /docs/pwa/architecture/layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/layouts.md -------------------------------------------------------------------------------- /docs/pwa/architecture/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/pages.md -------------------------------------------------------------------------------- /docs/pwa/architecture/preinstalledmodules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/preinstalledmodules.md -------------------------------------------------------------------------------- /docs/pwa/architecture/shop-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/shop-connection.md -------------------------------------------------------------------------------- /docs/pwa/architecture/usersession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/architecture/usersession.md -------------------------------------------------------------------------------- /docs/pwa/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/configuration.md -------------------------------------------------------------------------------- /docs/pwa/module/apiclients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/module/apiclients.md -------------------------------------------------------------------------------- /docs/pwa/module/codinguidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/module/codinguidelines.md -------------------------------------------------------------------------------- /docs/pwa/module/contributionpwa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/module/contributionpwa.md -------------------------------------------------------------------------------- /docs/pwa/module/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/module/tests.md -------------------------------------------------------------------------------- /docs/pwa/shopware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/shopware/README.md -------------------------------------------------------------------------------- /docs/pwa/shopware/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/shopware/installation.md -------------------------------------------------------------------------------- /docs/pwa/shopware/mulitlanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/shopware/mulitlanguage.md -------------------------------------------------------------------------------- /docs/pwa/shopware/shopwareemotion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/shopware/shopwareemotion.md -------------------------------------------------------------------------------- /docs/pwa/shopware/shopwareplugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/shopware/shopwareplugins.md -------------------------------------------------------------------------------- /docs/pwa/shopware/trade-offs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/shopware/trade-offs.md -------------------------------------------------------------------------------- /docs/pwa/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/theme.md -------------------------------------------------------------------------------- /docs/pwa/what/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/contact.md -------------------------------------------------------------------------------- /docs/pwa/what/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/installation.md -------------------------------------------------------------------------------- /docs/pwa/what/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/overview.md -------------------------------------------------------------------------------- /docs/pwa/what/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/requirements.md -------------------------------------------------------------------------------- /docs/pwa/what/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/roadmap.md -------------------------------------------------------------------------------- /docs/pwa/what/techstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/techstack.md -------------------------------------------------------------------------------- /docs/pwa/what/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/docs/pwa/what/troubleshooting.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/package.json -------------------------------------------------------------------------------- /playground/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/playground/nuxt.config.ts -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/playground/package.json -------------------------------------------------------------------------------- /src/commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/README.md -------------------------------------------------------------------------------- /src/commons/utils/helper/hblGetRequestCookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblGetRequestCookie.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/hblGetStructureBackgroundStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblGetStructureBackgroundStyles.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/hblRegisterIntersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblRegisterIntersectionObserver.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/hblSymbols.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblSymbols.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/hblToUpperCamelCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblToUpperCamelCase.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/hblUseDefaultStructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblUseDefaultStructure.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/hblUseForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/hblUseForm.ts -------------------------------------------------------------------------------- /src/commons/utils/helper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/helper/index.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblCart.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblCategory.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblCms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblCms.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblCountry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblCountry.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblCustomer.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseCart.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseCheckout.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseCustomer.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseDrawer.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseLocalisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseLocalisation.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseNavigation.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUsePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUsePage.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUsePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUsePlatform.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseSearch.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblIUseWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblIUseWishlist.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblMedia.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblMiniCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblMiniCart.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblNavigation.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblNotifications.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblOrder.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblOrderDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblOrderDocument.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblOrderLineItemDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblOrderLineItemDownload.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblPage.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblPaymentMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblPaymentMethod.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblProduct.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblProductListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblProductListing.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblSalutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblSalutation.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblSession.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblShippingMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblShippingMethod.ts -------------------------------------------------------------------------------- /src/commons/utils/types/HblWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/HblWishlist.ts -------------------------------------------------------------------------------- /src/commons/utils/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/commons/utils/types/index.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'daisyui' 2 | -------------------------------------------------------------------------------- /src/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/module.ts -------------------------------------------------------------------------------- /src/platforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/README.md -------------------------------------------------------------------------------- /src/platforms/shopware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/README.md -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/0001-Created-separated-commit-for-changes-to-generated-ap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/0001-Created-separated-commit-for-changes-to-generated-ap.patch -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/0001-SW-API-CLient-parse-error-details-and-set-to-errors-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/0001-SW-API-CLient-parse-error-details-and-set-to-errors-.patch -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/0001-SW-API-Client-Patch-for-page-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/0001-SW-API-Client-Patch-for-page-data.patch -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/0001-SW-API-Client-added-includes-to-criteria-type.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/0001-SW-API-Client-added-includes-to-criteria-type.patch -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/0001-SW-API-Client-added-missing-uniqueIdentifier-to-CmsB.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/0001-SW-API-Client-added-missing-uniqueIdentifier-to-CmsB.patch -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/0001-SW-API-Client-export-request-function-to-be-called-f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/0001-SW-API-Client-export-request-function-to-be-called-f.patch -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/README.md: -------------------------------------------------------------------------------- 1 | # Shopware API Client for hubble PWA 2 | -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/core/ApiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/core/ApiError.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/core/ApiRequestOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/core/ApiRequestOptions.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/core/ApiResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/core/ApiResult.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/core/CancelablePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/core/CancelablePromise.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/core/OpenAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/core/OpenAPI.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/core/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/core/request.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/index.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AccountNewsletterRecipientResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AccountNewsletterRecipientResult.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AclRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AclRole.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/App.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppActionButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppActionButton.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppAdministrationSnippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppAdministrationSnippet.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppCmsBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppCmsBlock.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppFlowAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppFlowAction.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppFlowEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppFlowEvent.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppPaymentMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppPaymentMethod.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppScriptCondition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppScriptCondition.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppShippingMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppShippingMethod.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/AppTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/AppTemplate.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ArrayStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ArrayStruct.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CalculatedPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CalculatedPrice.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Cart.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CartItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CartItems.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Category.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CategoryJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CategoryJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CmsBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CmsBlock.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CmsFactoryElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CmsFactoryElement.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CmsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CmsPage.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CmsSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CmsSection.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CmsSlot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CmsSlot.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Country.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CountryJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CountryJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CountryState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CountryState.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CountryStateJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CountryStateJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Criteria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Criteria.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CrossSellingElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CrossSellingElement.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CrossSellingElementCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CrossSellingElementCollection.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Currency.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CurrencyCountryRounding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CurrencyCountryRounding.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CurrencyJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CurrencyJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomEntity.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomField.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomFieldSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomFieldSet.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomFieldSetRelation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomFieldSetRelation.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Customer.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomerAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomerAddress.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomerGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomerGroup.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomerRecovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomerRecovery.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomerTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomerTag.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomerWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomerWishlist.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/CustomerWishlistProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/CustomerWishlistProduct.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/DeliveryTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/DeliveryTime.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Document.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/DocumentBaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/DocumentBaseConfig.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/DocumentBaseConfigSalesChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/DocumentBaseConfigSalesChannel.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/DocumentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/DocumentType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/EntitySearchResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/EntitySearchResult.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/FindProductVariantRouteResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/FindProductVariantRouteResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Flow.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/FlowSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/FlowSequence.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/FlowTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/FlowTemplate.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ImportExportFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ImportExportFile.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ImportExportLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ImportExportLog.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ImportExportProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ImportExportProfile.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Integration.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/LandingPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/LandingPage.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/LandingPageJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/LandingPageJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Language.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/LanguageJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/LanguageJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/LineItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/LineItem.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/LineItemType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/LineItemType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ListPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ListPrice.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Locale.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/LogEntry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/LogEntry.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MailHeaderFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MailHeaderFooter.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MailTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MailTemplate.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MailTemplateMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MailTemplateMedia.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MailTemplateType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MailTemplateType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MainCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MainCategory.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MainCategoryJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MainCategoryJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Media.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MediaDefaultFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MediaDefaultFolder.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MediaFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MediaFolder.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MediaFolderConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MediaFolderConfiguration.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MediaTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MediaTag.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MediaThumbnail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MediaThumbnail.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/MediaThumbnailSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/MediaThumbnailSize.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NavigationRouteResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NavigationRouteResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NavigationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NavigationType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NewsletterRecipient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NewsletterRecipient.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NewsletterRecipientJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NewsletterRecipientJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Notification.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NumberRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NumberRange.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NumberRangeSalesChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NumberRangeSalesChannel.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NumberRangeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NumberRangeState.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/NumberRangeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/NumberRangeType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Order.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderAddress.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderCustomer.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderDelivery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderDelivery.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderDeliveryPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderDeliveryPosition.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderLineItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderLineItem.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderLineItemDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderLineItemDownload.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderRouteResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderRouteResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderTag.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderTransaction.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderTransactionCapture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderTransactionCapture.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderTransactionCaptureRefund.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderTransactionCaptureRefund.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/OrderTransactionCaptureRefundPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/OrderTransactionCaptureRefundPosition.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PaymentMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PaymentMethod.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PaymentMethodJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PaymentMethodJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Plugin.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Product.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductConfiguratorSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductConfiguratorSetting.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductCrossSelling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductCrossSelling.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductCrossSellingAssignedProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductCrossSellingAssignedProducts.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductDetailResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductDetailResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductDownload.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductExport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductExport.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductFeatureSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductFeatureSet.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductKeywordDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductKeywordDictionary.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductListingCriteria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductListingCriteria.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductListingFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductListingFlags.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductListingResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductListingResult.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductManufacturer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductManufacturer.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductMedia.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductPrice.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductReview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductReview.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductSearchConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductSearchConfig.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductSearchConfigField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductSearchConfigField.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductSearchKeyword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductSearchKeyword.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductSorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductSorting.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductStream.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductStreamFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductStreamFilter.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ProductVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ProductVisibility.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Promotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Promotion.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PromotionDiscount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PromotionDiscount.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PromotionDiscountPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PromotionDiscountPrices.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PromotionIndividualCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PromotionIndividualCode.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PromotionSalesChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PromotionSalesChannel.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PromotionSetgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PromotionSetgroup.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PropertyGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PropertyGroup.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/PropertyGroupOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/PropertyGroupOption.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ReferencePrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ReferencePrice.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Rule.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/RuleCondition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/RuleCondition.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SalesChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SalesChannel.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SalesChannelAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SalesChannelAnalytics.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SalesChannelContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SalesChannelContext.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SalesChannelDomain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SalesChannelDomain.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SalesChannelType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SalesChannelType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Salutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Salutation.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SalutationJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SalutationJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ScheduledTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ScheduledTask.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Script.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SeoUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SeoUrl.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SeoUrlJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SeoUrlJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SeoUrlTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SeoUrlTemplate.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ShippingMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ShippingMethod.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ShippingMethodJsonApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ShippingMethodJsonApi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ShippingMethodPageRouteResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ShippingMethodPageRouteResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/ShippingMethodPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/ShippingMethodPrice.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Sitemap.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Snippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Snippet.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SnippetSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SnippetSet.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/StateMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/StateMachine.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/StateMachineHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/StateMachineHistory.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/StateMachineState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/StateMachineState.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/StateMachineTransition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/StateMachineTransition.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Struct.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SuccessResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SuccessResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/SystemConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/SystemConfig.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Tag.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Tax.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Tax.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/TaxProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/TaxProvider.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/TaxRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/TaxRule.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/TaxRuleType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/TaxRuleType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Theme.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Unit.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/User.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/UserAccessKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/UserAccessKey.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/UserConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/UserConfig.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/UserRecovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/UserRecovery.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/Webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/Webhook.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/WebhookEventLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/WebhookEventLog.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/WishlistLoadRouteResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/WishlistLoadRouteResponse.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/accept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/accept.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/attributes.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/contentType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/contentType.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/data.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/error.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/failure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/failure.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/info.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/jsonapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/jsonapi.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/link.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/linkage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/linkage.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/links.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/meta.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/pagination.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/relationshipLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/relationshipLinks.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/relationshipToMany.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/relationshipToMany.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/relationshipToOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/relationshipToOne.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/relationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/relationships.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/resource.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/models/success.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/models/success.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/AddressShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/AddressShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/ApiShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/ApiShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/AppShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/AppShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/AppSystemShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/AppSystemShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/CartShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/CartShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/CategoryShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/CategoryShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/ContentShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/ContentShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/DocumentShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/DocumentShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/EndpointsSupportingCriteriaShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/EndpointsSupportingCriteriaShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/LoginRegistrationShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/LoginRegistrationShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/NewsletterShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/NewsletterShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/OrderShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/OrderShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/PaymentMethodShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/PaymentMethodShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/PaymentShippingShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/PaymentShippingShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/ProductShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/ProductShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/ProfileShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/ProfileShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/PwaShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/PwaShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/ScriptShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/ScriptShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/SitemapRoutesShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/SitemapRoutesShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/SystemContextShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/SystemContextShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/SystemInfoHealthcheckShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/SystemInfoHealthcheckShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/generated/services/WishlistShopware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/generated/services/WishlistShopware.ts -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/openapi3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/openapi3.json -------------------------------------------------------------------------------- /src/platforms/shopware/api-client/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/api-client/request.ts -------------------------------------------------------------------------------- /src/platforms/shopware/bin/README.md: -------------------------------------------------------------------------------- 1 | # Shopware bin helper scripts 2 | -------------------------------------------------------------------------------- /src/platforms/shopware/bin/open-api-generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/bin/open-api-generate.js -------------------------------------------------------------------------------- /src/platforms/shopware/bin/sw-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/bin/sw-languages.js -------------------------------------------------------------------------------- /src/platforms/shopware/bin/sw-plugins-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/bin/sw-plugins-assets.js -------------------------------------------------------------------------------- /src/platforms/shopware/bin/sw-plugins-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/bin/sw-plugins-config.js -------------------------------------------------------------------------------- /src/platforms/shopware/bin/sw-plugins-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/bin/sw-plugins-functions.js -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useCart.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useCheckout.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useCurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useCurrency.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useCustomer.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useLocalisation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useLocalisation.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useNavigation.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/usePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/usePage.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/usePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/usePlatform.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useSearch.ts -------------------------------------------------------------------------------- /src/platforms/shopware/composables/useWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/composables/useWishlist.ts -------------------------------------------------------------------------------- /src/platforms/shopware/config/.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/config/.env_example -------------------------------------------------------------------------------- /src/platforms/shopware/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/config/config.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapBlocks.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapBreadcrumb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapBreadcrumb.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCart.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCategory.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCountries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCountries.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCountry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCountry.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCurrentFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCurrentFilters.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCustomer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCustomer.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCustomerAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCustomerAddress.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapCustomerAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapCustomerAddresses.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapFilters.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapLineItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapLineItem.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapLineItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapLineItems.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapManufacturer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapManufacturer.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapMedia.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapMiniCart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapMiniCart.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapNavigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapNavigation.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrder.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrderDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrderDocument.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrderDocuments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrderDocuments.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrderLineItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrderLineItem.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrderLineItemDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrderLineItemDownload.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrderLineItemDownloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrderLineItemDownloads.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrderLineItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrderLineItems.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapOrders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapOrders.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapPage.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapPaymentMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapPaymentMethod.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapPaymentMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapPaymentMethods.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapPrice.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapProduct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapProduct.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapProductListing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapProductListing.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapProductMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapProductMedia.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapProducts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapProducts.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapPropertyOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapPropertyOptions.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSalutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSalutation.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSalutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSalutations.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSections.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSession.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapShippingMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapShippingMethod.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapShippingMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapShippingMethods.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSlots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSlots.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSorting.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapSortings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapSortings.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapTotals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapTotals.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapVariantGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapVariantGroup.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapVariantGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapVariantGroups.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapVariantOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapVariantOption.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/hblMapWishlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/hblMapWishlist.ts -------------------------------------------------------------------------------- /src/platforms/shopware/utils/mapping/swMapCustomerAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/platforms/shopware/utils/mapping/swMapCustomerAddress.ts -------------------------------------------------------------------------------- /src/theme/assets/css/custom.pcss: -------------------------------------------------------------------------------- 1 | /* Custom CSS Files */ 2 | -------------------------------------------------------------------------------- /src/theme/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/assets/css/tailwind.css -------------------------------------------------------------------------------- /src/theme/assets/product/placeholder-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/assets/product/placeholder-image.png -------------------------------------------------------------------------------- /src/theme/components/cart/Cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/cart/Cart.vue -------------------------------------------------------------------------------- /src/theme/components/cart/CartCoupons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/cart/CartCoupons.vue -------------------------------------------------------------------------------- /src/theme/components/cart/CartList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/cart/CartList.vue -------------------------------------------------------------------------------- /src/theme/components/cart/CartTotals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/cart/CartTotals.vue -------------------------------------------------------------------------------- /src/theme/components/checkout/CheckoutPayment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/checkout/CheckoutPayment.vue -------------------------------------------------------------------------------- /src/theme/components/checkout/CheckoutPlaceOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/checkout/CheckoutPlaceOrder.vue -------------------------------------------------------------------------------- /src/theme/components/checkout/CheckoutShipping.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/checkout/CheckoutShipping.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerAddressBook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerAddressBook.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerAddressForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerAddressForm.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerAddressRenderer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerAddressRenderer.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerEditEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerEditEmail.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerEditInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerEditInfo.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerEditNewsletter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerEditNewsletter.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerEditPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerEditPassword.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerEditPayment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerEditPayment.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerGuestNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerGuestNavigation.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerLoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerLoginForm.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerNavigation.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerOrder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerOrder.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerOrdersList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerOrdersList.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerPasswordResetForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerPasswordResetForm.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerRegisterForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerRegisterForm.vue -------------------------------------------------------------------------------- /src/theme/components/customer/CustomerState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/customer/CustomerState.vue -------------------------------------------------------------------------------- /src/theme/components/drawer/DrawerContextCart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/drawer/DrawerContextCart.vue -------------------------------------------------------------------------------- /src/theme/components/drawer/DrawerContextSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/drawer/DrawerContextSearch.vue -------------------------------------------------------------------------------- /src/theme/components/drawer/DrawerContextWishlist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/drawer/DrawerContextWishlist.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutFooter.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutFooterLight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutFooterLight.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutHeader.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutLanguageSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutLanguageSwitch.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutNavigationHorizontal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutNavigationHorizontal.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutNavigationMobile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutNavigationMobile.vue -------------------------------------------------------------------------------- /src/theme/components/layout/LayoutNotifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/layout/LayoutNotifications.vue -------------------------------------------------------------------------------- /src/theme/components/misc/MiscDefineLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/misc/MiscDefineLink.ts -------------------------------------------------------------------------------- /src/theme/components/misc/MiscLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/misc/MiscLink.vue -------------------------------------------------------------------------------- /src/theme/components/misc/MiscModuleTestComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/misc/MiscModuleTestComponent.vue -------------------------------------------------------------------------------- /src/theme/components/misc/MiscPluginSlot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/misc/MiscPluginSlot.vue -------------------------------------------------------------------------------- /src/theme/components/misc/MiscSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/misc/MiscSkeleton.vue -------------------------------------------------------------------------------- /src/theme/components/page/PageCategory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/page/PageCategory.vue -------------------------------------------------------------------------------- /src/theme/components/page/PageCms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/page/PageCms.vue -------------------------------------------------------------------------------- /src/theme/components/page/PageDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/page/PageDetail.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductDetailBuyBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductDetailBuyBox.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductDetailManufacturer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductDetailManufacturer.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductDetailMediaGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductDetailMediaGallery.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductDetailName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductDetailName.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductDetailVariants.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductDetailVariants.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductListing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductListing.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductListingCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductListingCard.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductListingFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductListingFilter.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductListingLimiter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductListingLimiter.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductListingPagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductListingPagination.vue -------------------------------------------------------------------------------- /src/theme/components/product/ProductListingSorter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/product/ProductListingSorter.vue -------------------------------------------------------------------------------- /src/theme/components/structure/StructureBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/StructureBlock.vue -------------------------------------------------------------------------------- /src/theme/components/structure/StructureLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/StructureLoading.vue -------------------------------------------------------------------------------- /src/theme/components/structure/StructureNoComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/StructureNoComponent.vue -------------------------------------------------------------------------------- /src/theme/components/structure/StructureSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/StructureSection.vue -------------------------------------------------------------------------------- /src/theme/components/structure/block/StructureBlockGalleryBuybox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/block/StructureBlockGalleryBuybox.vue -------------------------------------------------------------------------------- /src/theme/components/structure/block/StructureBlockImageText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/block/StructureBlockImageText.vue -------------------------------------------------------------------------------- /src/theme/components/structure/block/StructureBlockProductHeading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/block/StructureBlockProductHeading.vue -------------------------------------------------------------------------------- /src/theme/components/structure/block/StructureBlockTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/block/StructureBlockTest.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotBuyBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotBuyBox.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotCategoryNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotCategoryNavigation.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotCrossSelling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotCrossSelling.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotImage.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotImageGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotImageGallery.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotManufacturerLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotManufacturerLogo.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotProductDescriptionReviews.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotProductDescriptionReviews.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotProductListing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotProductListing.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotProductName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotProductName.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotSidebarFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotSidebarFilter.vue -------------------------------------------------------------------------------- /src/theme/components/structure/slot/StructureSlotText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/structure/slot/StructureSlotText.vue -------------------------------------------------------------------------------- /src/theme/components/wishlist/Wishlist.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/wishlist/Wishlist.vue -------------------------------------------------------------------------------- /src/theme/components/wishlist/WishlistProductList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/wishlist/WishlistProductList.vue -------------------------------------------------------------------------------- /src/theme/components/wishlist/WishlistProductToggleButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/components/wishlist/WishlistProductToggleButton.vue -------------------------------------------------------------------------------- /src/theme/composables/useDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/composables/useDrawer.ts -------------------------------------------------------------------------------- /src/theme/composables/useNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/composables/useNotification.ts -------------------------------------------------------------------------------- /src/theme/layouts/checkout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/layouts/checkout.vue -------------------------------------------------------------------------------- /src/theme/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/layouts/default.vue -------------------------------------------------------------------------------- /src/theme/locales/availableLocales.json: -------------------------------------------------------------------------------- 1 | { 2 | "en": {} 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/locales/platformLanguages.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/theme/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/middleware/auth.ts -------------------------------------------------------------------------------- /src/theme/middleware/change-vue-locale.global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/middleware/change-vue-locale.global.ts -------------------------------------------------------------------------------- /src/theme/middleware/validate-cart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/middleware/validate-cart.ts -------------------------------------------------------------------------------- /src/theme/pages/[...slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/[...slug].vue -------------------------------------------------------------------------------- /src/theme/pages/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/cart.vue -------------------------------------------------------------------------------- /src/theme/pages/checkout/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/checkout/error.vue -------------------------------------------------------------------------------- /src/theme/pages/checkout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/checkout/index.vue -------------------------------------------------------------------------------- /src/theme/pages/checkout/success.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/checkout/success.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/account.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/addresses.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/addresses.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/index.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/login.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/orders/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/orders/[id].vue -------------------------------------------------------------------------------- /src/theme/pages/customer/password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/password.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/payments.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/payments.vue -------------------------------------------------------------------------------- /src/theme/pages/customer/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/customer/register.vue -------------------------------------------------------------------------------- /src/theme/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/index.vue -------------------------------------------------------------------------------- /src/theme/pages/newsletter-subscribe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/newsletter-subscribe.vue -------------------------------------------------------------------------------- /src/theme/pages/registration/confirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/registration/confirm.vue -------------------------------------------------------------------------------- /src/theme/pages/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/pages/search.vue -------------------------------------------------------------------------------- /src/theme/platform-plugins/pluginMapping.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/theme/plugins/event-bus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/plugins/event-bus.ts -------------------------------------------------------------------------------- /src/theme/plugins/init-cart.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/plugins/init-cart.client.ts -------------------------------------------------------------------------------- /src/theme/plugins/init-session.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/plugins/init-session.client.ts -------------------------------------------------------------------------------- /src/theme/plugins/init-wishlist.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/plugins/init-wishlist.client.ts -------------------------------------------------------------------------------- /src/theme/plugins/portal-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/src/theme/plugins/portal-vue.ts -------------------------------------------------------------------------------- /tsconfig-tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/tsconfig-tests.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./playground/.nuxt/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubblecommerce/hubble-frontend-pwa/HEAD/vitest.config.ts --------------------------------------------------------------------------------